/* ─── Local Font Loading ─── */
@font-face {
  font-family: 'Cinzel';
  src: url('Design%20Themes/Fonts/Cinzel-Regular_1%20(1).otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Cinzel';
  src: url('Design%20Themes/Fonts/Cinzel-Bold_1.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Great Vibes';
  src: url('Design%20Themes/Fonts/GreatVibes-Regular_2%20(1).ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

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

/* ─── CSS Variables (Official Brand Guidelines) ─── */
:root {
  /* ── Metallic Rose Gold Palette ── */
  --rose-light:  #E1AE93; /* Highlight */
  --rose-mid:    #b5846e; 
  --rose-dark:   #8C5940; /* Shadow */
  --rose-gold:   linear-gradient(135deg, #E1AE93 0%, #b5846e 50%, #8C5940 100%);
  
  /* ── Deep Charcoal Neutrals (Logo Background) ── */
  --bg-dark:     #222424; 
  --bg-main:     #2d3030;
  --bg-card:     #363939; /* Exact logo background shade */
  --bg-light:    #414545;

  /* ── Accent / Surfaces ── */
  --champagne:   #f2e1d7;
  --white:       #ffffff;
  --text-main:   #ffffff;
  --text-muted:  rgba(255, 255, 255, 0.8);

  /* ── Shadows & Effects ── */
  --shadow-rose: 0 10px 30px rgba(140, 89, 64, 0.25);
  --glass:       rgba(255, 255, 255, 0.03);
  --glass-border: rgba(225, 174, 147, 0.15);

  --radius:      16px;
  --radius-sm:   8px;
  --transition:  all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--champagne);
}

.logo-accent {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5em;
  color: var(--rose-light);
  line-height: 0.8;
  display: inline-block;
  vertical-align: middle;
}

.accent-font {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--rose-light);
  font-size: 1.8rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 0.5rem;
  background: var(--rose-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ─── Divider ─── */
.gold-divider {
  width: 100px;
  height: 2px;
  background: var(--rose-gold);
  margin: 1rem auto 2.5rem;
  position: relative;
}
.gold-divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-main);
  padding: 0 10px;
  color: var(--rose-light);
  font-size: 0.8rem;
}

/* ─── Containers ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  border-radius: 0; /* Luxury sharp corners or slight radius */
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 3px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-primary {
  background: var(--rose-gold);
  color: #222;
  box-shadow: var(--shadow-rose);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(140, 89, 64, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--rose-light);
  border: 1px solid var(--rose-light);
}
.btn-outline:hover {
  background: var(--rose-gold);
  color: #222;
  border-color: transparent;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.6rem 1.6rem;
  font-size: 0.75rem;
}


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(34, 36, 36, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--rose-light);
  box-shadow: 0 0 15px rgba(225, 174, 147, 0.2);
}

.nav-logo-text-group {
  display: flex;
  flex-direction: column;
}

.nav-logo-main {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--rose-light);
  line-height: 0.8;
  margin-bottom: 2px;
}

.nav-logo-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}



.nav-logo span.location { 
  display: block; 
  font-size: 0.6rem; 
  font-weight: 400; 
  color: var(--text-muted); 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-main);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose-light);
  border-bottom-color: var(--rose-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(183,110,121,0.2);
  border-radius: 8px;
  padding: 10px;
  width: 44px;
  height: 44px;
  transition: var(--transition);
  z-index: 10002;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--rose-light);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--ivory);
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
  border-top: 1px solid var(--blush-mid);
}
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rose-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--rose-light); }
.mobile-menu.open { display: flex; }


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--bg-light) 0%, var(--bg-dark) 100%);
  z-index: 0;
}

/* Decorative circles */
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.hero-bg::before { width: 600px; height: 600px; top: -150px; right: -150px; }
.hero-bg::after  { width: 400px; height: 400px; bottom: -100px; left: -80px; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--rose-light);
  font-family: 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}
.scroll-indicator span { width: 1.5px; height: 40px; background: white; animation: scrollPulse 2s infinite; display: block; }
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.3; transform: scaleY(0.5); }
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: var(--bg-main); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-badge {
  display: inline-block;
  background: var(--rose-glow);
  color: var(--rose-dark);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

 .about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--rose-light); margin-bottom: 1.5rem; }
