/* ===== CSS Variables / Design Tokens ===== */
:root {
  --navy: #1B2A4A;
  --navy-dark: #111D35;
  --navy-light: #2A3F6A;
  --orange: #E8871E;
  --orange-light: #F5A623;
  --orange-dark: #C96D0A;
  --yellow: #F5C518;
  --white: #FFFFFF;
  --gray-50: #F8F9FB;
  --gray-100: #F1F3F7;
  --gray-200: #E2E6EE;
  --gray-300: #C8CFDB;
  --gray-400: #9AA3B5;
  --gray-500: #6B7689;
  --gray-600: #4A5568;
  --gray-700: #2D3748;
  --gray-800: #1A202C;
  --red-500: #E53E3E;
  --green-500: #38A169;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
/* Keeps page content below the fixed header stack (z-index 1100+) */
main {
  position: relative;
  z-index: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

/* ===== Utility ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-gray { background: var(--gray-50); }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-link {
  flex-shrink: 0;
  position: relative;
  z-index: 1202;
  line-height: 0;
}
.logo-link picture {
  display: block;
}
/* Specific selector + max-width: none so global `img { max-width:100%; height:auto }` can't shrink the header logo */
.site-header .logo-link img.logo {
  height: 64px;
  width: auto;
  max-width: none;
  max-height: none;
  display: block;
}
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li > a,
.nav-list .nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-list .nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: auto;
  line-height: inherit;
  -webkit-tap-highlight-color: transparent;
}
.nav-list > li > a:hover,
.nav-list > li > a.active,
.nav-list .nav-dropdown-toggle:hover,
.nav-list .nav-dropdown-toggle.active {
  color: var(--orange);
  background: rgba(232, 135, 30, .06);
}
.dropdown-arrow {
  font-size: 0.7em;
  transition: transform var(--transition);
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 10;
}
/* Desktop / tablet: hover flyouts */
@media (min-width: 769px) {
  .has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: all var(--transition);
}
.dropdown li a:hover,
.dropdown li a.active {
  color: var(--orange);
  background: var(--gray-50);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.header-phone:hover { color: var(--orange); }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1202;
  position: relative;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--navy-dark) url('/images/hero-bg.jpg') center / cover no-repeat;
}
/* Flat colour overlay — one colour, one opacity, covers everything equally */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27, 42, 74, 0.68);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
  max-width: 650px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(232,135,30,.15);
  border: 1px solid rgba(232,135,30,.3);
  border-radius: 50px;
  color: var(--orange-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  font-family: var(--font-heading);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,135,30,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.4);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--orange); }

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232,135,30,.1), rgba(245,197,24,.1));
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--orange);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange);
}
.service-card .card-link:hover {
  gap: 10px;
}

/* ===== Why Choose Us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.why-item {
  text-align: center;
  padding: 24px;
}
.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,135,30,.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--orange);
}
.section-dark .why-icon {
  background: rgba(232,135,30,.2);
}
.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.why-item p {
  font-size: 0.95rem;
  color: var(--gray-500);
}
.section-dark .why-item p {
  color: rgba(255,255,255,.6);
}

/* ===== Google Reviews ===== */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  margin: 0 auto 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.section-header .google-rating-badge {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.google-g { flex-shrink: 0; }
.google-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}
.google-rating-text {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.review-stars {
  color: #F5A623;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-author strong {
  font-size: 0.92rem;
  color: var(--navy);
}
.review-source {
  font-size: 0.8rem;
  color: var(--gray-400);
}
.reviews-cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cta-banner .btn {
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== Section Headers ===== */
.section-header {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
}
.section-header .section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ===== Content Sections (service pages) ===== */
.content-section { padding: 80px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.content-text p {
  margin-bottom: 16px;
  color: var(--gray-600);
}
.content-text ul {
  margin-bottom: 24px;
}
.content-text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--gray-600);
}
.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 50%;
  opacity: 0.2;
}
.content-text ul li::after {
  content: '✓';
  position: absolute;
  left: 3px;
  top: 1px;
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
}
.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-md);
}
.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Generic map illustration (area pages) */
.content-image--area-map {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--gray-50) 0%, var(--gray-100) 55%, rgba(232, 135, 30, 0.06) 100%);
  border: 1px solid var(--gray-200);
}
.content-image--area-map .area-map-svg {
  width: min(72%, 220px);
  height: auto;
  max-height: 85%;
  color: var(--navy);
}

/* ===== Areas ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.area-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-card p {
  color: var(--gray-500);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.area-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange);
}
.area-card .card-link:hover { gap: 10px; }

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--gray-500);
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,135,30,.1);
  border-radius: var(--radius-sm);
  color: var(--orange);
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  color: var(--gray-500);
  font-size: 0.95rem;
}
.contact-detail a:hover { color: var(--orange); }
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.contact-form > p {
  color: var(--gray-500);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,135,30,.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red-500);
}
.form-status {
  padding: 0;
  margin-bottom: 0;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.form-status.is-success {
  background: rgba(56,161,105,.1);
  color: var(--green-500);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.form-status.is-error {
  background: rgba(229,62,62,.1);
  color: var(--red-500);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.recaptcha-terms {
  font-size: 0.8rem !important;
  color: var(--gray-400) !important;
  margin-top: 8px;
}
.recaptcha-terms a { color: var(--gray-500); text-decoration: underline; }
.recaptcha-terms a:hover { color: var(--orange); }

/* ===== Pricing / Feature List ===== */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: rgba(232,135,30,.3);
  box-shadow: var(--shadow-sm);
}
.feature-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,135,30,.1);
  border-radius: var(--radius-sm);
  color: var(--orange);
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
/* Footer logo: white badge on dark footer (transparent logo sits on light panel) */
.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 20px;
  padding: 14px 20px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f6f9 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 3px solid var(--orange);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 10px 28px rgba(0, 0, 0, 0.22);
}
.footer-logo-link {
  display: block;
  line-height: 0;
}
.footer-logo-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
.footer-logo {
  height: auto;
  width: min(100%, 280px);
  max-height: 84px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--orange);
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact li svg {
  flex-shrink: 0;
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,.4);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /*
   * backdrop-filter on .site-header creates a containing block for position:fixed
   * descendants, so the full-screen menu was anchored to the ~80px header bar and
   * painted under <main>. Disable blur on small screens so the overlay uses the viewport.
   */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.995);
  }

  .mobile-toggle { display: flex; }
  /* Nav must not participate in header flex row (was flex:1 → squeezed strip) */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    flex: none !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 88px 24px 32px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1201;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
  }
  .nav-list > li {
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-list > li > a,
  .nav-list .nav-dropdown-toggle {
    justify-content: center;
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
  }
  .has-dropdown.is-open .dropdown-arrow {
    transform: rotate(180deg);
  }
  /* Mobile: accordion submenus (no hover) */
  .has-dropdown .dropdown {
    position: static;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
    width: 100%;
    background: var(--gray-50);
    transition: max-height 0.35s ease;
  }
  .has-dropdown.is-open .dropdown {
    max-height: 320px;
    padding: 4px 0 12px;
    border-bottom: 1px solid var(--gray-100);
  }
  .dropdown li a {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .header-cta { display: none; }
  .hero {
    padding: 130px 0 60px;
  }
  .hero h1,
  .hero p,
  .hero-badge,
  .hero-stat-number,
  .hero-stat-label {
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
  }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-stat-number { font-size: 1.5rem; }
}
