/* ============================================================
   LabPink Diagnostics — Main Stylesheet
   Author: LabPink Dev Team
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --pink:       #E75D97;
  --pink-soft:  #F8D7E8;
  --pink-accent:#E75D97;
  --pink-light: #fce4ec;
  --white:      #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-mid:   #e8e8e8;
  --text-dark:  #333333;
  --text-mid:   #666666;
  --text-light: #999999;
  --shadow-sm:  0 2px 12px rgba(231,84,128,.10);
  --shadow-md:  0 8px 32px rgba(231,84,128,.15);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.12);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
  --font-main:  'Nunito', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--pink-soft); color: var(--pink-accent); }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography Helpers ── */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-soft);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.02rem;
}
.text-pink { color: var(--pink); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(231,84,128,.35);
}
.btn-primary:hover {
  background: var(--pink-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(194,24,91,.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.7);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ============================================================
   HEADER / NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--text-dark); }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--pink);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1rem;
}
.logo-accent { color: var(--pink); }

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-weight: 600;
  font-size: .92rem;
  color: rgba(255,255,255,.9);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text-dark); }
.nav-link:hover, .nav-link.active {
  color: var(--pink);
  background: var(--pink-soft);
}

/* CTA Button */
.btn-book {
  background: var(--pink);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .88rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-book:hover {
  background: var(--pink-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── Dropdown ── */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: .7rem;
  transition: transform .3s ease;
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border: 1px solid rgba(194,24,91,.08);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 200;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--text-dark);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}

.dropdown-item i {
  color: var(--pink);
  font-size: .95rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.dropdown-item:hover {
  background: var(--pink-soft);
  color: var(--pink);
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--pink-soft);
    border-radius: 0;
    padding: 4px 0 4px 12px;
    margin-top: 4px;
    background: transparent;

    /* animate height instead of position on mobile */
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height .3s ease;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 300px;
    transform: none;
  }

  .dropdown-item {
    padding: 8px 12px;
    font-size: .88rem;
  }
}

/* Open on hover — desktop only */
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.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); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.hero-slider { height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #b0024b 0%,
    rgba(20,10,30,.55) 100%);
}

.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 0 8% 13%;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-subtitle {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
}
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 40px; left: 8%;
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: var(--transition);
}
.dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 8px;
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 28px; right: 8%;
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  display: grid;
  place-items: center;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================================
   FEATURES SECTION
============================================================ */
.features {
  padding: 100px 0 80px;
  background: var(--white);
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--pink-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-soft);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--pink-soft);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--pink);
  margin-bottom: 24px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  background: var(--pink);
  color: var(--white);
}
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.feature-card p {
  color: var(--text-mid);
  font-size: .93rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.feature-link {
  font-weight: 700;
  color: var(--pink);
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.feature-link:hover { gap: 10px; color: var(--pink-accent); }

/* ============================================================
   ABOUT / VIDEO+IMAGE SPLIT
============================================================ */
.about-split {
  padding: 100px 0;
  background: var(--gray-light);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding-bottom: 56.25%;
  height: 0;
  box-shadow: var(--shadow-lg);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.split-content .section-title { text-align: left; }
.split-content p {
  color: var(--text-mid);
  margin-bottom: 24px;
  font-size: .97rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  color: var(--text-dark);
}
.about-features li i { color: var(--pink); flex-shrink: 0; margin-top: 3px; }

/* Stats Row */
.stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-card {
  flex: 1;
  min-width: 110px;
  background: var(--white);
  border: 1.5px solid var(--pink-soft);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1.1;
}
.stat-label {
  font-size: .78rem;
  color: var(--text-mid);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  transition: var(--transition);
  text-align: left;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--pink-soft);
  transform: translateY(-6px);
}
.service-info {
  padding: 24px;
}
.service-info i {
  font-size: 1.3rem;
  color: var(--pink);
  margin-bottom: 10px;
}
.service-info h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.service-info p {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   GALLERY SECTION
============================================================ */
.gallery {
  padding: 100px 0;
  background: var(--gray-light);
  text-align: center;
  overflow: hidden;
}
.gallery .container { margin-bottom: 40px; }

.gallery-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 60px;
}
.gallery-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.gallery-item {
  flex: 0 0 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: var(--white);
  padding: 16px 20px 20px;
  font-weight: 700;
  font-size: .88rem;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.gallery-btn:hover { background: var(--pink-accent); transform: scale(1.07); }

/* ============================================================
   REVIEWS SECTION
============================================================ */
.reviews {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.reviews-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 0;
  overflow: visible;
  flex: 1;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

/* Desktop — 3 cards */
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  margin: 0 8px;
  box-sizing: border-box;
  background: var(--white);
  border: 1.5px solid var(--pink-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Tablet — 2 cards */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 16px);
    margin: 0 8px;
  }
}

/* Mobile — 1 card */
@media (max-width: 640px) {
  .review-card {
    flex: 0 0 calc(100% - 16px);
    margin: 0 8px;
    padding: 24px 20px;
  }

  .reviews-slider-wrap {
    gap: 8px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: .85rem;
  }
}

.reviews-slider-wrap .slider-btn {
  position: relative;
  top: auto;
  transform: none;
  flex-shrink: 0;
}

/* Card internals */
.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.review-top img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pink-soft);
  flex-shrink: 0;
  background: #eee;
}
.review-top h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 2px;
}
.review-top span {
  font-size: .82rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}
