/* ==========================================================================
   STUDIO ÁVILA - SISTEMA DE DISEÑO & ESTILOS PREMIUM (VANILLA CSS)
   ========================================================================== */

/* 1. VARIABLES DEL SISTEMA DE DISEÑO (PALETA LUXURY) */
:root {
  --color-base: #FAF7F2;          /* Marfil / Crema */
  --color-text-main: #171717;     /* Negro Suave */
  --color-neutral-grey: #6B6B6B;  /* Gris Cálido */
  --color-accent-gold: #C8A46B;   /* Dorado Lujo */
  --color-accent-gold-hover: #B68E54;
  --color-accent-nude: #E7B8B0;   /* Rosa Nude */
  --color-accent-pearl: #F2EEF3;  /* Perla */
  --color-whatsapp: #1F8F5A;      /* Verde Whatsapp Elegante */
  --color-white: #ffffff;
  
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-soft: 0 4px 20px rgba(23, 23, 23, 0.05);
  --shadow-medium: 0 10px 30px rgba(23, 23, 23, 0.08);
  --shadow-gold: 0 8px 24px rgba(200, 164, 107, 0.15);
  
  --radius-button: 16px;
  --radius-card: 20px;
}

/* 2. RESET & REGLAS GENERALES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-base);
  color: var(--color-text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* 3. UTILIDADES DE MAQUETACIÓN (GRID & SPACING) */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacing {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 60px 0;
  }
}

.bg-cream {
  background-color: #FAF7F2;
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.full-width { width: 100%; }

/* Grids */
.grid {
  display: grid;
  gap: 32px;
}

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

@media (max-width: 992px) {
  .grid-md-1 { grid-template-columns: 1fr; }
  .grid-md-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .grid-sm-1 { grid-template-columns: 1fr; }
  .gap-4 { gap: 24px !important; }
}

/* 4. COMPONENTES GLOBALES (BOTONES, BADGES, GLASS) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 10px;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-primary {
  background-color: var(--color-accent-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--color-accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 164, 107, 0.25);
}

.btn-secondary {
  background-color: rgba(23, 23, 23, 0.05);
  color: var(--color-text-main);
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.btn-secondary:hover {
  background-color: rgba(23, 23, 23, 0.08);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-main);
  border: 2px solid var(--color-accent-gold);
}

.btn-outline:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.icon-whatsapp {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Glassmorphism sutil */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-soft);
}

/* Badges */
.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-accent-gold-hover);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* 5. DISEÑO DE SECCIONES */

/* Header Sticky */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 23, 23, 0.05);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: -0.01em;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-neutral-grey);
  margin-top: -2px;
}

.nav-list {
  display: flex;
  gap: 16px; /* Reducido de 30px a 16px para más fluidez */
}

.header-actions .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-neutral-grey);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text-main);
}

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

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-base);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    padding: 120px 40px 40px;
    transition: var(--transition-smooth);
    z-index: 1050;
  }
  
  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 24px;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .header-actions {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px;
  background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1200&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: var(--color-text-main);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(250, 247, 242, 0.98) 40%, rgba(250, 247, 242, 0.75) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-neutral-grey);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-ctas .btn-primary {
  background-color: var(--color-whatsapp);
  box-shadow: 0 8px 24px rgba(31, 143, 90, 0.2);
}

.hero-ctas .btn-primary:hover {
  background-color: #177549;
  box-shadow: 0 10px 28px rgba(31, 143, 90, 0.35);
}

@media (max-width: 768px) {
  .hero {
    padding: 130px 0 60px;
    background-position: 70% center;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
}

/* Trust Bar */
.trust-bar {
  display: flex;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  padding: 20px 30px;
  border-radius: var(--radius-card);
  max-width: fit-content;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  font-size: 1.5rem;
}

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

.trust-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-text span {
  font-size: 0.75rem;
  color: var(--color-neutral-grey);
}

.hero-smallcopy {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-neutral-grey);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .trust-bar {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
  }
}

/* Highlights Chips Horizontal */
.highlights-section {
  padding: 20px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.05);
  border-bottom: 1px solid rgba(23, 23, 23, 0.05);
  background-color: rgba(255, 255, 255, 0.2);
}