.about-text p  { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.8; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  text-align: center;
  background: var(--blush);
  border-radius: var(--radius);
  padding: 1.2rem 0.8rem;
  border: 1px solid var(--blush-mid);
}
.stat-card .stat-num { font-family: 'Cinzel', serif; font-size: 2.2rem; color: var(--rose-light); font-weight: 700; }
.stat-card .stat-lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-family: 'Cinzel', serif; }

.about-visual {
  position: relative;
}

.about-img-frame {
  background: var(--bg-card);
  border: 1px solid var(--rose-dark);
  box-shadow: var(--shadow-rose);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius);
}

.clinic-emblem {
  font-size: 6rem;
  margin-bottom: 1rem;
  animation: floatEmoji 4s ease-in-out infinite;
}
@keyframes floatEmoji {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.about-img-frame h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--rose-light); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.about-img-frame p  { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.8rem; }


/* ============================================
   SERVICES HIGHLIGHTS (home page)
   ============================================ */
.services-highlights { background: var(--bg-dark); }

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

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--rose-light);
  transform: translateY(-10px);
  box-shadow: var(--shadow-rose);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(225, 174, 147, 0.3));
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--rose-light);
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}


/* ============================================
   MACHINES / TECHNOLOGY SECTION
   ============================================ */
/* ============================================
   MACHINES / TECHNOLOGY SECTION
   ============================================ */
.machines-section { 
  background: var(--bg-main); 
  padding: 8rem 0;
  border-top: 1px solid var(--glass-border);
}

.machines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.machine-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 0;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.machine-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #2a2c2c;
  padding: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.machine-label {
  padding: 1.25rem;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--rose-light);
  font-weight: 700;
  background: var(--bg-dark);
}

.machine-card:hover {
  border-color: var(--rose-light);
  transform: translateY(-5px);
}


/* ============================================
   REVIEWS CAROUSEL (home page)
   ============================================ */
/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section { 
  background: var(--bg-dark); 
  padding: 8rem 0;
  border-top: 1px solid var(--glass-border);
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.review-card::after {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  color: var(--rose-light);
  opacity: 0.1;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--rose-light);
  box-shadow: var(--shadow-rose);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar-sm {
  width: 45px;
  height: 45px;
  background: var(--rose-gold);
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--white);
  font-weight: 700;
}

.review-stars {
  color: var(--rose-light);
  font-size: 0.8rem;
  margin-top: 4px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
}

.review-card-full {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.review-card-full:hover {
  border-color: var(--rose-light);
  box-shadow: var(--shadow-rose);
  transform: translateY(-5px);
}

.review-card-full .name {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.review-card-full .stars {
  color: var(--rose-gold);
  margin-top: 0.2rem;
}

.review-card-full .review-quote {
  color: var(--text-main);
  line-height: 1.8;
  margin-top: 1.5rem;
  font-weight: 300;
  font-style: italic;
}

.review-card-full .review-avatar {
  background: var(--rose-dark);
  color: var(--white);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}

/* ── Testimonial Marquee ── */
.marquee-container {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.review-card {
  width: 400px;
  flex-shrink: 0;
}

/* ============================================
   CORE SERVICES & MODALS
   ============================================ */
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  height: 100%;
}

.svc-card::before {
  content: '';
  display: block;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  border-bottom: 1px solid var(--glass-border);
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--rose-light);
  box-shadow: var(--shadow-rose);
}

.svc-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
  display: none; /* Hidden by default on details list */
}

/* Show images for signature cards on homepage */
.clinical-services .svc-card-img {
  display: block;
}


.svc-card-icon {
  display: none;
}

.svc-card-body {
  padding: 2rem 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.svc-card-name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--rose-light);
  margin-bottom: 0.8rem;
  font-weight: 700;
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 50%, var(--rose-dark) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.8rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

.cta-banner .btn { position: relative; }


/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, #2f2f2f 0%, #3a3a3a 55%, #b76e79 100%);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  position: relative;
}

.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-top: 0.8rem;
  font-style: italic;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  position: relative;
}

.page-header .gold-divider { margin-top: 1.2rem; }


/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page { background: var(--ivory); }

/* Tabs */
.services-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.tab-btn {
  flex: 1;
  min-width: 180px;
  padding: 1.2rem 1.5rem;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-transform: uppercase;
}

