/* ============================================================
   EDGE GLASS — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:         #081829;
  --navy-mid:     #0D2137;
  --navy-light:   #1A3A5C;
  --blue:         #2A7FD6;
  --blue-light:   #4AAFE8;
  --blue-pale:    #C8E6F8;
  --white:        #FFFFFF;
  --off-white:    #F8FAFC;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-400:     #94A3B8;
  --gray-500:     #64748B;
  --gray-600:     #475569;
  --gray-700:     #334155;
  --gray-800:     #1E293B;
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --section-py:   88px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.16);
  --shadow-xl:    0 20px 60px rgba(0,0,0,0.22);
  --gradient-hero:  linear-gradient(135deg, #050D18 0%, #0D2137 60%, #1A3A5C 100%);
  --gradient-blue:  linear-gradient(135deg, #2A7FD6, #4AAFE8);
  --gradient-dark:  linear-gradient(180deg, rgba(8,24,41,0) 0%, rgba(8,24,41,0.92) 100%);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   all 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-600); line-height: 1.75; }

/* ---- Layout ---- */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-py  { padding: var(--section-py) 0; }
.bg-light    { background: var(--gray-50); }
.bg-navy     { background: var(--navy); }
.text-center { text-align: center; }

/* ---- Section Labels ---- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 28px; height: 2px;
  background: var(--gradient-blue); border-radius: 2px;
}
.text-center .section-label { justify-content: center; }
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-500);
  max-width: 600px; margin-bottom: 52px;
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-blue); color: white;
  box-shadow: 0 4px 20px rgba(42,127,214,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(42,127,214,0.55); color: white; }
.btn-outline { border-color: rgba(255,255,255,0.45); color: white; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; color: white; }
.btn-outline-dark { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline-dark:hover { background: var(--blue); color: white; }
.btn-white { background: white; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--navy); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }
.btn-call { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.45); color: white; backdrop-filter: blur(4px); }
.btn-call:hover { background: rgba(255,255,255,0.22); border-color: white; color: white; transform: translateY(-2px); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition); background: transparent; padding: 12px 0;
}
.navbar.scrolled { background: #050D18; padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.navbar.page-nav  { background: #050D18; }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: flex-start;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 50px; width: auto; mix-blend-mode: screen; }
.nav-logo-name {
  color: white; font-family: var(--font-heading); font-size: 1.05rem;
  font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; line-height: 1;
}

.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
/* Hide the in-menu Book Service on desktop (a standalone header copy is used instead) */
.nav-menu .nav-cta { display: none; }
.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 8px 13px;
  color: rgba(255,255,255,0.82); font-size: 0.88rem; font-weight: 500;
  border-radius: 6px; transition: var(--transition); font-family: var(--font-heading);
}
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.1); }
.nav-link svg { width: 13px; height: 13px; transition: transform 0.3s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown (legacy, kept for non-mega pages) */
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: white; border-radius: var(--radius); box-shadow: var(--shadow-xl);
  padding: 10px; min-width: 280px;
  opacity: 0; visibility: hidden; transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-category { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); padding: 8px 12px 4px; }
.dropdown-divider { height: 1px; background: var(--gray-200); margin: 6px 0; }
.dropdown-link {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  border-radius: 8px; color: var(--gray-700); font-size: 0.86rem; font-weight: 500;
}
.dropdown-link:hover { background: var(--gray-50); color: var(--blue); }
.dropdown-link .icon {
  width: 30px; height: 30px; background: var(--gray-100); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0;
}

/* Mega Menu */
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: white; border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(8,24,41,0.18), 0 4px 16px rgba(8,24,41,0.08);
  border: 1px solid var(--gray-200);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  display: grid; grid-template-columns: repeat(5, 1fr);
  width: min(96vw, 1060px); z-index: 1001;
  padding: 28px 24px;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-col { padding: 0 16px; border-right: 1px solid var(--gray-200); }
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; padding-right: 0; }
.mega-hub-title {
  font-size: 0.69rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--navy); padding-bottom: 10px; margin-bottom: 10px;
  border-bottom: 2px solid var(--blue); line-height: 1.4;
}
.mega-hub-link {
  display: block; padding: 5px 0; color: var(--navy);
  font-size: 0.84rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px;
  transition: color 0.15s;
}
.mega-hub-link:hover { color: var(--blue); }
.mega-link {
  display: block; padding: 4px 0;
  color: var(--gray-600); font-size: 0.81rem; font-weight: 400; line-height: 1.5;
  transition: color 0.15s;
}
.mega-link:hover { color: var(--blue); }

