/* variables.css */
:root {
  /* Armo Luxury Medical Palette */
  --primary-wine: #660F25;
  --primary-wine-dark: #4E0C1C;
  --primary-wine-light: #8C1D35;
  --accent-gold: #D4AF37;
  --accent-gold-light: #EAD39C;
  --accent-gold-dark: #B59024;
  --accent-rose: #C45579;
  
  /* Background & Canvas Tokens */
  --canvas-bg: #FBF9F6;
  --canvas-subtle: #F3EEE7;
  --surface-card: #FFFFFF;
  --surface-elevated: #FFFFFF;
  
  /* Text & Typography */
  --text-main: #22181C;
  --text-muted: #63565B;
  --text-light: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* WhatsApp Official Colors */
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #128C7E;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);
  
  /* Glass & Borders */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(102, 15, 37, 0.08);
  --card-border: rgba(102, 15, 37, 0.08);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(34, 24, 28, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(78, 12, 28, 0.08);
  --shadow-lg: 0 16px 40px -8px rgba(78, 12, 28, 0.12);
  --shadow-gold: 0 8px 24px -4px rgba(212, 175, 55, 0.25);
  
  /* Layout & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --container-max: 1200px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* base.css */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--canvas-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 84px 0;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-wine);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 40px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-wine-light) 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--accent-gold);
}

.editorial-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-wine);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-wine-dark) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(102, 15, 37, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(102, 15, 37, 0.45);
  color: #ffffff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-wine);
  border: 1.5px solid var(--primary-wine);
}

.btn-outline:hover {
  background: var(--primary-wine);
  color: #ffffff;
  transform: translateY(-2px);
}


/* glassmorphism.css */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.glass-badge {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-pill);
}

.gold-contour {
  position: relative;
}

.gold-contour::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}


/* navbar.css */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-smooth);
}

.navbar-wrapper.scrolled {
  padding: 10px 0;
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(34, 24, 28, 0.06);
  border-bottom: 1px solid rgba(102, 15, 37, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-monogram {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-wine);
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(102, 15, 37, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-wine);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold-dark);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-wine);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary-wine);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(34, 24, 28, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-cta {
  display: none;
}

@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 20px;
    padding: 32px 24px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    transition: transform var(--transition-smooth);
    border-bottom: 2px solid var(--primary-wine);
    z-index: 999;
  }
  
  .nav-links.open {
    transform: translateY(0);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-actions .btn {
    display: none;
  }

  .nav-mobile-cta {
    display: block;
    width: 100%;
    margin-top: 8px;
  }
}



/* hero.css */
.hero-section {
  padding-top: 140px;
  padding-bottom: 70px;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(102, 15, 37, 0.05) 0%, transparent 40%),
              var(--canvas-bg);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--primary-wine);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(102, 15, 37, 0.1);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-wine);
  line-height: 1.1;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(102, 15, 37, 0.25);
  border: 4px solid #ffffff;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.floating-text h4 {
  font-size: 0.88rem;
  color: var(--primary-wine);
  font-weight: 700;
}

.floating-text p {
  font-size: 0.76rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-floating-badge {
    left: 10px;
    bottom: 10px;
  }
  .hero-frame {
    max-width: 360px;
  }
  .hero-img {
    height: 440px;
  }
}


/* services.css */
.services-section {
  background: #ffffff;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--canvas-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(102, 15, 37, 0.08);
  color: var(--primary-wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--primary-wine);
  color: var(--accent-gold);
  transform: scale(1.06);
}

.service-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-wine);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-wine);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: var(--accent-gold-dark);
  font-weight: bold;
}

.service-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-wine);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-link {
  gap: 10px;
  color: var(--accent-rose);
}


/* about.css */
.about-section {
  background: var(--canvas-bg);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.about-quote-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-wine);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(78, 12, 28, 0.3);
  max-width: 280px;
  border-left: 4px solid var(--accent-gold);
}

.about-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.about-quote-author {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold-light);
  font-weight: 600;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-wine);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-lead {
  font-size: 1.12rem;
  color: var(--primary-wine-dark);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.6;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.about-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
}

.about-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  font-size: 1rem;
}

.about-badge-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-wine);
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-quote-card {
    right: 10px;
    bottom: -10px;
    max-width: 240px;
  }
  .about-badges {
    grid-template-columns: 1fr;
  }
}


/* differentials.css */
.differentials-section {
  background: #ffffff;
  position: relative;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.diff-card {
  background: var(--canvas-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--card-border);
  transition: all var(--transition-smooth);
}

.diff-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.diff-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-wine);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.diff-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-wine);
  margin-bottom: 10px;
}

.diff-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* testimonials.css */
/* Real Social Proof & Google Reviews Dual Infinite Scroll */
.testimonials-section {
  background: var(--canvas-bg);
  position: relative;
  overflow: hidden;
  padding: 60px 0 68px 0;
}

.testimonials-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px auto;
  position: relative;
  z-index: 2;
}

/* Dual Marquee Container with Edge Gradient Fades */
.testimonials-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 5%, rgba(0,0,0,1) 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 5%, rgba(0,0,0,1) 95%, transparent 100%);
}