.scroll-x {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.scroll-x::-webkit-scrollbar {
  display: none; /* Oculta barra en Chrome/Safari */
}

.highlights-chips {
  display: inline-flex;
  gap: 16px;
}

.chip {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--color-white);
  border: 1px solid rgba(23,23,23,0.06);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-main);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.chip:hover {
  border-color: var(--color-accent-gold);
  transform: scale(1.02);
}

/* Section Header Utility */
.section-header {
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-gold-hover);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1rem;
  color: var(--color-neutral-grey);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }
}

/* Featured Services cards */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(23, 23, 23, 0.03);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.card-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 30px;
}

.card-title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--color-neutral-grey);
  margin-bottom: 24px;
}

.card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.detail-item {
  font-size: 0.75rem;
  background-color: var(--color-base);
  color: var(--color-neutral-grey);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

/* Why Choose Us & Tip Box */
.why-choose-us {
  border-top: 1px solid rgba(23,23,23,0.04);
}

.why-bullets {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bullet-icon {
  font-size: 1.25rem;
  margin-top: 2px;
}

.bullet-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.bullet-text {
  font-size: 0.95rem;
  color: var(--color-neutral-grey);
}

.why-choose-tip-box {
  padding: 40px;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.why-choose-tip-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(231,184,176,0.3) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
}

.tip-box-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent-gold-hover);
  margin-bottom: 16px;
  z-index: 2;
}

.tip-box-text {
  font-size: 0.95rem;
  color: var(--color-neutral-grey);
  margin-bottom: 20px;
  z-index: 2;
}

.tip-quote {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text-main);
  border-left: 3px solid var(--color-accent-gold);
  padding-left: 20px;
  margin-bottom: 24px;
  z-index: 2;
}

.tip-author {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

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

.tip-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.tip-author-info span {
  font-size: 0.75rem;
  color: var(--color-neutral-grey);
}

/* Before / After comparison slider */
.before-after-wrapper {
  max-width: 500px; /* Reducido para formato vertical */
  margin: 0 auto;
  position: relative;
}

.ba-slider {
  width: 100%;
  aspect-ratio: 3/4; /* Cambiado a retrato vertical para encuadrar rostros completos */
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255,255,255,0.4);
}

.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-image-before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.ba-image-after {
  width: 50%; /* Se cambia con JS */
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.8);
  z-index: 2;
}

.ba-image-after img {
  width: 100%; /* Necesita conservar dimensiones originales del contenedor */
  max-width: none;
  /* Se recalcula con JS para coincidir exactamente con el contenedor */
}

.ba-label {
  position: absolute;
  bottom: 20px;
  background-color: rgba(23, 23, 23, 0.75);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.ba-label-before { right: 20px; }
.ba-label-after { left: 20px; }

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%; /* Se mueve con JS */
  width: 4px;
  height: 100%;
  background-color: var(--color-white);
  z-index: 20;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background-color: var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='%236B6B6B'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3Cpath d='M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.ba-range-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 30;
}

/* Gallery Section */
.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.btn-tab {
  background-color: var(--color-white);
  border: 1px solid rgba(23, 23, 23, 0.06);
  color: var(--color-neutral-grey);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-tab:hover, .btn-tab.active {
  background-color: var(--color-accent-gold);
  color: var(--color-white);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  transition: var(--transition-smooth);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-hover-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(23, 23, 23, 0.9) 0%, rgba(23, 23, 23, 0) 100%);
  color: var(--color-white);
  transform: translateY(100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.gallery-hover-info h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  margin-bottom: 4px;
  font-weight: 500;
}

.gallery-hover-info span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-hover-info {
  transform: translateY(0);
}

/* Efecto Espejo Chrome (Brillo Animado) */
.gallery-item.animate-mirror::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}

.gallery-item.animate-mirror:hover::after {
  animation: shine-effect 1.2s ease;
}

@keyframes shine-effect {
  100% {
    left: 200%;
  }
}

/* Reviews / Testimonials Section */
.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.rating-stars {
  font-size: 1.6rem;
  color: var(--color-accent-gold);
  letter-spacing: 2px;
}

.rating-badge {
  font-weight: 600;
  font-size: 0.95rem;
}

.reviews-count {
  font-size: 0.8rem;
  color: var(--color-neutral-grey);
}

