/* Around the Clock Wrench — Landing Page Styles */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1a3a5c;
  --blue-light: #2a5080;
  --orange: #e8621a;
  --orange-hover: #c9510e;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f1f3;
  --gray-200: #e2e5ea;
  --gray-400: #9aa5b4;
  --gray-600: #5a6475;
  --gray-800: #2d3445;
  --gray-900: #1a1f2e;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

/* NAVBAR */
.navbar {
  background: var(--blue);
  color: var(--white);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.navbar-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: var(--white);
}
.navbar-logo span { color: var(--orange); }
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--white);
  background: var(--orange);
  padding: 8px 16px;
  border-radius: 4px;
}
.navbar-phone:hover { background: var(--orange-hover); }

/* HERO */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,40,0.92) 0%, rgba(10,20,40,0.5) 50%, rgba(10,20,40,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-hover); }
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); }

/* SECTION SHARED */
.section {
  padding: 72px 24px;
}
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--blue); color: var(--white); }
.container { max-width: 960px; margin: 0 auto; }

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 44px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  border-color: var(--orange);
}
.service-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

/* SERVICE AREA */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.area-list li {
  font-size: 0.95rem;
  color: var(--gray-600);
  padding: 8px 12px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}
.area-map-placeholder {
  background: var(--gray-100);
  border-radius: 8px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.9rem;
  text-align: center;
}
.area-map-placeholder span { font-size: 2rem; }

/* CTA / CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info { }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-item-icon {
  background: rgba(232,98,26,0.1);
  color: var(--orange);
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item-text p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
}
.contact-item-text a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.contact-item-text a:hover { text-decoration: underline; }

/* BOOKING FORM */
.booking-form { background: var(--white); border-radius: 8px; padding: 32px; border: 1.5px solid var(--gray-200); }
.booking-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-600); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--gray-50);
  color: var(--gray-800);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}
.btn-submit:hover { background: var(--orange-hover); }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: #e8f5e9;
  border-radius: 6px;
  color: #2e7d32;
  font-weight: 600;
}

/* FOOTER */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.55);
  padding: 32px 24px;
  text-align: center;
  font-size: 0.85rem;
}
.footer strong { color: rgba(255,255,255,0.85); }

/* RESPONSIVE */
@media (max-width: 700px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-content { padding: 40px 20px 60px; }
  .section { padding: 48px 20px; }
  .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .navbar-phone span { display: none; }
  .section-title { font-size: 1.6rem; }
}