/* ============================================================
   GLAMOUR GOSSIP — Main Stylesheet
   Dark mode (default) + Light mode via [data-theme="light"]
   Fonts: Space Grotesk (headings) | Plus Jakarta Sans (body)
   ============================================================ */

/* ---- CSS Variables: Dark Mode (default) ---- */
:root {
  --bg-primary:      #0e0c06;
  --bg-secondary:    #18140a;
  --bg-card:         #221d0f;
  --green-primary:   #f59e0b;
  --green-light:     #fde047;
  --green-dark:      #b45309;
  --green-neon:      #fbbf24;
  --green-gradient:  linear-gradient(135deg, #fde047 0%, #f59e0b 50%, #b45309 100%);
  --text-primary:    #ffffff;
  --text-secondary:  #d1d5db;
  --text-muted:      #9ca3af;
  --border-color:    rgba(245, 158, 11, 0.35);
  --shadow-green:    0 10px 30px -10px rgba(245, 158, 11, 0.4);
  --card-shadow:     0 4px 24px rgba(0,0,0,0.5);
  --navbar-bg:       rgba(14, 12, 6, 0.94);
  --footer-bg:       #080703;
  --font-heading:    'Space Grotesk', sans-serif;
  --font-body:       'Plus Jakarta Sans', sans-serif;
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}





/* ---- CSS Variables: Light Mode (Green default) ---- */
[data-theme="light"] {
  --bg-primary:      #fdfbf7;
  --bg-secondary:    #f7f2e7;
  --bg-card:         #ffffff;
  --text-primary:    #261904;
  --text-secondary:  #573e16;
  --text-muted:      #7c5c28;
  --green-primary:   #d97706;
  --green-light:     #f59e0b;
  --green-dark:      #b45309;
  --green-neon:      #eab308;
  --green-gradient:  linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #92400e 100%);
  --border-color:    rgba(217, 119, 6, 0.35);
  --shadow-green:    0 10px 30px -10px rgba(217, 119, 6, 0.25);
  --card-shadow:     0 4px 24px rgba(0,0,0,0.08);
  --navbar-bg:       rgba(253, 251, 247, 0.96);
  --footer-bg:       #1f1708;
}





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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }

/* ---- Typography Utilities ---- */
.green-text {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 3rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---- Subtle dot-grid background ---- */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(16, 185, 129, 0.14) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem 5%;
  background: var(--navbar-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  flex-shrink: 0;
}

/* Nav links — push to centre */
.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green-light); }

/* Header action cluster (right side) */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* WhatsApp icon button in header */
.nav-wa-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-green);
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.nav-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-green);
}
.nav-wa-btn svg { width: 22px; height: 22px; fill: #fff; }

/* Book / Call button */
.nav-btn {
  background: var(--green-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.55);
}
.nav-btn .mobile-text { display: none; }
.nav-btn .desktop-text { display: inline; }

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
}
.theme-toggle svg { width: 18px; height: 18px; fill: var(--text-primary); transition: fill 0.2s; }
.theme-toggle:hover svg { fill: #060907; }

/* Color Theme Picker (Green, Blue, Gold) */
.color-theme-picker {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  padding: 4px 8px;
  border-radius: 30px;
  height: 36px;
  box-sizing: border-box;
}
.color-dot-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), border-color 0.2s ease, box-shadow 0.2s ease;
}
.color-dot-btn:hover {
  transform: scale(1.25);
}
.color-dot-btn.active {
  border-color: #ffffff;
  transform: scale(1.2);
  box-shadow: 0 0 8px currentColor;
}
[data-theme="light"] .color-dot-btn.active {
  border-color: #111827;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 7rem 5% 4rem;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.42;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,9,7,0.55) 0%, rgba(6,9,7,0.96) 100%),
              radial-gradient(circle at 75% 25%, rgba(16,185,129,0.22) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1.1rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1.5px solid var(--green-primary);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.hero-description {
  font-size: 1.15rem;
  font-weight: 400;
  color: #e5e7eb;
  margin-bottom: 2.2rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--green-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 9px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-green);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(16,185,129,0.55);
}

.btn-secondary {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 9px;
  transition: var(--transition-fast);
}
.btn-secondary:hover {
  background: rgba(16,185,129,0.18);
  border-color: var(--green-primary);
  color: var(--green-light);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
  padding: 6rem 5%;
  position: relative;
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--card-shadow);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--green-neon);
  box-shadow: 0 18px 38px rgba(0,0,0,0.55), 0 0 22px rgba(16,185,129,0.28);
}

.service-img-wrapper {
  width: 100%; height: 230px; overflow: hidden;
}
.service-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover .service-img-wrapper img { transform: scale(1.07); }

.service-card-body {
  padding: 1.5rem 1.6rem;
  flex-grow: 1;
  display: flex; flex-direction: column;
}
.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  line-height: 1.6;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto;
}
.tag {
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(16,185,129,0.14);
  color: var(--green-light);
  border: 1px solid rgba(16,185,129,0.28);
}