.tab-btn:hover { background: var(--bg-light); color: var(--rose-light); }
.tab-btn.active { background: var(--rose-gold); color: #222; border-color: transparent; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-panel-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tab-panel-header h2 {
  font-size: 1.8rem;
  color: var(--rose);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.service-item {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-item:hover {
  background: var(--blush);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.service-item .svc-icon { font-size: 1.8rem; flex-shrink: 0; }

.service-item .svc-name {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.98rem;
}


/* ============================================
   REVIEWS PAGE
   ============================================ */
.reviews-page { background: var(--ivory); }

.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.review-card-full {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--blush-mid);
  transition: var(--transition);
}

.review-card-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-meta .name { font-family: 'Raleway', sans-serif; font-size: 1.1rem; color: var(--rose); font-weight: 700; }
.review-meta .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-top: 2px; }

.review-quote {
  font-style: italic;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.85;
  border-top: 1px solid var(--blush);
  padding-top: 1rem;
}

.review-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--blush-mid);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 3px;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--ivory); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--blush-mid);
}

.contact-info-card h2 { font-size: 1.8rem; color: var(--rose); margin-bottom: 0.3rem; }
.contact-info-card .subtitle { color: #888; margin-bottom: 2rem; font-size: 0.95rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--blush);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-content strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 0.2rem; }

.contact-item-content a, .contact-item-content p { color: var(--charcoal); font-size: 0.97rem; }
.contact-item-content a:hover { color: var(--rose); }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 0.4rem;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(37,211,102,0.3);
}

.wa-btn:hover {
  background: #1DA851;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.4);
  color: white;
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--blush-mid);
}

.map-card iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

.map-label {
  background: var(--charcoal);
  color: var(--gold);
  text-align: center;
  padding: 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 4rem 1.5rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-brand h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.footer-brand .tagline {
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.8); font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact p, .footer-contact a { color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.7; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.3rem 0;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}


/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}

.wa-float svg { width: 30px; height: 30px; fill: white; }

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); }
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--charcoal);
}

.wa-float:hover .wa-tooltip { opacity: 1; }


/* ============================================
   FADE-IN ANIMATION (Intersection Observer)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid,
  .machines-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-grid { gap: 2rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .services-grid,
  .machines-grid,
  .reviews-grid,
  .reviews-full-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-stats { grid-template-columns: repeat(3, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1; }

  .tab-btn { min-width: 0; font-size: 0.78rem; padding: 0.8rem 0.8rem; }

  .hero { min-height: 80vh; }

  .services-list { grid-template-columns: 1fr; }
}


@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .nav-logo { font-size: 1.15rem; }
  .hero h1 { font-size: 2rem; }
  .wa-float { bottom: 1.3rem; right: 1.3rem; }
}


/* ============================================
   SERVICES CARD GRID (services page)
   ============================================ */
.svc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.svc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
}

.svc-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.svc-card:hover {
  border-color: var(--rose-light);
  transform: translateY(-8px);
  box-shadow: var(--shadow-rose);
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225,174,147,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius);
}

.svc-card:hover::before { opacity: 1; }

.svc-card-icon {
  display: none;
}

.svc-card-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--rose-light);
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.svc-card-sub {
  font-size: 0.82rem;
  color: var(--champagne);
  line-height: 1.4;
  opacity: 0.85;
}

.svc-card-arrow {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--rose-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.svc-card:hover .svc-card-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================
   SERVICE MODAL
   ============================================ */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 18, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.svc-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.svc-modal {
  background: var(--bg-card);
  border: 1px solid var(--rose-dark);
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  opacity: 0;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.svc-modal-overlay.open .svc-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.svc-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-3);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.svc-modal-close:hover {
  background: var(--rose-dark);
  border-color: var(--rose);
}

.svc-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-right: 2.5rem;
}

.svc-modal-icon {
  display: none;
}

.svc-modal-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.2;
}

.svc-modal-tagline {
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 0.3rem;
  font-weight: 500;
}

.svc-modal-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--rose), transparent);
  margin: 1.2rem 0;
  opacity: 0.4;
}

.svc-modal-desc {
  color: rgba(255,255,255,0.82);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.svc-modal-highlights-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rose-light);
  margin-bottom: 0.75rem;
}

.svc-modal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.svc-pill {
  display: inline-block;
  padding: 0.38rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--charcoal-3);
  background: var(--charcoal-2);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: var(--transition);
}

.svc-pill:hover {
  border-color: var(--rose);
  color: var(--rose-light);
  background: rgba(183,110,121,0.1);
}