/* Mobile-only services menu — hidden on desktop */
.mobile-services-menu { display: none; }

.nav-cta {
  background: var(--gradient-blue); color: white !important; padding: 10px 22px;
  border-radius: 8px; font-weight: 600; font-size: 0.86rem; font-family: var(--font-heading);
  margin-left: 10px; box-shadow: 0 4px 15px rgba(42,127,214,0.45);
  line-height: 1;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(42,127,214,0.55); background: var(--gradient-blue) !important; }
/* Standalone header copy of Book Service (outside nav-menu) */
.nav-cta-hdr { display: inline-flex; align-items: center; margin-left: 0; }

.nav-call {
  display: flex; align-items: center; gap: 7px; padding: 10px 18px;
  background: rgba(42,127,214,0.18); border: 1px solid rgba(42,127,214,0.45);
  border-radius: 8px; color: white; font-family: var(--font-heading);
  font-size: 0.86rem; font-weight: 600; white-space: nowrap; line-height: 1;
  transition: var(--transition); margin-left: 8px;
}
.nav-call:hover { background: rgba(42,127,214,0.32); border-color: rgba(42,127,214,0.75); color: white; }
.nav-call svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-call-text { display: inline; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; align-self: center; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; display: none; }
.nav-overlay.open { display: block; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--gradient-hero);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/Large Living Room Window 2.jpeg') center/cover no-repeat;
  opacity: 0.12;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(42,127,214,0.18) 0%, transparent 70%);
  top: 50%; right: -120px; transform: translateY(-50%); pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding-top: 3rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,127,214,0.14); border: 1px solid rgba(42,127,214,0.3);
  padding: 8px 16px; border-radius: 50px; color: var(--blue-light);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 0;
}
/* Restore margin only for standalone top-of-hero badge (direct child of hero-content) */
.hero-content > .hero-badge { margin-bottom: 24px; }
.hero-badge .dot {
  width: 7px; height: 7px; background: var(--blue-light); border-radius: 50%;
  animation: pulseAnim 2s infinite;
}
@keyframes pulseAnim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

/* Hero badge strip (service page heroes) */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero-badges > span {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,127,214,0.14); border: 1px solid rgba(42,127,214,0.3);
  padding: 7px 14px; border-radius: 50px;
  color: var(--blue-light); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
}
/* When .hero-badge is inside .hero-badges (SVG variant), reset margin */
.hero-badges .hero-badge {
  margin-bottom: 0;
}
.hero-badges .hero-badge svg {
  width: 14px; height: 14px; flex-shrink: 0;
}

.hero h1 {
  color: white; font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px;
}
.hero h1 span { background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero > .container > .hero-content > p { color: rgba(255,255,255,0.72); font-size: 1.12rem; margin-bottom: 36px; max-width: 560px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }

/* Badge/chip group containers — replaces ad-hoc inline styles */
.badge-group {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
.badge-group-center {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.86rem; }
.trust-item svg { color: var(--blue-light); flex-shrink: 0; }

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar { background: white; box-shadow: var(--shadow-lg); position: relative; z-index: 3; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--gray-200); transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gray-50); }
.stat-number {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800;
  background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 0.83rem; color: var(--gray-500); font-weight: 500; }

