/* =============================================
   AJ Cleaning Dubai — Landing Page Styles
   Brand: #F6B700 (Gold) | #1A2540 (Navy) | #FFFFFF (White)
============================================= */

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

/* ─── CSS Variables ─── */
:root {
  --gold: #F6B700;
  --gold-dark: #d49e00;
  --gold-light: #FFD24D;
  --navy: #1A2540;
  --navy-dark: #0f1628;
  --navy-mid: #243156;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --text-body: #374151;
  --text-light: #6B7280;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(26,37,64,0.12);
  --shadow-lg: 0 12px 48px rgba(26,37,64,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 80px 0; }

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(246,183,0,0.12);
  color: var(--gold-dark);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── Lightning Button ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: -120%;
  width: 60px; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
  transform: translateY(-50%) skewX(-20deg);
  transition: none;
}

.btn:hover::before {
  animation: lightning-sweep 0.5s ease forwards;
}

@keyframes lightning-sweep {
  0%   { left: -120%; }
  100% { left: 160%;  }
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(246,183,0,0.4);
}
.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(246,183,0,0.6);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,37,64,0.3);
}
.btn-navy:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 32px rgba(26,37,64,0.45);
  transform: translateY(-2px);
}

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

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
  transform: translateY(-2px);
}

/* Pulse for urgency */
.btn-pulse {
  animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 4px 20px rgba(246,183,0,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(246,183,0,0.75), 0 0 0 10px rgba(246,183,0,0.08); }
}

/* ─── Sticky Top Bar ─── */
#top-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 100;
}
#top-bar span { color: var(--gold); }
#top-bar a {
  color: var(--gold);
  font-weight: 700;
  margin-left: 12px;
  text-decoration: underline;
}

/* ─── Navbar ─── */
#navbar {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 999;
  box-shadow: 0 2px 20px rgba(26,37,64,0.08);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(26,37,64,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-mark {
  width: 200px; height: px;
  /*background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  box-shadow: 0 3px 12px rgba(246,183,0,0.4);*/
  flex-shrink: 0;
}
.nav-logo .logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.15;
}
.nav-logo .logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  background: var(--white);
  padding: 20px;
  border-top: 1px solid rgba(26,37,64,0.08);
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(26,37,64,0.06);
}
.mobile-menu .mobile-btns {
  display: flex; gap: 10px; flex-wrap: wrap; padding-top: 8px;
}

/* ─── Hero Section ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,37,64,0.97) 40%, rgba(26,37,64,0.75));
}
.hero-geo {
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  border: 60px solid rgba(246,183,0,0.06);
  border-radius: 50%;
}
.hero-geo2 {
  position: absolute;
  right: 60px; top: 80px;
  width: 280px; height: 280px;
  border: 30px solid rgba(246,183,0,0.1);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 100px 20px 80px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246,183,0,0.15);
  border: 1px solid rgba(246,183,0,0.3);
  color: var(--gold);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.15s ease both;
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s 0.45s ease both;
}
.hero-btns .btn { font-size: 1rem; padding: 16px 32px; }
.urgency-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246,183,0,0.12);
  border: 1px solid rgba(246,183,0,0.25);
  color: var(--gold-light);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  animation: fadeIn 0.7s 0.6s ease both;
}
.urgency-strip svg { flex-shrink: 0; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeIn 0.8s 0.7s ease both;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.hero-stat .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Hero scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
  color: rgba(255,255,255,0.4);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ─── Trust Bar ─── */
