/* ============================================================
   CleanMate - Professional Cleaning Service Website
   Design: Fresh, trustworthy, clean — light + teal palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --teal:        #0D9488;
  --teal-dark:   #0F766E;
  --teal-light:  #CCFBF1;
  --teal-pale:   #F0FDFA;
  --navy:        #0F172A;
  --charcoal:    #1E293B;
  --slate:       #475569;
  --muted:       #94A3B8;
  --border:      #E2E8F0;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gold:        #D97706;
  --gold-light:  #FEF3C7;
  --success:     #059669;
  --error:       #DC2626;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --shadow-teal: 0 8px 32px rgba(13,148,136,0.22);

  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1200px;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--slate); }

/* ---------- Layout ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-alt { background: var(--off-white); }
.section-teal { background: var(--teal-pale); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(13,148,136,0.32); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}
.btn-white:hover { background: var(--teal-light); }
.btn-ghost { color: var(--slate); }
.btn-ghost:hover { color: var(--teal); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--teal);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: white; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-pale); }
.nav-links .admin-link {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 6px 10px;
}
.nav-links .admin-link:hover { color: var(--slate); background: var(--off-white); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }

/* ---------- Hero ---------- */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--teal-pale) 0%, #E0F2FE 50%, var(--teal-pale) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--teal-light);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal-dark);
  margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero p { font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--slate);
}
.hero-trust-item .check {
  width: 20px; height: 20px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-trust-item .check svg { width: 12px; height: 12px; stroke: var(--teal-dark); fill: none; stroke-width: 2.5; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.mockup-bar {
  background: var(--off-white);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mockup-bar .dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-bar .dot:nth-child(1) { background: #FC5C65; }
.mockup-bar .dot:nth-child(2) { background: #FED330; }
.mockup-bar .dot:nth-child(3) { background: #26DE81; }
.mockup-content { padding: 24px; }
.mockup-header-block {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  color: white;
}
.mockup-header-block h4 { color: white; font-size: 1.1rem; margin-bottom: 8px; }
.mockup-header-block p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.mockup-header-block .mockup-btn {
  display: inline-block;
  margin-top: 14px;
  background: white;
  color: var(--teal-dark);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}
.mockup-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mockup-card {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid var(--border);
}
.mockup-card-icon {
  width: 32px; height: 32px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.mockup-card-icon svg { width: 16px; height: 16px; fill: var(--teal); }
.mockup-card h5 { font-size: 0.78rem; color: var(--navy); margin-bottom: 4px; }
.mockup-card p { font-size: 0.72rem; color: var(--muted); }

.hero-float-card {
  position: absolute;
  bottom: -20px; left: -30px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}
.hero-float-card .avatar-stack { display: flex; }
.hero-float-card .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: white;
}
.hero-float-card .avatar:first-child { margin-left: 0; }
.hero-float-card .avatar-1 { background: var(--teal); }
.hero-float-card .avatar-2 { background: var(--gold); }
.hero-float-card .avatar-3 { background: #8B5CF6; }
.hero-float-card .rating-text p { font-size: 0.75rem; font-weight: 600; color: var(--navy); }
.hero-float-card .rating-text span { font-size: 0.7rem; color: var(--muted); }
.hero-float-stars { color: var(--gold); font-size: 0.75rem; }

/* ---------- Trust Badges ---------- */
.trust-section { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: flex; justify-content: space-around; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.trust-item:hover { background: var(--teal-pale); }
.trust-item-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 22px; height: 22px; fill: var(--teal); }
.trust-item-text strong { display: block; font-size: 0.9rem; color: var(--navy); }
.trust-item-text span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-teal); transform: translateY(-4px); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.875rem; color: var(--slate); font-weight: 500; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal-light); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.popular { border-color: var(--teal); }
.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-visual {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--teal-light), rgba(13,148,136,0.08));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-visual svg { width: 36px; height: 36px; fill: var(--teal); }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-features { margin-bottom: 24px; }
.service-features li {
  font-size: 0.85rem;
  color: var(--slate);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 16px;
}
.service-price .from { font-size: 0.8rem; color: var(--muted); }
.service-price .amount { font-size: 1.5rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.service-price .unit { font-size: 0.8rem; color: var(--muted); }

/* ---------- Why Choose Us ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { display: grid; gap: 20px; }
.why-item {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover { border-color: var(--teal-light); box-shadow: var(--shadow); }
.why-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; fill: var(--teal); }
.why-content h4 { margin-bottom: 6px; }
.why-content p { font-size: 0.875rem; }
.why-visual { position: relative; }
.why-visual-main {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.why-visual-main::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.why-visual-main h3 { color: white; font-size: 1.4rem; margin-bottom: 16px; }
.why-cert-list { display: grid; gap: 12px; }
.why-cert-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.why-cert-item svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.8); flex-shrink: 0; }
.why-cert-item span { font-size: 0.875rem; color: rgba(255,255,255,0.9); }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal), var(--teal-light));
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.process-step:hover { border-color: var(--teal-light); box-shadow: var(--shadow); }
.step-number {
  width: 56px; height: 56px;
  background: var(--teal);
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}
.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 0.875rem; }

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-visual {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}
.gallery-visual svg { width: 40px; height: 40px; margin-bottom: 8px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.7);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: white; font-size: 0.9rem; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.78rem; }
.gallery-cat-1 { background: linear-gradient(135deg, #0D9488, #0F766E); color: white; }
.gallery-cat-2 { background: linear-gradient(135deg, #0369A1, #0C4A6E); color: white; }
.gallery-cat-3 { background: linear-gradient(135deg, #7C3AED, #5B21B6); color: white; }
.gallery-cat-4 { background: linear-gradient(135deg, #B45309, #92400E); color: white; }
.gallery-cat-5 { background: linear-gradient(135deg, #0F766E, #134E4A); color: white; }
.gallery-cat-6 { background: linear-gradient(135deg, #1D4ED8, #1E3A8A); color: white; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { border-color: var(--teal); box-shadow: var(--shadow-teal); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.pricing-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.pricing-tagline { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }
.pricing-amount {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 6px;
}
.pricing-currency { font-size: 1.2rem; font-weight: 600; color: var(--slate); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.pricing-unit { font-size: 0.875rem; color: var(--muted); margin-bottom: 28px; }
.pricing-features { margin-bottom: 28px; display: grid; gap: 10px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--slate); }
.pricing-features li .feat-check { width: 18px; height: 18px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pricing-features li .feat-check svg { width: 10px; height: 10px; stroke: var(--teal-dark); fill: none; stroke-width: 2.5; }
.pricing-features li.not-included { color: var(--muted); }
.pricing-features li.not-included .feat-check { background: var(--off-white); }
.pricing-features li.not-included .feat-check svg { stroke: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--teal-light); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.9rem; color: var(--slate); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-size: 0.875rem; color: var(--navy); }
.testimonial-author-info span { font-size: 0.78rem; color: var(--muted); }
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 6px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
  background: none;
}
.faq-question:hover { background: var(--teal-pale); color: var(--teal); }
.faq-question.open { color: var(--teal); background: var(--teal-pale); }
.faq-icon {
  width: 24px; height: 24px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2; transition: var(--transition); }
.faq-question.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--slate); }

/* ---------- Contact & Booking Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { display: grid; gap: 20px; }
.contact-info-item {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; fill: var(--teal); }
.contact-info-content strong { display: block; font-size: 0.875rem; color: var(--navy); margin-bottom: 4px; }
.contact-info-content a, .contact-info-content p { font-size: 0.875rem; color: var(--slate); }
.contact-info-content a:hover { color: var(--teal); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 1.2rem; font-family: var(--font-display); color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--success);
  font-weight: 600;
}
.form-error-msg { color: var(--error); font-size: 0.8rem; margin-top: 4px; display: none; }

/* ============================================================
   Service Areas + Google Map + Inline Request Forms
   ============================================================ */

.map-section {
  background: var(--charcoal);
}

.map-section#service-areas {
  background: var(--charcoal);
  padding: 0;
  overflow: hidden;
}

.service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  width: 100%;
  min-height: 760px;
}

.map-section#service-areas .map-info {
  padding: 88px 64px;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.map-section#service-areas .section-label {
  width: fit-content;
  background: rgba(13, 148, 136, 0.18);
  color: var(--teal-light);
  margin-bottom: 16px;
}

.map-section#service-areas .map-info h3 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.map-section#service-areas .map-info p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 680px;
}

.map-section#service-areas .service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 26px;
}