/* ================================================================
   SERVICE CARDS (homepage)
   ================================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.services-grid-row2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 800px; margin: 28px auto 0; }

.service-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--blue-pale); }
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.service-card-body .service-link { margin-top: auto; }
.service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue-pale), rgba(42,127,214,0.1));
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-card > .service-card-body > p { font-size: 0.9rem; margin-bottom: 20px; }
.service-list { list-style: none; padding: 0; margin-bottom: 24px; }
.service-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.87rem; color: var(--gray-600); padding: 4px 0;
}
.service-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%; flex-shrink: 0;
}
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; font-size: 0.87rem; }
.service-link:hover { gap: 10px; color: var(--navy); }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-us-img { position: relative; }
.why-us-img img { border-radius: var(--radius-xl); width: 100%; height: 520px; object-fit: cover; }
.why-us-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: white; padding: 22px 26px;
  border-radius: var(--radius); box-shadow: var(--shadow-xl);
}
.why-us-badge .number {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800;
  background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.why-us-badge .label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; }
.features-list { list-style: none; padding: 0; margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(42,127,214,0.1), rgba(74,175,232,0.15));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.feature-text h4 { margin-bottom: 4px; font-size: 1rem; }
.feature-text p  { font-size: 0.87rem; }

/* ================================================================
   GALLERY PREVIEW
   ================================================================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px); gap: 16px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: var(--gradient-dark);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { color: white; font-weight: 600; font-size: 0.88rem; }

/* ================================================================
   SERVICE AREAS
   ================================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-card {
  background: white; border-radius: var(--radius-lg); padding: 32px 20px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-pale); }
.area-flag { font-size: 3rem; margin-bottom: 12px; }
.area-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.area-card p { font-size: 0.8rem; color: var(--gray-400); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-quote { font-size: 3.5rem; color: var(--blue-pale); font-family: Georgia, serif; line-height: 1; margin-bottom: 8px; }
.testimonial-text { color: var(--gray-600); font-size: 0.91rem; line-height: 1.72; margin-bottom: 20px; }
.testimonial-stars { color: #F59E0B; margin-bottom: 16px; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-blue); display: flex; align-items: center;
  justify-content: center; color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.author-info h5 { font-size: 0.9rem; margin-bottom: 2px; }
.author-info span { font-size: 0.76rem; color: var(--gray-400); }

/* ================================================================
   EMERGENCY CTA BANNER
   ================================================================ */
.emergency-cta {
  background: var(--gradient-hero); position: relative; overflow: hidden; padding: 64px 0;
}
.emergency-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.emergency-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.emergency-text h2 { color: white; font-size: 2rem; margin-bottom: 8px; }
.emergency-text p  { color: rgba(255,255,255,0.65); }
.emergency-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.phone-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--navy); padding: 16px 28px;
  border-radius: 8px; font-weight: 700; font-size: 1.1rem;
  box-shadow: var(--shadow-md); transition: var(--transition);
}
.phone-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--navy); }

/* ================================================================
   BOOKING MULTI-STEP FORM
   ================================================================ */
.booking-wrapper {
  max-width: 860px; margin: 0 auto; background: white;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); overflow: hidden;
}
.booking-header {
  background: var(--gradient-hero); padding: 40px 48px; position: relative; overflow: hidden;
}
.booking-header::after {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 220px; height: 220px; background: rgba(42,127,214,0.14); border-radius: 50%;
}
.booking-header h2 { color: white; font-size: 1.8rem; margin-bottom: 6px; }
.booking-header p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* Progress */
.step-indicator { display: flex; margin-bottom: 0; position: relative; }
.step-ind {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 8px; position: relative;
}
.step-ind::after {
  content: ''; position: absolute; top: 17px; left: 50%; width: 100%;
  height: 2px; background: var(--gray-200); transition: var(--transition);
}
.step-ind:last-child::after { display: none; }
.step-ind.done::after, .step-ind.active::after { background: var(--blue); }
.step-circle {
  width: 34px; height: 34px; border-radius: 50%; background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--gray-500);
  position: relative; z-index: 1; transition: var(--transition);
}
.step-ind.active .step-circle { background: var(--gradient-blue); color: white; }
.step-ind.done .step-circle   { background: var(--blue); color: white; }
.step-label { font-size: 0.68rem; color: var(--gray-400); text-align: center; font-weight: 500; }
.step-ind.active .step-label  { color: var(--blue); font-weight: 600; }