.reviews-slider-container {
  max-width: 750px;
  margin: 40px auto 0;
  position: relative;
  padding: 0 40px;
}

.reviews-slider {
  position: relative;
  min-height: 220px;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: all 0.4s ease;
  background-color: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(23,23,23,0.03);
  text-align: center;
}

.review-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.review-card .stars {
  font-size: 1.1rem;
  color: var(--color-accent-gold);
  margin-bottom: 16px;
  display: block;
}

.review-text {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-main);
  margin-bottom: 24px;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neutral-grey);
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid rgba(23,23,23,0.06);
  color: var(--color-text-main);
  font-weight: 700;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-controls button:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-white);
  border-color: var(--color-accent-gold);
}

.reviews-transparency {
  max-width: 670px;
  margin: 40px auto 0;
  padding: 20px 30px;
  font-size: 0.85rem;
  border-radius: 12px;
}

.link-action {
  color: var(--color-accent-gold-hover);
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px dashed var(--color-accent-gold);
}

.link-action:hover {
  color: var(--color-text-main);
  border-bottom-color: var(--color-text-main);
}

/* About Us Section */
.about-image {
  position: relative;
}

.about-img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-medium);
}

.about-bold-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-accent-gold-hover);
  margin-bottom: 16px;
}

.value-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.value-item span {
  font-size: 0.85rem;
  color: var(--color-neutral-grey);
}

/* FAQ Accordion */
.faq-wrapper {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(23,23,23,0.04);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.faq-trigger span {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-accent-gold);
  transition: var(--transition-fast);
}

.faq-item.active .faq-trigger {
  color: var(--color-accent-gold-hover);
}

.faq-item.active .faq-trigger span {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 0 30px;
}

.faq-content p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--color-neutral-grey);
  line-height: 1.6;
}

/* Contact / Booking & Map Form */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

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

.contact-detail-icon {
  font-size: 1.4rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-detail-text span, .contact-detail-text a {
  font-size: 0.9rem;
  color: var(--color-neutral-grey);
}

.contact-detail-text a:hover {
  color: var(--color-accent-gold-hover);
}

.map-wrapper {
  overflow: hidden;
  border-radius: var(--radius-card);
  margin-top: 30px;
  line-height: 0;
}

.booking-form-box {
  padding: 40px;
  border-radius: var(--radius-card);
}

.booking-box-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-box-subtitle {
  font-size: 0.85rem;
  color: var(--color-neutral-grey);
  margin-bottom: 28px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-main);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--color-base);
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-main);
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(200, 164, 107, 0.1);
}

.booking-form .btn-primary {
  background-color: var(--color-whatsapp);
  box-shadow: 0 8px 24px rgba(31, 143, 90, 0.15);
}

.booking-form .btn-primary:hover {
  background-color: #177549;
  box-shadow: 0 10px 28px rgba(31, 143, 90, 0.3);
}

/* Sticky Mobile CTA (Footer floating) */
.sticky-mobile-cta {
  position: fixed;
  bottom: 24px;
  left: 0;
  width: 100%;
  padding: 0 24px;
  z-index: 999;
  display: none;
}

.sticky-mobile-cta a {
  width: 100%;
  background-color: var(--color-whatsapp);
  box-shadow: 0 10px 30px rgba(31, 143, 90, 0.4);
  font-size: 1.05rem;
}

.sticky-mobile-cta a:hover {
  background-color: #177549;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
}

/* Footer Section */
.footer {
  background-color: #171717;
  color: #ECEAE5;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-gold);
  margin-bottom: 24px;
}

.branding-col {
  padding-right: 20px;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-white);
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  color: #a3a19b;
  margin-bottom: 24px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-icons a:hover {
  background-color: var(--color-accent-gold);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #a3a19b;
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-contact-info, .footer-hours-info {
  font-size: 0.88rem;
  color: #a3a19b;
  line-height: 1.8;
}

.footer-contact-info a {
  color: #ECEAE5;
}

.footer-contact-info a:hover {
  color: var(--color-accent-gold);
}

.highlight-hours {
  color: var(--color-accent-nude);
  display: block;
  margin-top: 8px;
  font-weight: 500;
}

.footer-bottom {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.75rem;
  color: #8c8a85;
}