.marquee-row { display: flex; overflow: hidden; user-select: none; width: 100%; }
.marquee-track { display: flex; align-items: flex-start; gap: 16px; width: max-content; will-change: transform; }

/* Continuous Smooth Scroll Speeds */
.marquee-ltr .marquee-track { animation: scrollLTR 45s linear infinite; }
.marquee-rtl .marquee-track { animation: scrollRTL 45s linear infinite; }

@keyframes scrollLTR {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes scrollRTL {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Pause on Hover (Desktop Hover and Mobile Touch Hold) */
.marquee-row:hover .marquee-track, .marquee-track:hover {
  animation-play-state: paused !important;
}

/* Review Card Styling - Uniform Height & Elegant Border */
.review-card {
  flex-shrink: 0;
  width: 320px;
  height: 236px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(102, 15, 37, 0.08);
  box-shadow: 0 4px 16px -4px rgba(78, 12, 28, 0.06);
  padding: 12px;
  cursor: zoom-in;
  transition: transform var(--transition-spring), box-shadow var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.review-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 28px -6px rgba(102, 15, 37, 0.16);
  border-color: var(--accent-gold);
}

.review-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  pointer-events: none;
}

.review-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to top, #ffffff 20%, rgba(255, 255, 255, 0) 100%);
  border-radius: 0 0 16px 16px;
  pointer-events: none;
}

/* Lightbox Modal (Click on Desktop / Long Press Mobile) */
.review-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.review-lightbox-modal.active { opacity: 1; pointer-events: auto; }

.review-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 24, 28, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.review-lightbox-container {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.review-lightbox-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.92);
  transition: transform 0.35s var(--transition-spring);
  max-height: 85vh;
  overflow-y: auto;
}

.review-lightbox-modal.active .review-lightbox-card { transform: scale(1); }

.review-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-wine);
  color: #ffffff;
  border: 2px solid #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
}

.review-lightbox-close:hover { transform: scale(1.1); background: var(--accent-gold); color: var(--primary-wine); }

.review-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(102, 15, 37, 0.08);
}

.review-lightbox-badge { font-size: 0.82rem; font-weight: 600; color: var(--primary-wine); }
.review-lightbox-stars { color: #ffb800; font-size: 1rem; }
.review-lightbox-body { width: 100%; display: flex; justify-content: center; }
.review-lightbox-img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); }
.review-lightbox-hint { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 14px; margin-bottom: 0; }

@media (max-width: 768px) {
  .testimonials-section { padding: 48px 0 56px 0; }
  .review-card { width: 270px; height: 195px; padding: 10px; }
  .review-lightbox-container { max-width: 92vw; }
}


/* faq.css */
.faq-section {
  background: #ffffff;
  position: relative;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--canvas-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary-wine);
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(102, 15, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-wine);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.faq-item.active .faq-answer {
  padding-bottom: 22px;
}


/* contact.css */
.contact-section {
  background: var(--canvas-bg);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(102, 15, 37, 0.08);
  color: var(--primary-wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-details h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-wine);
  margin-bottom: 4px;
}

.contact-item-details p, .contact-item-details a {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.contact-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--card-border);
  min-height: 400px;
  background: #ffffff;
}

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

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-card {
    padding: 28px 20px;
  }
}


/* modal.css */
/* Booking Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 24, 28, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s var(--transition-spring);
  border: 1px solid var(--card-border);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}

.modal-header {
  margin-bottom: 24px;
  text-align: center;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-wine);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(102, 15, 37, 0.2);
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Floating WhatsApp Button - Exact Permittá Standard */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px -4px var(--whatsapp-glow);
  z-index: 999;
  cursor: pointer;
  transition: transform var(--transition-spring), box-shadow var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 30px -4px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp-green);
  animation: pulseWhatsapp 2.4s infinite ease-out;
  pointer-events: none;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}


/* responsive.css */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  
  .section-title {
    font-size: 2.1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .differentials-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-metrics {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .modal-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}



/* blog.css */
.blog-header-section {
  padding-top: 130px;
  padding-bottom: 40px;
  background: var(--canvas-bg);
  text-align: center;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

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

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary-wine);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.blog-sidebar {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.blog-sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-wine);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
}

.blog-search-box {
  margin-bottom: 24px;
}

.blog-categories-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.blog-category-btn {
  background: none;
  border: none;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.blog-category-btn:hover, .blog-category-btn.active {
  background: rgba(102, 15, 37, 0.08);
  color: var(--primary-wine);
  font-weight: 600;
}

@media (max-width: 991px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}


/* article.css */
.article-header {
  padding-top: 130px;
  padding-bottom: 40px;
  background: var(--canvas-bg);
  text-align: center;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--primary-wine);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--primary-wine-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content ul, .article-content ol {
  margin-bottom: 24px;
  padding-left: 28px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-author-box {
  margin-top: 50px;
  padding: 28px;
  background: var(--canvas-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-wine);
  margin-bottom: 4px;
}

.author-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.article-cta-box {
  margin-top: 40px;
  padding: 36px 32px;
  background: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-wine-dark) 100%);
  border-radius: var(--radius-lg);
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.article-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.article-cta-box p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}