.service-link-row {
  padding: 1rem 1.6rem 1.4rem;
  display: flex; justify-content: flex-end;
}
.service-link {
  font-family: var(--font-heading);
  font-size: 0.88rem; font-weight: 700;
  color: var(--green-primary);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color var(--transition-fast), gap var(--transition-fast);
}
.service-link:hover { color: var(--green-neon); gap: 8px; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  padding: 6rem 5%;
  background: var(--bg-secondary);
}

.pricing-tabs {
  display: flex; justify-content: center;
  gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.tab-btn {
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--green-gradient);
  color: #ffffff; border-color: transparent; font-weight: 700;
}

.pricing-container {
  max-width: 880px; margin: 0 auto;
  background: var(--bg-card);
  border-radius: 22px;
  border: 1.5px solid var(--border-color);
  padding: 2.5rem 3rem;
  box-shadow: var(--card-shadow);
}

.pricing-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--border-color);
}
.pricing-item:last-child { border-bottom: none; }

.item-name {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary);
}
.item-desc {
  font-size: 0.88rem; color: var(--text-muted);
  margin-top: 2px; line-height: 1.4;
}
.item-price {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 700;
  color: var(--green-neon);
  flex-shrink: 0; margin-left: 1.5rem;
}

/* ============================================================
   EEAT / TRUST SECTION
   ============================================================ */
.eeat-section {
  padding: 6rem 5%;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem; max-width: 1200px; margin: 0 auto;
}

.feature-box {
  background: var(--bg-card);
  padding: 2rem 1.6rem;
  border-radius: 18px;
  border: 1.5px solid var(--border-color);
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  box-shadow: var(--card-shadow);
}
.feature-box:hover { transform: translateY(-5px); border-color: var(--green-primary); }

.feature-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(16,185,129,0.14);
  border: 1.5px solid var(--green-primary);
}
.feature-icon svg { width: 30px; height: 30px; fill: var(--green-neon); }

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.5rem;
}
.feature-box p { color: var(--text-secondary); font-size: 0.93rem; }

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.locations-section {
  padding: 6rem 5%;
  background: var(--bg-secondary);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}

.location-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1.5px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.location-card:hover { border-color: var(--green-primary); transform: translateY(-4px); }

.location-title {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 700;
  color: var(--green-light); margin-bottom: 1.1rem;
}
.location-info {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 0.9rem;
  color: var(--text-secondary);
  font-size: 0.95rem; line-height: 1.5;
}
.location-info svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  border-top: 1.5px solid var(--border-color);
  padding: 4rem 5% 2rem;
}

.footer-container {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 0.93rem; line-height: 1.65;
}

.footer-links-title {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  color: var(--green-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.93rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-links a:hover { color: var(--green-neon); padding-left: 4px; }

.social-links { display: flex; gap: 12px; margin-top: 1.1rem; flex-wrap: wrap; }

.social-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.social-icon:hover {
  background: var(--green-gradient);
  border-color: transparent;
  transform: translateY(-3px);
}
.social-icon svg { width: 19px; height: 19px; fill: #fff; }
.social-icon:hover svg { fill: #060907; }

/* Showroom Navigate Buttons in Footer */
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.8rem;
}

.footer-nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1.5px solid var(--border-color);
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-fast);
  text-decoration: none;
}
.footer-nav-btn:hover {
  background: rgba(16, 185, 129, 0.22);
  border-color: var(--green-light);
  color: var(--green-light);
  transform: translateX(4px);
}
.footer-nav-btn .nav-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-light);
}
.footer-nav-btn .nav-arrow {
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition-fast);
}
.footer-nav-btn:hover .nav-arrow {
  transform: translateX(3px);
  color: var(--green-neon);
}

/* Card Navigate Button in Visit Our Salons */
.location-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  margin-top: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
  transition: var(--transition-fast);
}
.location-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45);
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-credit {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.footer-credit a {
  color: var(--green-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.footer-credit a:hover {
  color: var(--green-neon);
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition-fast);
  animation: pulseWA 2.2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: var(--shadow-green);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes pulseWA {
  0% { box-shadow: 0 0 0 0 var(--green-primary); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* Floating Instagram (above WhatsApp) */
.instagram-float {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 54px; height: 54px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.45);
  z-index: 999;
  transition: var(--transition-fast);
}
.instagram-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 26px rgba(214, 36, 159, 0.7);
}
.instagram-float svg { width: 26px; height: 26px; fill: #fff; }

/* Floating Facebook (above Instagram) */
.facebook-float {
  position: fixed;
  bottom: 160px; right: 28px;
  width: 54px; height: 54px;
  background: #1877f2;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45);
  z-index: 999;
  transition: var(--transition-fast);
}
.facebook-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 26px rgba(24, 119, 242, 0.7);
}
.facebook-float svg { width: 26px; height: 26px; fill: #fff; }

/* Inquire on WhatsApp Price Button */
.inquire-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.inquire-price-btn:hover {
  background: var(--green-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.inquire-price-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   SERVICE DETAIL PAGE (services/*.html)
   ============================================================ */
.service-hero {
  position: relative;
  height: 65vh; min-height: 420px;
  display: flex; align-items: flex-end;
  padding: 0 5% 3.5rem;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}
.service-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45);
}
.service-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--green-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-muted); }

.service-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 700;
  color: #fff; line-height: 1.15;
}

.about-section {
  padding: 5rem 5%;
  background: var(--bg-primary);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.about-img { border-radius: 18px; overflow: hidden; }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 1rem;
}
.about-text p { color: var(--text-secondary); font-size: 1rem; line-height: 1.75; margin-bottom: 1.2rem; }
.benefit-list { list-style: none; }
.benefit-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-secondary); font-size: 0.97rem;
  margin-bottom: 0.7rem; line-height: 1.5;
}
.benefit-list li::before {
  content: '✦';
  color: var(--green-primary);
  flex-shrink: 0; margin-top: 2px;
}

