/* ============================================================
   BEST CLEANING TAMPA LLC — Global Stylesheet
   Design: Novelio Technologies | 2026
   ============================================================ */

/* ── Google Fonts are loaded in HTML <head> ── */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --primary:         #0A7B6A;
  --primary-dark:    #065A4C;
  --primary-light:   #12A68E;
  --primary-xlight:  #E8F5F2;
  --gold:            #D4AF37;
  --gold-light:      #F0D060;
  --gold-dark:       #B8960C;

  /* Neutrals */
  --white:           #FFFFFF;
  --off-white:       #F7FDFB;
  --gray-50:         #F9FAFB;
  --gray-100:        #F3F4F6;
  --gray-200:        #E5E7EB;
  --gray-300:        #D1D5DB;
  --gray-400:        #9CA3AF;
  --gray-500:        #6B7280;
  --text-dark:       #0F1C1A;
  --text-mid:        #2D3F3C;
  --text-light:      #5C7069;

  /* Glass */
  --glass-bg:        rgba(255,255,255,0.10);
  --glass-bg-light:  rgba(255,255,255,0.85);
  --glass-border:    rgba(255,255,255,0.22);

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(10,123,106,0.08);
  --shadow-sm:  0 2px 10px rgba(10,123,106,0.12);
  --shadow-md:  0 6px 28px rgba(10,123,106,0.16), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:  0 16px 56px rgba(10,123,106,0.20), 0 6px 20px rgba(0,0,0,0.10);
  --shadow-xl:  0 28px 80px rgba(10,123,106,0.24), 0 12px 32px rgba(0,0,0,0.12);
  --shadow-glow:0 0 40px rgba(10,123,106,0.30);
  --shadow-gold:0 4px 24px rgba(212,175,55,0.35);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-accent:  'Dancing Script', cursive;

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full:9999px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:  0.18s;
  --duration-mid:   0.40s;
  --duration-slow:  0.70s;

  /* Layout */
  --max-width:  1320px;
  --nav-height: 80px;
}