/* ============================================
   FINAL MOBILE OPTIMIZATIONS (Max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* -- Global Typography & Spacing -- */
  section { padding: 4rem 0 !important; }
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem !important; }
  .section-title { font-size: 1.6rem !important; }

  /* -- Navbar -- */
  .nav-inner { padding: 0.7rem 1.2rem; }
  .nav-logo-img { height: 40px; width: 40px; }
  .nav-logo-text span:first-child { font-size: 0.95rem; }
  .nav-logo span.location { font-size: 0.55rem; letter-spacing: 1.5px; }

  /* -- Hero -- */
  .hero-content { padding: 0 1rem; }
  .hero-content h1 { font-size: 2.6rem !important; margin-bottom: 1rem; }
  .hero-content p { font-size: 1.05rem !important; }

  /* -- About -- */
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 280px;
    margin: 2.5rem auto 0;
  }
  .stat-card { 
    background: rgba(183,110,121,0.05);
    border: 1px solid rgba(183,110,121,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.8rem 1.2rem; 
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  .stat-card .stat-num { font-size: 2.2rem; margin-bottom: 0.2rem; }
  .stat-card .stat-lbl { font-size: 0.7rem; letter-spacing: 1.5px; }

  /* -- Grids (Services, Machines, Reviews) -- */
  .services-grid, 
  .svc-card-grid, 
  .machines-grid, 
  .reviews-grid, 
  .reviews-full-grid, 
  .contact-grid { 
    grid-template-columns: 1fr !important; 
    gap: 2rem !important;
    justify-items: center;
  }

  .service-card, .machine-card, .svc-card {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
  }

  .machine-card img { padding: 1.5rem; }
  .machine-label { font-size: 0.8rem; letter-spacing: 1.5px; }

  /* -- Footer -- */
  .footer-inner { text-align: center; gap: 2rem; }
  .footer-brand img { width: 70px; }
  .footer-links, .footer-contact { align-items: center; }

  /* -- Floating Buttons -- */
  .wa-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 28px; height: 28px; }

  /* -- Tabs (Services Page) -- */
  .services-tabs {
    display: flex !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding: 1rem 0.5rem !important;
    gap: 0.8rem !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    margin-bottom: 2rem;
    flex-wrap: nowrap !important;
    background: transparent;
    box-shadow: none;
  }
  .services-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .tab-btn {
    flex: 0 0 auto !important;
    min-width: auto !important;
    padding: 0.8rem 1.4rem !important;
    font-size: 0.75rem !important;
    white-space: nowrap;
    border-radius: 12px !important;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    letter-spacing: 1.5px;
  }
  .tab-btn.active {
    background: var(--rose-gold) !important;
    color: #222 !important;
    box-shadow: 0 4px 15px rgba(225, 174, 147, 0.3);
  }
}

/* Smallest Screens */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem !important; }
  .btn { width: 100%; display: block; text-align: center; }
  .about-stats { grid-template-columns: 1fr; gap: 1rem; }
  .stat-card { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 0.8rem; }
  .stat-card .stat-num { margin: 0; }
}

/* -- Mobile Sticky Booking Bar -- */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(34,36,36,1) 0%, rgba(34,36,36,0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.5rem 1.5rem; /* Extra bottom padding for safe area */
  z-index: 10001;
  border-top: 1px solid rgba(183,110,121,0.2);
  justify-content: center;
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (max-width: 768px) {
  .mobile-book-bar { display: flex; }
  .wa-float { bottom: 6rem !important; }
}

.mobile-book-bar .btn-book {
  width: 100%;
  max-width: 280px;
  background: var(--rose-gold);
  color: #222;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.9rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}

.mobile-book-bar .btn-book:active {
  transform: scale(0.98);
}

/* Remove redundant mobile navbar button */
.nav-book-mobile {
  display: none !important;
}

/* Hide mobile booking bar when modal is open */
body:has(.svc-modal-overlay.open) .mobile-book-bar,
.svc-modal-overlay.open ~ .mobile-book-bar {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

/* Service Detail Modal Mobile Optimizations */
@media (max-width: 768px) {
  .svc-modal {
    padding: 1.8rem 1.2rem !important;
    max-height: 84vh !important;
    width: 90% !important;
    border-radius: 16px !important;
    margin: auto !important;
  }
  .svc-modal-title {
    font-size: 1.15rem !important;
  }
  .svc-modal-desc {
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
  }
  #modal-media-container {
    margin: -1.8rem -1.2rem 1.2rem -1.2rem !important;
    height: 180px !important;
  }
  .svc-modal-close {
    top: 0.6rem !important;
    right: 0.6rem !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 0.95rem !important;
  }
}