.service-gallery {
  padding: 4rem 5%;
  background: var(--bg-secondary);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; max-width: 1100px; margin: 0 auto;
}
.gallery-grid img {
  width: 100%; height: 260px;
  object-fit: cover; border-radius: 14px;
  transition: transform 0.4s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

.service-pricing {
  padding: 5rem 5%;
  background: var(--bg-primary);
}

.service-cta {
  padding: 5rem 5%;
  background: var(--green-gradient);
  text-align: center;
}
.service-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 700;
  color: #ffffff; margin-bottom: 0.6rem;
}
.service-cta p { color: #0a2e1c; font-size: 1.05rem; margin-bottom: 1.8rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  background: #060907; color: var(--green-light);
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 2rem; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition-fast);
}
.btn-dark:hover {
  background: #0d1410;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.related-section {
  padding: 5rem 5%;
  background: var(--bg-secondary);
}
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem; max-width: 1100px; margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.4rem; }
  .service-hero h1 { font-size: 2.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }

  /* Mobile Navbar: Streamlined & Balanced */
  .navbar {
    padding: 0.5rem 3%;
    gap: 0.5rem;
    justify-content: space-between;
  }
  .nav-links { display: none; }

  .navbar-brand {
    gap: 7px;
  }
  .navbar-brand img {
    width: 30px !important;
    height: 30px !important;
  }
  .navbar-brand span {
    font-size: 0.96rem;
    letter-spacing: -0.2px;
  }

  .navbar-actions {
    gap: 5px;
    margin-left: auto;
  }

  .nav-wa-btn {
    width: 30px;
    height: 30px;
  }
  .nav-wa-btn svg {
    width: 16px;
    height: 16px;
  }

  .color-theme-picker {
    height: 28px;
    padding: 2px 5px;
    gap: 4px;
    border-radius: 20px;
    border-width: 1px;
  }
  .color-dot-btn {
    width: 11px;
    height: 11px;
  }

  .theme-toggle {
    width: 28px;
    height: 28px;
    border-width: 1px;
  }
  .theme-toggle svg {
    width: 14px;
    height: 14px;
  }

  .nav-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.76rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
  }
  .nav-btn .desktop-text { display: none; }
  .nav-btn .mobile-text  { display: inline; font-weight: 700; }

  .pricing-container { padding: 1.5rem 1.2rem; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-map-col { display: block; width: 100%; }

  /* Mobile Floating Action Buttons */
  .whatsapp-float {
    bottom: 20px; right: 16px;
    width: 46px; height: 46px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }

  .instagram-float {
    bottom: 74px; right: 16px;
    width: 44px; height: 44px;
  }
  .instagram-float svg { width: 22px; height: 22px; }

  .facebook-float {
    bottom: 126px; right: 16px;
    width: 44px; height: 44px;
  }
  .facebook-float svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-tabs { gap: 0.5rem; }
  .tab-btn { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

  /* Ultra-compact top bar for 320px - 480px phones */
  .navbar {
    padding: 0.45rem 2.5%;
    gap: 4px;
  }
  .navbar-brand {
    gap: 5px;
  }
  .navbar-brand img {
    width: 26px !important;
    height: 26px !important;
  }
  .navbar-brand span {
    font-size: 0.88rem;
    letter-spacing: -0.2px;
  }
  .navbar-actions {
    gap: 4px;
  }
  .nav-wa-btn {
    width: 28px;
    height: 28px;
  }
  .nav-wa-btn svg {
    width: 15px;
    height: 15px;
  }
  .color-theme-picker {
    height: 26px;
    padding: 2px 4px;
    gap: 3px;
  }
  .color-dot-btn {
    width: 10px;
    height: 10px;
  }
  .theme-toggle {
    width: 26px;
    height: 26px;
  }
  .theme-toggle svg {
    width: 13px;
    height: 13px;
  }
  .nav-btn {
    padding: 0.32rem 0.55rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 360px) {
  .navbar-brand span {
    font-size: 0.82rem;
  }
  .navbar-brand img {
    width: 24px !important;
    height: 24px !important;
  }
  .nav-btn {
    padding: 0.3rem 0.48rem;
    font-size: 0.7rem;
  }
}