/* ============================================================
   2. CSS RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
h4 { font-size: 1.25rem; }

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.accent-text {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: var(--space-4);
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: var(--space-12);
  line-height: 1.8;
}

.section-subtitle.light { color: rgba(255,255,255,0.82); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.section {
  padding-block: var(--space-24);
}

.section-sm { padding-block: var(--space-16); }
.section-lg { padding-block: var(--space-32); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--duration-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.20) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out);
}

.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(212,175,55,0.50);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.70);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.05rem 2.4rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
}

.btn-pulse {
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: 0 0 0 10px rgba(212,175,55,0.10), var(--shadow-gold); }
}

.btn-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-mid) var(--ease-out);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-nav.scrolled {
  background: rgba(6,90,76,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  height: 68px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: height var(--duration-mid) var(--ease-out);
}

.site-nav.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-mid) var(--ease-out);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-dropdown > a .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast);
}

.nav-dropdown:hover > a .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: var(--space-2);
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-mid) var(--ease-out);
  border: 1px solid var(--gray-100);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  color: var(--text-mid) !important;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
  background: var(--primary-xlight);
  color: var(--primary) !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: var(--text-dark) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-gold);
  transition: all var(--duration-mid) var(--ease-out) !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(212,175,55,0.50) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-mid) var(--ease-out);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-mid) var(--ease-out);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-mid) var(--ease-out);
  text-align: center;
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.30s; }

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--text-dark) !important;
  padding: 0.85rem 2.5rem !important;
  border-radius: var(--radius-full) !important;
  margin-top: var(--space-4) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
}

.mobile-nav-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.mobile-nav-services a {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  color: rgba(255,255,255,0.80) !important;
}

/* ============================================================
   7. MOBILE STICKY CTA BAR
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 60px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 50%;
  height: 100%;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  transition: filter var(--duration-fast);
}

.mobile-sticky-cta a:hover { filter: brightness(1.12); }

.sticky-call {
  background: var(--primary);
}

.sticky-whatsapp {
  background: #25D366;
}

/* ============================================================
   8. SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--duration-mid) var(--ease-out);
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   9. FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.80);
  padding-top: var(--space-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand .nav-logo img {
  height: 52px;
  margin-bottom: var(--space-4);
  filter: brightness(1.1);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.footer-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-stars span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.60);
  font-weight: 500;
}

.footer-awards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.award-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.30);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 500;
  width: fit-content;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--duration-fast), padding-left var(--duration-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-4);
}

.footer-contact-item .icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--duration-fast);
}

.footer-contact-item a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-mid) var(--ease-out);
  color: rgba(255,255,255,0.70);
  font-size: 1rem;
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.social-icon.whatsapp:hover { background: #25D366; border-color: #25D366; }
.social-icon.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-icon.instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #dc2743; }

.footer-bottom {
  padding-block: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold-light); }

.footer-credit {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}

.footer-credit span {
  color: var(--gold-light);
  font-weight: 600;
}

/* ============================================================
   10. PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  min-height: 320px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-4);
}

.page-hero p {
  color: rgba(255,255,255,0.80);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: var(--space-6);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-5);
}

.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--duration-fast); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.40); }

/* ============================================================
   11. HERO SECTION (Homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,90,76,0.88) 0%,
    rgba(10,123,106,0.72) 50%,
    rgba(6,90,76,0.82) 100%
  );
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  animation: floatBubble linear infinite;
}

.bubble:nth-child(1) { width:120px; height:120px; left:8%; bottom:-60px; animation-duration:14s; animation-delay:0s; }
.bubble:nth-child(2) { width:80px;  height:80px;  left:25%; bottom:-40px; animation-duration:10s; animation-delay:2s; }
.bubble:nth-child(3) { width:200px; height:200px; right:12%; bottom:-100px; animation-duration:18s; animation-delay:1s; }
.bubble:nth-child(4) { width:60px;  height:60px;  right:28%; bottom:-30px; animation-duration:8s;  animation-delay:4s; }
.bubble:nth-child(5) { width:150px; height:150px; left:48%; bottom:-75px; animation-duration:16s; animation-delay:3s; }

@keyframes floatBubble {
  0%   { transform: translateY(0) rotate(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
  max-width: 780px;
}

.hero-content .accent-text {
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 8px rgba(0,0,0,0.20);
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: var(--space-5);
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
  line-height: 1.1;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 560px;
}

.hero-stats {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.hero-stat {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  text-align: center;
  min-width: 120px;
}

.hero-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.70);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border-right: 2px solid rgba(255,255,255,0.70);
  border-bottom: 2px solid rgba(255,255,255,0.70);
  transform: rotate(45deg);
  animation: scrollArrow 1.4s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.7; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ============================================================
   12. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary-dark);
  padding-block: var(--space-5);
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  gap: var(--space-8);
  align-items: center;
  white-space: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-inline: var(--space-4);
}

.trust-bar-inner::-webkit-scrollbar { display: none; }

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.90);
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

.trust-item .trust-icon { font-size: 1.2rem; }

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.20);
  flex-shrink: 0;
}

/* ============================================================
   13. SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-mid) var(--ease-out);
  cursor: pointer;
  perspective: 1000px;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-card:hover .service-card-img img {
  transform: scale(1.10);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,90,76,0.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-mid);
}

.service-card:hover .service-card-img-overlay { opacity: 1; }

.service-icon-badge {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  background: var(--white);
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--duration-mid) var(--ease-out);
}

.service-card:hover .service-icon-badge {
  transform: translateY(0);
  opacity: 1;
}

.service-card-body {
  padding: var(--space-5) var(--space-6);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
}

.service-card-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap var(--duration-fast), color var(--duration-fast);
}

.service-card-link:hover { gap: var(--space-3); color: var(--primary-dark); }

.service-card-link .arrow {
  display: inline-block;
  transition: transform var(--duration-fast);
}
.service-card-link:hover .arrow { transform: translateX(4px); }

/* ============================================================
   14. ABOUT / STORY SECTION
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-stat-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
}

.about-stat-badge .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.about-stat-badge .num.gold { color: var(--gold-dark); }

.about-stat-badge .label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 3px;
  font-weight: 500;
}

.about-stat-badge.badge-1 {
  bottom: 2rem;
  left: -2rem;
  animation: floatBadge 4s ease-in-out infinite;
}

.about-stat-badge.badge-2 {
  top: 2rem;
  right: -2rem;
  animation: floatBadge 5s ease-in-out infinite reverse;
}

.about-stat-badge.badge-3 {
  bottom: 6rem;
  right: -1.5rem;
  animation: floatBadge 6s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.about-content .accent-text { margin-bottom: var(--space-3); }
.about-content .section-title { margin-bottom: var(--space-6); }

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-block: var(--space-6);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.about-feature .check {
  width: 22px;
  height: 22px;
  background: var(--primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   15. WHY CHOOSE US (Dark Section)
   ============================================================ */