.map-section#service-areas .area-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.22);
  border: 1px solid rgba(94, 234, 212, 0.35);
  color: var(--teal-light);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

.area-btn {
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
}

.area-btn:hover {
  transform: translateY(-2px);
  background: rgba(13, 148, 136, 0.35);
  border-color: var(--teal-light);
}

.area-btn.selected {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal-light);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.32);
}

.area-other {
  background: rgba(255, 255, 255, 0.08) !important;
  border-style: dashed !important;
}

.area-other.selected {
  background: #d97706 !important;
  border-color: #fbbf24 !important;
  color: #ffffff !important;
}

.selected-area-box {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(94, 234, 212, 0.35);
  margin-top: 6px;
  max-width: 720px;
}

.selected-area-box.active {
  border-style: solid;
  background: rgba(13, 148, 136, 0.12);
}

.selected-area-box strong {
  color: #ffffff;
  font-size: 1rem;
}

.selected-area-box span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

.selected-area-box textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(94, 234, 212, 0.28);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.selected-area-box textarea:focus {
  border-color: var(--teal-light);
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.18);
}

.area-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.area-action-buttons .btn {
  min-width: 150px;
  justify-content: center;
}

.google-map-box {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  min-height: 760px;
  overflow: hidden;
  background: #0f172a;
  align-self: start;
}