.stars { color: #f9a825; font-size: 1rem; letter-spacing: 2px; }
.review-card p {
  color: var(--text-mid);
  font-size: .93rem;
  line-height: 1.75;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  margin: 0;
}
.review-card p::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -4px;
  font-size: 2rem;
  color: var(--pink);
  line-height: 1;
  font-family: Georgia, serif;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.review-dots .dot { background: var(--pink-soft); }
.review-dots .dot.active { background: var(--pink); }
/* ============================================================
   PARTNERS MARQUEE
============================================================ */
.partners {
  padding: 60px 0;
  background: var(--pink-light);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 28px;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item { flex-shrink: 0; }
.logo-text-pill {
  display: inline-block;
  padding: 10px 24px;
  background: var(--white);
  border: 2px solid var(--pink-soft);
  border-radius: 40px;
  font-weight: 800;
  font-size: .85rem;
  color: var(--text-mid);
  letter-spacing: .04em;
  white-space: nowrap;
  transition: var(--transition);
  cursor: default;
}
.logo-text-pill:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: scale(1.04);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   CTA + FEATURES SECTION
============================================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 40%, #fce4ec 100%);
  position: relative;
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.cta-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.cta-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  font-size: .85rem;
}
.cta-badge-float i {
  font-size: 1.6rem;
  color: var(--pink);
}
.cta-badge-float strong {
  display: block;
  font-size: .95rem;
  color: var(--text-dark);
}
.cta-badge-float span { color: var(--text-light); font-size: .8rem; }

.cta-content .section-title { text-align: left; }
.cta-content p { color: var(--text-mid); margin-bottom: 28px; }

.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .93rem;
  color: var(--text-dark);
  font-weight: 600;
}
.cta-checklist li i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: .65rem;
  flex-shrink: 0;
}
.large-btn { padding: 16px 36px; font-size: 1rem; }

/* Decorative circles */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: var(--pink);
}
.c1 { width: 320px; height: 320px; top: -100px; right: -100px; }
.c2 { width: 200px; height: 200px; bottom: -60px; left: 5%; }
.c3 { width: 100px; height: 100px; top: 40%; left: 45%; }

/* ============================================================
   FAQ SECTION
============================================================ */
.faq {
  padding: 100px 0;
  background: var(--gray-light);
  text-align: center;
}
.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  font-weight: 700;
  font-size: .97rem;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--pink); }
.faq-item.open .faq-question { color: var(--pink); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: grid;
  place-items: center;
  font-size: .75rem;
  color: var(--pink);
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--pink);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer p {
  padding: 0 26px 22px;
  color: var(--text-mid);
  font-size: .93rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-top: 48px;
  text-align: left;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
}
.contact-card:hover { background: var(--pink-soft); }
.contact-card i {
  font-size: 1.2rem;
  color: var(--pink);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-card h5 {
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.contact-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Form */
.contact-form-wrap {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.appointment-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .92rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(231,84,128,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.radio-group { display: flex; gap: 24px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .93rem;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 600;
}
.radio-label input { accent-color: var(--pink); }

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
  color: #2e7d32;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-weight: 700;
  font-size: .93rem;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #7f0040;
  color: rgba(255,255,255,.6);
}
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-logo { color: var(--white); margin-bottom: 16px; }
.brand-col p {
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 24px;
  color: rgb(255, 255, 255);
}
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: rgb(255, 255, 255);
  font-size: .9rem;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgb(255, 255, 255);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--pink);
  font-size: 1rem;
}
.footer-col ul li a:hover { color: var(--pink); padding-left: 4px; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  border: 2px solid rgba(255,255,255,.08);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .82rem; color: rgb(255, 255, 255); }
.footer-bottom a { color: rgb(255, 255, 255); transition: var(--transition); }
.footer-bottom a:hover { color: var(--pink); }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: .95rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--pink-accent);
  transform: translateY(-3px);
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal-left, .reveal-right, .feature-card, .service-card, .review-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* Feature card stagger */
.feature-card[data-delay="150"] { transition-delay: .15s; }
.feature-card[data-delay="300"] { transition-delay: .30s; }

/* ============================================================
   RESPONSIVE — TABLET (≤900px)
============================================================ */
@media (max-width: 900px) {
  /* Nav */
  .nav-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    box-shadow: -8px 0 40px rgba(0,0,0,.12);
    transform: translateX(100%);
    transition: transform .4s ease;
    z-index: 998;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { color: var(--text-dark) !important; width: 100%; padding: 12px 16px; }
  .hamburger { display: flex; z-index: 999; }
  .btn-book { display: none; }

  /* Grids */
  .features-grid,
  .services-grid { grid-template-columns: 1fr 1fr; }
  .split-grid,
  .cta-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Hero */
  .hero-content { padding: 0 6% 15%; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤600px)
============================================================ */
@media (max-width: 600px) {
  .features-grid,
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .hero-title { font-size: 2rem; }
  .hero-content { padding: 0 5% 18%; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .gallery-track-wrap { padding: 0 16px; }
  .gallery-item { flex: 0 0 300px; }
  .gallery-item img { height: 220px; }
  .cta-badge-float { right: 8px; bottom: -12px; padding: 12px 16px; }
  .stats-row { flex-direction: row; }
  .slider-btn { width: 38px; height: 38px; font-size: .8rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .section-sub { font-size: .92rem; }
  .reviews-slider-wrap .slider-btn { position: absolute; }
  .reviews-slider-wrap { padding: 0 8px; }
}
