:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gray: #6b6b6b;
  --light-gray: #e8e8e8;
  --section-pad: 100px 80px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s ease;
}
nav.scrolled {
  padding: 14px 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  background: var(--off-white);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 12px;
  border-radius: 16px;
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.lang-btn.active {
  background: var(--black);
  color: var(--white);
}

.btn-book {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 11px 24px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-book:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.35);
}
.btn-book .wp-icon { font-size: 15px; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: white;
  padding: 24px 32px;
  border-bottom: 1px solid var(--light-gray);
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  animation: slideDown 0.2s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.mobile-menu .btn-primary {
  color: var(--white) !important;
}
.mobile-menu .btn-primary:hover {
  color: var(--black) !important;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
#home::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
#home::after {
  content: 'DENTAL';
  position: absolute;
  bottom: 20px; right: 60px;
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(0,0,0,0.04);
  pointer-events: none;
  letter-spacing: -5px;
  user-select: none;
}

.hero-content { animation: fadeUp 0.9s ease both; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: #7a5a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag::before { content: '✦'; font-size: 10px; }

h1.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}
h1.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 16px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,168,76,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 15px 28px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 36px;
}
.stat-item {}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* Hero image */
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.9s 0.2s ease both;
  position: relative;
}
.hero-hexagon {
  width: min(420px, 45vw);
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  overflow: hidden;
  position: relative;
}
.hero-hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Fallback gradient when no image */
.hero-hexagon-bg {
  width: min(420px, 45vw);
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-hex-inner {
  text-align: center;
  color: white;
}
.hero-hex-inner .big-tooth {
  width: 120px; /* 50% larger than original 80px */
  height: 120px;
  display: block;
  margin: 0 auto 12px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
/* allow logo images inside logo-icon */
.logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 6px; }
/* make the navbar logo 20% smaller than original 36px */
nav#mainNav .nav-logo .logo-icon img { width: 28.8px; height: 28.8px; }
.hero-hex-inner p { font-size: 14px; opacity: 0.7; letter-spacing: 2px; font-weight: 300; }

.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  text-align: center;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}
.badge-text { font-size: 11px; color: var(--gray); margin-top: 2px; font-weight: 400; }

/* ─── CONTACT BAR ─── */
.contact-bar {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 18px 80px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item:hover { color: var(--gold); }
.contact-item .ci-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ─── SERVICES ─── */
#services {
  padding: var(--section-pad);
  background: var(--white);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before { content: '——'; letter-spacing: -2px; }

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  max-width: 520px;
  margin-bottom: 16px;
}
h2.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 56px;
}

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

.service-card {
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 32px 28px;
  background: var(--white);
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--gold-light); }

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── ABOUT ─── */
#about {
  padding: var(--section-pad);
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap { position: relative; }
.about-img-box {
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.about-img-placeholder {
  text-align: center;
}
.about-img-placeholder .big-icon { font-size: 80px; display: block; margin-bottom: 16px; }
.about-img-placeholder p { color: rgba(255,255,255,0.3); font-size: 14px; letter-spacing: 2px; }

.about-floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  border-radius: 14px;
  padding: 20px 24px;
}
.afc-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.afc-text { font-size: 12px; color: rgba(0,0,0,0.65); margin-top: 4px; font-weight: 500; }

.about-content .section-label { color: var(--gold-light); }
h2.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
h2.about-title em { font-style: italic; color: var(--gold); }

.about-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.af-check {
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--black);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.af-text strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2px;
}
.af-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.team-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.team-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 10px;
}
.team-name { font-size: 13px; color: var(--white); font-weight: 500; }
.team-role { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* ─── TESTIMONIALS ─── */
#testimonies {
  padding: var(--section-pad);
  background: var(--off-white);
}
.testi-header { text-align: center; margin-bottom: 56px; }
.testi-header .section-desc { margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testi-quote {
  font-size: 40px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.testi-info .name { font-size: 14px; font-weight: 600; color: var(--black); }
.testi-info .role { font-size: 12px; color: var(--gray); margin-top: 1px; }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; }

/* ─── CONTACT ─── */
#contact {
  padding: var(--section-pad);
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label { color: var(--gold); }
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }

.contact-info .desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}
.cd-item:hover { transform: translateX(4px); }
.cd-icon {
  width: 48px; height: 48px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cd-item:hover .cd-icon { background: var(--gold-light); }
.cd-label { font-size: 11px; color: var(--gray); font-weight: 500; letter-spacing: 0.5px; margin-bottom: 2px; }
.cd-value { font-size: 14.5px; color: var(--black); font-weight: 500; }

.hours-grid {
  background: var(--off-white);
  border-radius: 14px;
  padding: 24px;
}
.hours-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 13.5px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--gray); font-weight: 400; }
.hours-time { color: var(--black); font-weight: 500; }
.hours-closed { color: #c0392b; font-weight: 500; }

/* Contact form */
.contact-form-wrap {}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-form-wrap .form-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
  font-weight: 300;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-form {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  text-decoration: none;
}
.btn-form:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201,168,76,0.3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 56px 80px 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: var(--white); font-size: 20px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 14px;
  font-weight: 300;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--gold); }

/* ─── FLOATING WA ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.25s;
  animation: pulse 2s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.65); }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px 48px; }
  nav { padding: 18px 32px; }
  nav.scrolled { padding: 12px 32px; }
  #home { padding: 120px 48px 72px; gap: 40px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  #about, #contact { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-bar { gap: 24px; padding: 18px 32px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px 24px; }
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-right { display: none; }
  .nav-right { display: flex; }
  .nav-right .btn-book { display: none; }
  .hamburger { display: flex; }
  #home { grid-template-columns: 1fr; padding: 100px 24px 56px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-hexagon, .hero-hexagon-bg { width: min(280px, 80vw); }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  #home::after { display: none; }
  .contact-bar { flex-direction: column; gap: 12px; }
}