#trust-bar {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid rgba(26,37,64,0.06);
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.trust-item .icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── Services ─── */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid rgba(26,37,64,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img { transform: scale(1.04); }
.service-body {
  padding: 22px 24px 26px;
}
.service-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(246,183,0,0.15), rgba(246,183,0,0.08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.service-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.6;
}
.service-tag {
  display: inline-block;
  background: rgba(246,183,0,0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  transition: gap 0.2s, color 0.2s;
}
.service-link:hover { gap: 10px; color: var(--gold-dark); }

/* ─── Why Us ─── */
#why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(246,183,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-content .section-tag { background: rgba(246,183,0,0.15); }
.why-us-content h2 { color: var(--white); }
.why-us-content p { color: rgba(255,255,255,0.65); max-width: none; text-align: left; }
.why-us-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-point:hover {
  background: rgba(246,183,0,0.07);
  border-color: rgba(246,183,0,0.2);
}
.why-point-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-point-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-point-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}
.why-us-image {
  position: relative;
}
.why-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.why-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.why-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-badge-icon {
  font-size: 2rem;
}
.why-badge-text {
  font-family: 'Sora', sans-serif;
}
.why-badge-text .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-dark);
  display: block;
  line-height: 1;
}
.why-badge-text .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ─── How to Book ─── */
#how-to-book { background: var(--off-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(246,183,0,0.4);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(246,183,0,0.3);
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── Reviews ─── */
#reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--off-white);
  border: 1.5px solid rgba(26,37,64,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.review-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Sora', sans-serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.review-text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
  overflow: hidden;
}
.review-author-info .name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.review-author-info .location {
  font-size: 0.78rem;
  color: var(--text-light);
}
.review-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(26,37,64,0.07);
}
.reviews-summary {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.rev-stat .num {
  font-family: 'Sora', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.rev-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* ─── Gallery / Before After ─── */
#gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,37,64,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 16px;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item.featured {
  grid-column: span 2;
}

/* ─── CTA Section ─── */
#cta-mid {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&q=80') center/cover;
  opacity: 0.06;
}
#cta-mid .container { position: relative; z-index: 1; }
#cta-mid h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
#cta-mid h2 span { color: var(--gold); }
#cta-mid p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btns .btn { font-size: 1rem; padding: 16px 32px; }
.slots-info {
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
}
.slots-info strong { color: var(--gold); }

/* ─── Areas ─── */
#areas { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.area-chip {
  background: rgba(246,183,0,0.07);
  border: 1.5px solid rgba(246,183,0,0.2);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: var(--transition);
}
.area-chip:hover {
  background: linear-gradient(135deg, rgba(246,183,0,0.15), rgba(246,183,0,0.08));
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ─── Eco Commitment ─── */
#eco {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#eco::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(246,183,0,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eco-content h2 { color: var(--white); }
.eco-content p { color: rgba(255,255,255,0.65); }
.eco-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.eco-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.9rem;
}
.eco-point::before {
  content: '✓';
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.eco-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.eco-img-wrap img {
  width: 100%; height: 400px;
  object-fit: cover;
}

/* ─── Pricing / Packages ─── */
#pricing { background: var(--off-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--white);
  border: 1.5px solid rgba(26,37,64,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(26,37,64,0.25);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-icon { font-size: 2.4rem; margin-bottom: 14px; }
.price-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.price-card.featured .price-name { color: var(--white); }
.price-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.price-card.featured .price-sub { color: rgba(255,255,255,0.55); }
.price-amount {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1;
}
.price-card.featured .price-amount { color: var(--gold); }
.price-amount span { font-size: 0.9rem; font-weight: 600; color: var(--text-light); }
.price-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.price-card.featured .price-feature { color: rgba(255,255,255,0.8); }
.price-feature::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(246,183,0,0.15);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.price-card.featured .price-feature::before {
  background: rgba(246,183,0,0.2);
  color: var(--gold);
}

/* ─── FAQs ─── */
#faqs { background: var(--white); }
.faqs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  border: 1.5px solid rgba(26,37,64,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--gold);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(246,183,0,0.04); }
.faq-item.open .faq-q { color: var(--gold-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(246,183,0,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform 0.3s, background 0.2s;
  color: var(--gold-dark);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 22px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ─── Final CTA ─── */
#final-cta {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}
#final-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  background: rgba(26,37,64,0.06);
  border-radius: 50%;
}
#final-cta .container { position: relative; z-index: 1; }
#final-cta h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
#final-cta p {
  color: rgba(26,37,64,0.7);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

/* ─── Footer ─── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-mark {
  width: 200px; height: px;
  /*background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 13px;*/
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-contact-links a:hover { color: var(--gold); }
.footer-col h4 {
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── Floating Sticky Buttons ─── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9000;
}
.sticky-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.sticky-btn::before {
  content: '';
  position: absolute;
  top: 50%; left: -100%;
  width: 40px; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.5) 50%, transparent 80%);
  transform: translateY(-50%) skewX(-20deg);
  transition: none;
}
.sticky-btn:hover::before {
  animation: lightning-sweep 0.45s ease forwards;
}
.sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.sticky-call {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.sticky-wa {
  background: linear-gradient(135deg, #25d366, #128C7E);
  animation: pulse-green 2.5s ease-in-out infinite;
  animation-delay: 0.5s;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}
.sticky-label {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.sticky-btn:hover .sticky-label { opacity: 1; }

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .why-us-grid,
  .eco-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-badge { left: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.featured { grid-column: span 1; }
  .faqs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .reviews-summary { gap: 28px; }
  .hero-stats { gap: 24px; }
  .why-badge { position: static; margin-top: 16px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .trust-items { gap: 16px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 48px 0; }
}