.booking-progress { padding: 28px 48px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.booking-body { padding: 40px 48px; }
.booking-step { display: none; }
.booking-step.active { display: block; animation: stepIn 0.3s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }

.step-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.step-desc  { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 28px; }

/* Service option cards */
.service-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.service-option {
  border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 20px 16px;
  text-align: center; cursor: pointer; transition: var(--transition); background: white;
}
.service-option:hover  { border-color: var(--blue); background: var(--gray-50); }
.service-option.selected { border-color: var(--blue); background: rgba(42,127,214,0.05); }
.service-option .opt-icon { font-size: 2rem; margin-bottom: 10px; }
.service-option h4 { font-size: 0.9rem; margin-bottom: 4px; }
.service-option p  { font-size: 0.76rem; color: var(--gray-400); margin: 0; }

.specific-panel { display: none; grid-template-columns: 1fr 1fr; gap: 10px; }
.specific-panel.visible { display: grid; }
.spec-option {
  border: 2px solid var(--gray-200); border-radius: 8px; padding: 12px 14px;
  cursor: pointer; transition: var(--transition); display: flex; align-items: center;
  gap: 8px; font-size: 0.86rem; font-weight: 500; color: var(--gray-700); background: white;
}
.spec-option:hover, .spec-option.selected { border-color: var(--blue); background: rgba(42,127,214,0.05); color: var(--blue); }

/* Form fields */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-800);
  transition: var(--transition); background: white;
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,127,214,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
}

.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.time-slot {
  border: 2px solid var(--gray-200); border-radius: 8px; padding: 10px;
  text-align: center; cursor: pointer; font-size: 0.84rem; font-weight: 500;
  color: var(--gray-600); transition: var(--transition); background: white;
}
.time-slot:hover, .time-slot.selected { border-color: var(--blue); background: rgba(42,127,214,0.05); color: var(--blue); }

.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gray-200);
}

/* Success screen */
.booking-success { text-align: center; padding: 20px 0; display: none; }
.success-icon {
  width: 80px; height: 80px; background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 24px;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--blue-pale); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600; color: var(--navy); gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px; background: var(--gray-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.2rem; line-height: 1; transition: var(--transition); color: var(--blue);
}
.faq-item.open .faq-icon { background: var(--blue); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--gray-600); font-size: 0.91rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ================================================================
   BLOG CARDS
   ================================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-tag {
  position: absolute; top: 12px; left: 12px; background: var(--blue); color: white;
  font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.78rem; color: var(--gray-400); }
.blog-card h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { font-size: 0.87rem; margin-bottom: 16px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; font-size: 0.84rem; }
.blog-read-more:hover { gap: 10px; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info-card { background: var(--navy); border-radius: var(--radius-xl); padding: 44px; }
.contact-info-card h3 { color: white; font-size: 1.5rem; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 36px; font-size: 0.9rem; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px; background: rgba(42,127,214,0.18); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail-text h5 { color: rgba(255,255,255,0.45); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; font-weight: 600; }
.contact-detail-text p, .contact-detail-text a { color: white; font-size: 0.92rem; font-weight: 500; }
.contact-areas { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-areas h5 { color: rgba(255,255,255,0.5); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); padding: 6px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 500; }

.contact-form-wrapper { background: white; border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.contact-form-wrapper h3 { margin-bottom: 8px; }
.contact-form-wrapper > p { margin-bottom: 28px; font-size: 0.9rem; }

/* ================================================================
   PAGE HERO (interior pages)
   ================================================================ */
.page-hero { background: var(--gradient-hero); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1.08rem; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: var(--blue-light); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ================================================================
   SERVICES FULL PAGE
   ================================================================ */
.services-category { padding: 64px 0; }
.services-category:nth-child(even) { background: var(--gray-50); }
.category-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 2px solid var(--gray-200); }
.category-icon {
  width: 56px; height: 56px; background: var(--gradient-blue); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0;
}
.category-header h2 { font-size: 1.6rem; margin-bottom: 6px; }
.category-header p { font-size: 0.9rem; margin: 0; }
.service-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---- Responsive utility grid classes (must come after service-list-grid to win specificity) ---- */
.grid-split         { display: grid; grid-template-columns: 1fr 1fr; }
.grid-2col          { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-4col          { display: grid; grid-template-columns: repeat(4, 1fr); }
.grid-blog-featured { display: grid; grid-template-columns: 1.2fr 1fr; }
.grid-faq           { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.service-detail-card {
  background: white; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.service-detail-card:hover { border-color: var(--blue-pale); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-detail-card h4 { font-size: 1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.service-detail-card h4 span { font-size: 1.25rem; }
.service-detail-card p { font-size: 0.85rem; }
.service-cta-card {
  grid-column: 1 / -1; background: var(--navy); border-radius: var(--radius); padding: 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.service-cta-card h4 { color: white; font-size: 1.2rem; margin-bottom: 6px; }
.service-cta-card p { color: rgba(255,255,255,0.6); margin: 0; font-size: 0.88rem; }

/* ================================================================
   GALLERY PAGE
   ================================================================ */
.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-full-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; }
.gallery-full-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,24,41,0.85) 0%, transparent 55%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-full-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: white; font-size: 0.95rem; margin-bottom: 3px; }
.gallery-overlay p { color: rgba(255,255,255,0.65); font-size: 0.78rem; margin: 0; }
.gallery-zoom { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.15); border-radius: 6px; padding: 6px 10px; color: white; font-size: 0.8rem; opacity: 0; transition: var(--transition); }
.gallery-full-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.96);
  z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; color: white;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: white;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.65); font-size: 0.85rem; text-align: center; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); text-align: center; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-pale); }