.google-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 760px;
  border: 0;
  display: block;
  filter: grayscale(10%) contrast(105%);
}

.map-card-overlay {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: white;
  color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  z-index: 2;
}

.map-card-overlay span {
  display: inline-block;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.map-card-overlay strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.map-card-overlay p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Inline area booking/message forms */

.area-inline-panel {
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(94, 234, 212, 0.28);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.area-inline-panel h4 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.area-inline-panel h4 span {
  color: var(--teal);
}

.area-inline-panel .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.area-inline-panel .form-group {
  margin-bottom: 14px;
}

.area-inline-panel label {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 7px;
}

.area-inline-panel input,
.area-inline-panel select,
.area-inline-panel textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--navy);
  background: #ffffff;
  outline: none;
}

.area-inline-panel textarea {
  min-height: 90px;
  resize: vertical;
}

.area-inline-panel input:focus,
.area-inline-panel select:focus,
.area-inline-panel textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

/* Keep old map classes safe */

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  min-height: 320px;
}

.map-visual {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

.map-placeholder svg {
  width: 64px;
  height: 64px;
  fill: var(--teal);
  opacity: 0.6;
  margin-bottom: 12px;
}

.map-placeholder p {
  font-size: 0.875rem;
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.25);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(13, 148, 136, 0.1);
  }
}

/* Responsive service area layout */

@media (max-width: 980px) {
  .service-area-layout {
    grid-template-columns: 1fr;
  }

  .google-map-box {
    position: relative;
    top: auto;
    height: 440px;
    min-height: 440px;
  }

  .google-map-box iframe {
    min-height: 440px;
  }

  .map-section#service-areas .map-info {
    padding: 56px 28px;
  }

  .selected-area-box {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .area-inline-panel .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .area-action-buttons {
    flex-direction: column;
  }

  .area-action-buttons .btn {
    width: 100%;
  }

  .map-card-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .map-section#service-areas .map-info {
    padding: 44px 22px;
  }
}