.why-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #043D33 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(18,166,142,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: all var(--duration-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-mid) var(--ease-out);
}

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-4);
  display: block;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* ============================================================
   16. REVIEWS SECTION
   ============================================================ */
.reviews-section {
  background: var(--off-white);
}

.google-rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.google-rating-stars {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.star-icon {
  color: #FBBC04;
  font-size: 1.4rem;
}

.rating-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.rating-count {
  font-size: 0.9rem;
  color: var(--text-light);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  box-shadow: var(--shadow-xs);
}

.google-logo {
  font-size: 1rem;
  font-weight: 700;
}

.google-logo span:nth-child(1) { color: #4285F4; }
.google-logo span:nth-child(2) { color: #EA4335; }
.google-logo span:nth-child(3) { color: #FBBC05; }
.google-logo span:nth-child(4) { color: #4285F4; }
.google-logo span:nth-child(5) { color: #34A853; }
.google-logo span:nth-child(6) { color: #EA4335; }

/* Review Category Tabs */
.review-tabs {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.review-tab {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.review-tab:hover { border-color: var(--primary); color: var(--primary); }

.review-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--duration-mid) var(--ease-out);
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-card.hidden { display: none; }

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-info { flex: 1; }

.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.reviewer-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.review-stars {
  color: #FBBC04;
  font-size: 0.9rem;
  margin-bottom: var(--space-3);
}

.review-service-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--primary-xlight);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.review-text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
}

.review-read-more {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--gray-100);
}

.review-google-icon {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviews-cta {
  text-align: center;
  margin-top: var(--space-12);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================================
   17. STATS / COUNTERS SECTION (Parallax)
   ============================================================ */
.stats-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-24);
}

.stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,90,76,0.92) 0%,
    rgba(10,123,106,0.88) 100%
  );
}

.stats-section .container { position: relative; z-index: 1; }

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.counter-item {
  text-align: center;
  color: var(--white);
}

.counter-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}

.counter-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.awards-row {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.award-badge {
  background: var(--glass-bg);
  border: 1px solid rgba(212,175,55,0.35);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--white);
  transition: all var(--duration-mid) var(--ease-out);
}

.award-badge:hover {
  background: rgba(212,175,55,0.15);
  transform: scale(1.03) rotate(-1deg);
}

.award-badge .trophy { font-size: 2rem; }

.award-badge-text .year {
  font-size: 0.75rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.award-badge-text .name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-block: 2px;
}

.award-badge-text .org {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.60);
}

/* ============================================================
   18. SERVICE AREA SECTION
   ============================================================ */
.area-section { background: var(--white); }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-10);
}

.area-tag {
  background: var(--primary-xlight);
  color: var(--primary-dark);
  border: 1px solid rgba(10,123,106,0.20);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--duration-fast);
}

.area-tag:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

/* ============================================================
   19. BOOKING FORM SECTION
   ============================================================ */
.booking-section { background: var(--off-white); }

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-10);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--primary-xlight);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-5);
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: var(--space-2);
  transition: color var(--duration-fast);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235C7069' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10,123,106,0.10);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.field-error {
  display: none;
  font-size: 0.78rem;
  color: #EF4444;
  margin-top: var(--space-1);
}

.field-error.visible { display: block; }

.form-submit { width: 100%; }

.form-success {
  display: none;
  background: var(--primary-xlight);
  border: 1px solid rgba(10,123,106,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: var(--space-4);
}

.form-success.visible { display: block; }

/* Contact Info Panel */
.booking-info {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-6);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--primary-xlight);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-item-text a,
.contact-item-text p {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: color var(--duration-fast);
  margin: 0;
}

.contact-item-text a:hover { color: var(--primary); }

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--duration-mid) var(--ease-out);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.whatsapp-cta:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* ============================================================
   20. FINAL CTA SECTION
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3CradialGradient id='g'%3E%3Cstop offset='0%25' stop-color='%23FFFFFF' stop-opacity='0.06'/%3E%3Cstop offset='100%25' stop-color='%23FFFFFF' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx='20' cy='20' r='30' fill='url(%23g)'/%3E%3Ccircle cx='80' cy='80' r='40' fill='url(%23g)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  color: var(--gold-light);
  font-size: 1.2rem;
  animation: sparkleFly 6s ease-in-out infinite;
  opacity: 0;
}

.sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1.5s; }
.sparkle:nth-child(3) { top: 30%; right: 15%; animation-delay: 0.8s; }
.sparkle:nth-child(4) { bottom: 25%; right: 25%; animation-delay: 2.5s; }
.sparkle:nth-child(5) { top: 70%; left: 45%; animation-delay: 1s; }

@keyframes sparkleFly {
  0%   { opacity: 0; transform: translateY(10px) scale(0.5); }
  30%  { opacity: 1; transform: translateY(-5px) scale(1); }
  70%  { opacity: 0.7; transform: translateY(-15px) scale(1.1); }
  100% { opacity: 0; transform: translateY(-30px) scale(0.5); }
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-4);
}

.final-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  margin-bottom: var(--space-10);
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================================
   21. PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-xlight), var(--primary), var(--primary-xlight));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto var(--space-5);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-mid) var(--ease-spring);
}

.step-item:hover .step-num {
  background: var(--gold);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: var(--shadow-gold);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: var(--space-2);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   22. FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  transition: color var(--duration-fast);
  user-select: none;
}

.faq-question:hover { color: var(--primary); }

.faq-question.active { color: var(--primary); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform var(--duration-mid) var(--ease-out), background var(--duration-fast);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: var(--space-5);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ============================================================
   23. SERVICE DETAIL PAGE STYLES
   ============================================================ */
.service-detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.service-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 460px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-detail-img:hover img { transform: scale(1.04); }

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-block: var(--space-6);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 0.9rem;
  color: var(--text-mid);
}

.checklist-icon {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   24. ANIMATIONS (Scroll-Triggered)
   ============================================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.animate-scale-in {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-spring);
}

.animated {
  opacity: 1 !important;
  transform: none !important;
}

.stagger-1 { transition-delay: 0.05s !important; }
.stagger-2 { transition-delay: 0.12s !important; }
.stagger-3 { transition-delay: 0.19s !important; }
.stagger-4 { transition-delay: 0.26s !important; }
.stagger-5 { transition-delay: 0.33s !important; }
.stagger-6 { transition-delay: 0.40s !important; }
.stagger-7 { transition-delay: 0.47s !important; }
.stagger-8 { transition-delay: 0.54s !important; }

/* ============================================================
   25. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-10); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-10); }
  .about-split { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 560px; margin-inline: auto; }
  .about-stat-badge.badge-2 { right: -1rem; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-info { position: static; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   26. RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .container { padding-inline: var(--space-5); }
  .section { padding-block: var(--space-16); }
  .section-lg { padding-block: var(--space-20); }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid.two-col { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { gap: var(--space-3); }
  .hero-stat { min-width: 100px; padding: var(--space-3) var(--space-4); }

  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-10);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  .about-stat-badge.badge-1 { left: 0; bottom: -1rem; }
  .about-stat-badge.badge-2 { right: 0; top: -1rem; }
  .about-stat-badge.badge-3 { right: 0; bottom: 3rem; }

  .booking-form-wrap { padding: var(--space-6); }
  .form-row { grid-template-columns: 1fr; }

  .awards-row { flex-direction: column; align-items: center; }

  .process-steps { grid-template-columns: 1fr; }

  .service-detail-split { grid-template-columns: 1fr; }
  .service-detail-img { height: 260px; }

  .checklist { grid-template-columns: 1fr; }

  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn-group.center { align-items: center; }

  .mobile-sticky-cta { display: flex; }

  .scroll-top { bottom: 76px; }

  body { padding-bottom: 60px; }
}

/* ============================================================
   27. RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-content h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: var(--space-3); }
  .hero-stat { min-width: unset; width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid.two-col { grid-template-columns: 1fr; }

  .google-rating-display { flex-direction: column; gap: var(--space-3); }

  .review-tabs { gap: var(--space-2); }
  .review-tab { font-size: 0.78rem; padding: 0.4rem 0.85rem; }
}

/* ============================================================
   28. UTILITY CLASSES
   ============================================================ */
.text-center   { text-align: center; }
.text-primary  { color: var(--primary); }
.text-gold     { color: var(--gold); }
.text-white    { color: var(--white); }
.text-light    { color: var(--text-light); }

.bg-primary    { background: var(--primary); }
.bg-off-white  { background: var(--off-white); }
.bg-white      { background: var(--white); }

.mb-0  { margin-bottom: 0; }
.mb-2  { margin-bottom: var(--space-2); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.mt-auto { margin-top: auto; }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
