/* ===== NOVEL WELLNESS SPA - LUXURY STYLESHEET ===== */
:root {
  --teal: #2a9d8f;
  --teal-dark: #1f7a6e;
  --teal-light: #4dbfb0;
  --navy: #1a3a6b;
  --gold: #c9a84c;
  --gold-light: #e8c96b;
  --cream: #faf8f4;
  --cream-dark: #f0ebe0;
  --white: #ffffff;
  --dark: #1a1a1a;
  --grey: #6b7280;
  --light-grey: #f5f5f5;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

*, *::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(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.badge::before, .badge::after {
  content: '— ';
  color: var(--gold);
  opacity: 0.6;
}
.badge::after { content: ' —'; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title span { color: var(--teal); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42,157,143,0.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #b8933b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  letter-spacing: 0.5px;
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 56px;
  width: auto;
}
.logo-text { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.nav-phone:hover { color: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,107,0.82) 0%,
    rgba(26,58,107,0.5) 50%,
    rgba(42,157,143,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--white);
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.92;
  margin-bottom: 38px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(26,58,107,0.95);
  backdrop-filter: blur(10px);
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {
  padding: 22px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ===== MARQUEE / TICKER ===== */
.ticker {
  background: var(--teal);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.ticker-dot { width: 5px; height: 5px; background: var(--gold-light); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
}
.about-award {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-award-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.about-award-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feat-icon {
  width: 38px;
  height: 38px;
  background: rgba(42,157,143,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg { width: 18px; height: 18px; color: var(--teal); }
.feat-text { font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.5; }

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  display: block;
  padding-top: 115%;
}
.service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-img { transform: scale(1.08); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,107,0.92) 0%, rgba(26,58,107,0.3) 50%, transparent 100%);
  transition: var(--transition);
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(26,58,107,0.95) 0%, rgba(26,58,107,0.6) 60%, rgba(42,157,143,0.2) 100%);
}
.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 28px;
  color: var(--white);
}
.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { transform: translateY(0); opacity: 1; }
.service-icon-wrap svg { width: 22px; height: 22px; color: var(--gold-light); }
.service-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-desc {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  max-height: 0;
  overflow: hidden;
}
.service-card:hover .service-desc {
  opacity: 0.85;
  transform: translateY(0);
  max-height: 80px;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 10px;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(42,157,143,0.08);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
}
.why-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 2px;
}
.why-img-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 26px;
  text-align: center;
  font-family: var(--font-heading);
}
.why-img-badge-num {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.why-img-badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}
.why-content .section-title { color: var(--white); }
.why-content .section-subtitle { color: rgba(255,255,255,0.65); }
.why-points { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  transition: var(--transition);
}
.why-point:hover {
  background: rgba(42,157,143,0.1);
  border-color: rgba(42,157,143,0.2);
}
.why-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  min-width: 40px;
}
.why-point-title {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  font-size: 15px;
}
.why-point-desc { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  margin-top: 60px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:nth-child(1) .gallery-img { min-height: 420px; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,107,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(26,58,107,0.4); }
.gallery-plus {
  width: 50px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}
.gallery-item:hover .gallery-plus { opacity: 1; transform: scale(1); }

/* ===== OFFERS ===== */
.offers { background: var(--white); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.offer-img-wrap { position: relative; overflow: hidden; }
.offer-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offer-card:hover .offer-img { transform: scale(1.05); }
.offer-badge-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
}
.offer-body { padding: 28px 26px; background: var(--white); }
.offer-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.offer-desc { font-size: 13.5px; color: var(--grey); line-height: 1.6; margin-bottom: 20px; }
.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.offer-cta:hover { gap: 14px; color: var(--teal-dark); }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,107,0.9) 0%, rgba(42,157,143,0.75) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.cta-desc {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 30px;
}
.cta-phone-big svg { width: 28px; height: 28px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.review-card {
  background: var(--white);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(42,157,143,0.1);
  line-height: 1;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: var(--gold); font-size: 16px; }
.review-text {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}
.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.reviewer-meta { font-size: 12px; color: var(--grey); margin-top: 2px; }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
}
.faq-item {
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--teal); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.faq-question:hover { background: rgba(42,157,143,0.04); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); border-color: var(--teal); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
}

/* ===== LOCATION ===== */
.location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.location-info { display: flex; flex-direction: column; gap: 28px; }
.loc-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.loc-icon {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-icon svg { width: 22px; height: 22px; color: var(--white); }
.loc-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.loc-text { font-size: 15px; color: var(--navy); font-weight: 600; line-height: 1.5; }
.loc-text a { color: var(--teal); }
.loc-text a:hover { color: var(--teal-dark); }
.map-wrap { border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ===== FOOTER ===== */
.footer { background: #0f1f3d; color: rgba(255,255,255,0.7); }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding: 70px 0 50px;
}
.footer-brand {}
.footer-logo { height: 60px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-about { font-size: 13.5px; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); }
.social-btn svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
.social-btn:hover svg { color: var(--white); }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; transition: var(--transition); }
.footer-links a:hover { color: var(--teal-light); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
}
.footer-bottom a { color: var(--teal-light); }

/* ===== FLOATING BUTTONS ===== */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.float-whatsapp { background: #25d366; color: var(--white); }
.float-call { background: var(--teal); color: var(--white); }
.float-btn svg { width: 18px; height: 18px; }
.float-btn-label { white-space: nowrap; }

.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--teal); }
.scroll-top svg { width: 18px; height: 18px; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-accent { display: none; }
  .about-award { left: 10px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .topbar { display: none; }

  /* Nav */
  .nav-links { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--white); flex-direction: column; align-items: flex-start; padding: 100px 32px 40px; gap: 0; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: var(--transition); z-index: 999; }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--cream-dark); width: 100%; font-size: 15px; }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; z-index: 1001; }
  .nav-cta .btn { display: none; }

  /* Hero — let it size naturally; stats bar flows below content */
  .hero { min-height: auto; }
  .hero > .container { padding-top: 80px; padding-bottom: 40px; }
  .hero-content { padding: 0; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 16px 12px; }

  /* Services / offers / gallery */
  .services-grid, .offers-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) .gallery-img { min-height: 250px; }
  .gallery-img { min-height: 200px; }

  /* Reviews */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer — mobile: show brand + contact only, hide middle columns */
  .footer-main { grid-template-columns: 1fr; gap: 0; }
  .footer-col-services,
  .footer-col-links { display: none; }
  .footer-brand { padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
  .footer-about { max-width: 100%; font-size: 13px; }
  .footer-col-contact { padding-top: 0; }
  .footer-col-contact .footer-col-title { margin-bottom: 16px; }

  /* Floating buttons */
  .float-actions { bottom: 16px; right: 16px; }
  .float-btn-label { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 16px 12px; }
  .hero-stat-num { font-size: 1.5rem; }
}