.value-icon { font-size: 2.8rem; margin-bottom: 16px; }
.value-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cert-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; text-align: center; }
.cert-card .cert-icon { font-size: 2rem; margin-bottom: 12px; }
.cert-card h4 { font-size: 0.9rem; margin-bottom: 6px; }
.cert-card p { font-size: 0.8rem; }

/* ================================================================
   BLOG SINGLE
   ================================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.blog-single-header { margin-bottom: 36px; }
.blog-single-meta { display: flex; gap: 16px; margin-bottom: 16px; font-size: 0.82rem; color: var(--gray-400); flex-wrap: wrap; align-items: center; }
.blog-single-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; height: 420px; }
.blog-single-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-content h2 { font-size: 1.55rem; margin: 36px 0 14px; }
.blog-content h3 { font-size: 1.18rem; margin: 26px 0 10px; }
.blog-content p  { margin-bottom: 18px; line-height: 1.8; }
.blog-content ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.blog-content ul li { color: var(--gray-600); margin-bottom: 6px; line-height: 1.7; }
.blog-content .callout {
  background: rgba(42,127,214,0.07); border-left: 4px solid var(--blue);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 28px 0;
}
.blog-content .callout p { margin: 0; color: var(--navy); font-weight: 500; }
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: white; border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 24px; margin-bottom: 24px; }
.sidebar-card h4 { margin-bottom: 16px; font-size: 1rem; }
.sidebar-post { display: flex; gap: 12px; margin-bottom: 16px; }
.sidebar-post img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.sidebar-post-text h5 { font-size: 0.84rem; margin-bottom: 4px; line-height: 1.4; }
.sidebar-post-text h5 a { color: var(--navy); }
.sidebar-post-text h5 a:hover { color: var(--blue); }
.sidebar-post-text span { font-size: 0.75rem; color: var(--gray-400); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: #050D18; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 44px; width: 44px; object-fit: contain; mix-blend-mode: screen; }
.footer-brand-name { color: #FFFFFF; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.86rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); font-style: normal;
}
.social-btn:hover { background: var(--blue); color: white; }
.footer-col h4 { color: white; font-size: 0.92rem; margin-bottom: 20px; font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.86rem; }
.footer-links a:hover { color: var(--blue-light); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item span { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p, .footer-contact-item a { color: rgba(255,255,255,0.65); font-size: 0.86rem; }
.footer-contact-item a:hover { color: var(--blue-light); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.65); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: var(--blue-light); }

/* ================================================================
   UTILITIES & ANIMATIONS
   ================================================================ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
  background: var(--gradient-blue); color: white; border: none; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(42,127,214,0.4); opacity: 0; transform: translateY(20px);
  transition: var(--transition); z-index: 500;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(42,127,214,0.5); }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }

.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .services-grid, .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-row2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4col { grid-template-columns: repeat(2, 1fr); }
  .grid-faq, .grid-blog-featured { grid-template-columns: 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--gray-200); }
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-us-img { order: -1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-list-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 340px; height: 100vh;
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 80px 20px 40px; gap: 0; transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.35); overflow-y: auto; overflow-x: hidden; z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-item { width: 100%; min-width: 0; }
  .nav-link { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07); border-radius: 0; font-size: 1.06rem; font-weight: 600; color: rgba(255,255,255,0.9); }
  .dropdown-menu {
    position: static; transform: none; box-shadow: none; border: none;
    background: rgba(255,255,255,0.05); border-radius: 8px;
    opacity: 1; visibility: visible; margin: 4px 0; display: none;
  }
  .nav-item.mobile-open .dropdown-menu { display: block; }
  .dropdown-link { color: rgba(255,255,255,0.65); }
  .dropdown-link:hover { background: rgba(255,255,255,0.08); color: white; }

  /* Reset the high-specificity desktop hover rule so it can't re-apply the translateX transform on mobile */
  .nav-item:hover .mega-menu {
    position: static; transform: none; left: auto; top: auto;
    opacity: 1; visibility: visible; width: 100%;
  }
  .mega-menu {
    position: static; transform: none; left: auto; top: auto;
    box-shadow: none; border: none; border-radius: 0;
    opacity: 1; visibility: visible; margin: 0; display: none;
    grid-template-columns: 1fr; width: 100%; min-width: 0;
    padding: 0; background: transparent;
  }
  .nav-item.mobile-open .mega-menu { display: block; }
  /* Hide all detailed mega-menu content on mobile — only mobile-services-menu shows */
  .mega-col, .mega-hub-title, .mega-hub-link, .mega-link { display: none; }
  /* Clean mobile services dropdown */
  .mobile-services-menu {
    display: none; flex-direction: column; padding: 4px 0 12px 14px;
  }
  .nav-item.mobile-open .mobile-services-menu { display: flex; }
  .mobile-service-link {
    display: block; padding: 12px 0;
    color: rgba(255,255,255,0.6); font-size: 0.97rem; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
    white-space: normal; overflow-wrap: break-word;
  }
  .mobile-service-link:last-child { border-bottom: none; }
  .mobile-service-link:hover, .mobile-service-link:active { color: rgba(255,255,255,0.92); }
  .dropdown-category { color: rgba(255,255,255,0.3); }
  .nav-cta { margin: 20px 0 0; width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
  .nav-call-text { display: none; }
  .nav-call { margin-left: auto; margin-right: 12px; padding: 9px 11px; }
  .nav-cta-hdr { display: none; }
  .nav-menu .nav-cta { display: flex; width: 100%; margin: 24px 0 0; justify-content: center; border-radius: 10px; padding: 14px 22px; font-size: 0.97rem; }
  .nav-menu { justify-content: flex-start; flex: unset; }

  .services-grid, .services-grid-row2, .blog-grid, .gallery-full-grid { grid-template-columns: 1fr; }
  .services-grid-row2 { max-width: 100%; }
  .grid-split, .grid-2col, .grid-4col, .grid-blog-featured { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; grid-column: auto; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .emergency-content { flex-direction: column; text-align: center; }
  .service-options { grid-template-columns: 1fr; }
  .specific-panel { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-body, .booking-header { padding: 28px 24px; }
  .booking-progress { padding: 24px; }
  .service-list-grid { grid-template-columns: 1fr; }
  .values-grid, .cert-grid { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .why-us-badge { bottom: 12px; right: 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  /* Badge/chip groups — compact on mobile */
  .hero-trust { gap: 8px; }
  .badge-group { gap: 8px; }
  .badge-group-center { gap: 8px; }
  .hero-badges { gap: 8px; }
  .hero-badges > span { padding: 6px 12px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  /* Hero paragraph — tighter on mobile */
  .hero > .container > .hero-content > p { font-size: 1rem; margin-bottom: 24px; }
  /* Hero actions — two buttons side-by-side, "View All" full-width below */
  .hero-actions { flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .hero-actions .btn { flex: 1 1 calc(50% - 4px); justify-content: center; padding: 16px 12px; font-size: 0.95rem; }
  .hero-actions .btn-outline { flex: 1 1 100%; padding: 15px 12px; font-size: 0.95rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .step-label { display: none; }
}