/* ---------- Newsletter ---------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 72px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.newsletter-text h2 { color: white; }
.newsletter-text p { color: rgba(255,255,255,0.8); margin-top: 8px; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  outline: none;
  min-width: 260px;
  color: var(--charcoal);
}
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text { color: white; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; max-width: 280px; line-height: 1.6; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--teal); }
.social-link svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); }
.social-link:hover svg { fill: white; }
.footer-col h5 { color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; font-family: var(--font-body); letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- Admin Login ---------- */
.admin-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1E293B 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.admin-login-logo { text-align: center; margin-bottom: 32px; }
.admin-login-logo .logo { justify-content: center; }
.admin-login-logo p { font-size: 0.875rem; color: var(--muted); margin-top: 8px; }
.admin-login-card h2 { text-align: center; margin-bottom: 28px; font-size: 1.4rem; }
.login-error { background: #FEE2E2; color: var(--error); padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.875rem; margin-bottom: 16px; display: none; }

/* ---------- Admin Dashboard ---------- */
.admin-layout { display: flex; min-height: 100vh; background: var(--off-white); }
.admin-sidebar {
  width: 260px;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
}
.admin-sidebar-logo { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-sidebar-logo .logo-text { color: white; font-size: 1.2rem; }
.admin-nav { padding: 20px 0; flex: 1; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
  background: none;
  width: 100%;
  text-align: left;
}
.admin-nav-item:hover, .admin-nav-item.active {
  color: white;
  background: rgba(13,148,136,0.15);
  border-left-color: var(--teal);
}
.admin-nav-item svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.admin-nav-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 12px 24px; }
.admin-main { margin-left: 260px; flex: 1; }
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.admin-topbar-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); }
.admin-topbar-right { display: flex; align-items: center; gap: 16px; }
.admin-user { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--slate); }
.admin-avatar { width: 36px; height: 36px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.875rem; }
.admin-content { padding: 32px; }
.admin-section { display: none; }
.admin-section.active { display: block; }

.dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.dash-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.dash-stat-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.dash-stat-icon svg { width: 24px; height: 24px; }
.dash-stat-icon.teal { background: var(--teal-light); }
.dash-stat-icon.teal svg { fill: var(--teal); }
.dash-stat-icon.gold { background: var(--gold-light); }
.dash-stat-icon.gold svg { fill: var(--gold); }
.dash-stat-icon.purple { background: #F3E8FF; }
.dash-stat-icon.purple svg { fill: #7C3AED; }
.dash-stat-icon.navy { background: #E0F2FE; }
.dash-stat-icon.navy svg { fill: #0369A1; }
.dash-stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.dash-stat-label { font-size: 0.78rem; color: var(--muted); }

.admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.admin-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-card-header h3 { font-size: 1rem; font-family: var(--font-body); color: var(--navy); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 12px 20px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); text-align: left; background: var(--off-white); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 14px 20px; font-size: 0.875rem; color: var(--slate); border-bottom: 1px solid var(--border); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }
.badge { padding: 4px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; }
.badge-success { background: #D1FAE5; color: var(--success); }
.badge-warning { background: var(--gold-light); color: var(--gold); }
.badge-info { background: #E0F2FE; color: #0369A1; }
.badge-danger { background: #FEE2E2; color: var(--error); }

.admin-form-panel { padding: 24px; }
.admin-logout-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}
.admin-logout-btn:hover { color: #FC5C65; background: rgba(252,92,101,0.1); }
.admin-logout-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Loading Spinner ---------- */
.loading-spinner {
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  color: var(--muted);
  font-size: 0.875rem;
  gap: 10px;
}
.spinner { width: 24px; height: 24px; border: 3px solid var(--teal-light); border-top-color: var(--teal); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  z-index: 9999;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero-float-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-actions .btn { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { justify-content: center; }
  .newsletter-form input { min-width: 100%; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; position: static; flex-direction: row; overflow-x: auto; }
  .admin-main { margin-left: 0; }
  .dashboard-stats { grid-template-columns: 1fr 1fr; }
  .trust-grid { gap: 12px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Real Image Enhancements
   ============================================================ */

/* Hero image background layer */
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,148,136,0.18) 0%, transparent 60%);
}

/* Service cards with real images */
.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img { transform: scale(1.03); }
.service-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

/* Gallery with real images */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover img { transform: scale(1.06); }

/* Blog card images */
.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: block;
}
.blog-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

/* About page team images */
.team-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--teal-light);
}

/* About page hero image */
.about-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

/* Process section background image */
.process-bg-img {
  position: relative;
  overflow: hidden;
}
.process-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1400&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
}
.process-bg-img .container { position: relative; z-index: 1; }

/* Testimonial avatar images */
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Stats section with background image */
.stats-section-img {
  position: relative;
  overflow: hidden;
}
.stats-section-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=50');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}
.stats-section-img .container { position: relative; }
