/* ===== VARIABLES ===== */
:root {
  --teal: #007A72;
  --teal-dark: #005C55;
  --teal-light: #E6F5F4;
  --teal-mid: #00A89C;
  --gold: #C9973A;
  --gold-light: #FBF4E8;
  --bg: #F8FAFA;
  --white: #FFFFFF;
  --text: #1A2630;
  --text-muted: #5A7070;
  --border: #D0E4E3;
  --shadow: 0 4px 28px rgba(0,122,114,0.10);
  --shadow-lg: 0 16px 56px rgba(0,122,114,0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --whatsapp: #25D366;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  border: 1px solid rgba(0,122,114,0.18);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.8vw, 44px);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--teal); font-style: italic; }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  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 10px 28px rgba(0,122,114,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}
.btn-wa {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-wa:hover {
  background: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.3);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #b5842e;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,151,58,0.3);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: var(--transition);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 46px; height: 46px;
  background: var(--teal);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; }
.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.2;
}
.logo-text span {
  font-size: 12px;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  padding: 8px 24px 24px;
  box-shadow: var(--shadow);
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mbl-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(150deg, #F0FAF9 0%, #E6F5F4 50%, #F8FAFA 100%);
}

.hero-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,168,156,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,151,58,0.07) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--teal-mid);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,168,156,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,168,156,0); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--teal); font-style: italic; }
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}
/* Hero image wrapper */
.hero-img-wrap {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  z-index: 1;
}
.hero-doctor-img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: #fff;
  padding: 0;
}
.hero-img-wrap .hero-card-info {
  margin: 0;
  border-radius: 0;
  padding: 16px 22px;
}
.hero-card-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--teal-light);
  border-radius: 14px;
  padding: 14px 18px;
}
.hero-card-info-icon {
  width: 42px; height: 42px;
  background: var(--teal);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hci-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
}
.hci-text span { font-size: 13px; color: var(--text-muted); }

.floating-chip {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 4s ease-in-out infinite;
}
.floating-chip.chip1 {
  top: -20px; left: -30px;
  color: var(--teal-dark);
  animation-delay: 0s;
}
.floating-chip.chip2 {
  bottom: 60px; right: -30px;
  color: var(--gold);
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
  .hero-visual { display: block; }
  .hero-doctor-img { height: 300px; }
  .floating-chip { display: none; }
}

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item svg { color: var(--teal); }

/* ===========================
   SERVICES
=========================== */
.services { background: var(--white); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 700px) { .services-header { grid-template-columns: 1fr; } }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Image thumbnail */
.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 190px;
  background: var(--teal-light);
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover .service-img {
  transform: scale(1.06);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,90,84,0.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-img-overlay {
  opacity: 1;
}
.service-img-overlay span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
}

/* Card text body */
.service-body {
  padding: 22px 24px 26px;
  flex: 1;
}
.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 9px;
  transition: var(--transition);
}
.service-card:hover .service-body h3 {
  color: var(--teal);
}
.service-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* teal left-border accent on hover */
.service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}
.service-card {
  position: relative;
}
.service-card:hover::after {
  transform: scaleY(1);
}

/* ===========================
   WHY US
=========================== */
.whyus { background: var(--teal); position: relative; overflow: hidden; }
.whyus::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -200px; right: -100px;
}
.whyus .section-title { color: var(--white); }
.whyus .section-title span { color: #7EDCD7; }
.whyus .section-sub { color: rgba(255,255,255,0.7); }
.whyus .tag { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }

.whyus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) { .whyus-inner { grid-template-columns: 1fr; gap: 48px; } }

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 480px) { .why-features { grid-template-columns: 1fr; } }

.why-feat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  backdrop-filter: blur(10px);
}
.why-feat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #7EDCD7;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.why-feat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.why-right {}
.why-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.15); }
.why-card-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-card-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.why-card-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ===========================
   ABOUT
=========================== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; gap: 48px; } }

.about-visual {
  position: relative;
}
.about-card-main {
  background: var(--white);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), #e8b055);
}
.about-avatar {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--white);
  font-weight: 700;
}
.about-card-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
}
.about-card-main .desig {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-card-main .rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.about-quote {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 4px;
}

.info-chips {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.info-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(0,122,114,0.06);
}
.ic-icon {
  width: 40px; height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ic-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.ic-text span { font-size: 13px; color: var(--text-muted); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--teal);
  transform: translateY(-3px);
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.testi-name strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.testi-name span { font-size: 12px; color: var(--text-muted); }

/* ===========================
   APPOINTMENT
=========================== */
.appointment { background: var(--bg); }
.appt-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .appt-inner { grid-template-columns: 1fr; gap: 48px; } }

.appt-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
@media (max-width: 480px) { .appt-form-card { padding: 28px 20px; } }

.appt-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,122,114,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.appt-contact-cards { display: flex; flex-direction: column; gap: 20px; }
.appt-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
}
.appt-contact-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.acc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.acc-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.acc-text span { font-size: 14px; color: var(--text-muted); }
.acc-text a { color: var(--teal); font-weight: 600; }

.hours-card {
  background: var(--teal);
  border-radius: var(--radius-sm);
  padding: 28px;
  margin-top: 20px;
}
.hours-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 18px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.7); }
.hours-row .time { color: var(--white); font-weight: 600; }
.hours-row .closed { color: #FF9E9E; }

/* ===========================
   MAP
=========================== */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: #0D1E1D;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand .logo-text strong { color: var(--white); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 14px;
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-mid); }
.footer-col ul li span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   MOBILE BOTTOM BAR
=========================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px 14px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
@media (max-width: 768px) { .mobile-bottom-bar { display: flex; } }
.mbb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}
.mbb-call { background: var(--teal); color: var(--white); }
.mbb-wa { background: var(--whatsapp); color: var(--white); }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 90px; right: 20px;
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 997;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-2px); }

@media (min-width: 769px) { .scroll-top { bottom: 30px; } }
/* ===========================
   GALLERY SECTION
=========================== */
.gallery-section {
  padding: 80px 0;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item { border-radius: 12px; }
}
