/* ==========================================================================
   LAUS CORDIS - Luxury Classical Music & Choir Landing Page
   Palette: Dark Onyx (#08080a), Warm Gold (#D4AF37, #ECC368), Ivory White (#FDFBF7)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #09090b;
  --bg-secondary: #111217;
  --bg-card: rgba(18, 19, 24, 0.7);
  --bg-card-hover: rgba(26, 27, 34, 0.85);
  --bg-glass: rgba(12, 13, 16, 0.82);
  
  --gold-100: #FFF6D6;
  --gold-200: #F6E29F;
  --gold-300: #ECC368;
  --gold-400: #D4AF37;
  --gold-500: #B88E28;
  --gold-600: #8C6A18;
  
  --gold-gradient: linear-gradient(135deg, #F9E7B9 0%, #D4AF37 50%, #9E7920 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFFFFF 0%, #ECC368 50%, #B88E28 100%);
  --gold-subtle-glow: 0 0 30px rgba(212, 175, 55, 0.22);
  --gold-strong-glow: 0 0 45px rgba(212, 175, 55, 0.45);
  --border-gold: rgba(212, 175, 55, 0.22);
  --border-gold-hover: rgba(212, 175, 55, 0.6);
  
  --text-main: #FDFBF7;
  --text-muted: #B3ADA4;
  --text-dim: #7A766F;
  --text-gold: #ECC368;

  --whatsapp-green: #25D366;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);

  /* Typography */
  --font-serif: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  line-height: 1.65;
  background-color: var(--bg-primary);
  color: var(--text-main);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(212, 175, 55, 0.03) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(17, 18, 23, 0.8) 0%, #09090b 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #09090b;
}
::-webkit-scrollbar-thumb {
  background: #2a2824;
  border-radius: 5px;
  border: 2px solid #09090b;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-400);
}

/* Typography Helpers */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

p {
  color: var(--text-muted);
  font-weight: 300;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

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

/* Badge Component */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.badge-glow {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: var(--transition-fast);
}

.site-header.scrolled {
  padding: 0.8rem 0;
  background: rgba(9, 9, 11, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(212, 175, 55, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: -3px;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0d0e12;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-400);
  color: var(--gold-100);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2bf075 0%, #17ab9a 100%);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.03);
  transition: transform 10s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 11, 0.75) 0%,
    rgba(9, 9, 11, 0.5) 45%,
    rgba(9, 9, 11, 0.95) 90%,
    #09090b 100%
  );
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.18;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

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

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: #E2DFD8;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-highlight {
  font-size: 1.15rem;
  color: var(--gold-200);
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
  font-style: italic;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  max-width: 760px;
  margin: 0 auto;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-300);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Section Header
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: #FFFFFF;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   Emotional Narrative Section (Tu ceremonia sucede una sola vez)
   ========================================================================== */
.narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .narrative-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.narrative-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.narrative-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.narrative-image-card:hover img {
  transform: scale(1.04);
}

.image-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(14, 15, 19, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold);
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.badge-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-200);
  margin-bottom: 0.2rem;
}

.badge-author {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.questions-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.8rem 0;
}

.question-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--gold-400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: var(--transition-fast);
}

.question-box:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(4px);
}

.question-icon {
  color: var(--gold-400);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.question-text {
  font-size: 0.98rem;
  font-weight: 500;
  color: #FFFFFF;
}

.narrative-conclusion {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
}

.conclusion-highlight {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-200);
  font-weight: 600;
}

/* ==========================================================================
   Value Pillars (Música en Vivo, Asesoría, Planeación)
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-400);
  transform: translateY(-8px);
  box-shadow: var(--gold-subtle-glow);
}

.pillar-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-300);
  margin-bottom: 1.75rem;
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-icon-wrap {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.pillar-title {
  font-size: 1.45rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.pillar-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.instrument-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.instrument-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--gold-200);
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.pillar-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pillar-checklist li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pillar-checklist li i {
  color: var(--gold-400);
  font-size: 0.8rem;
}

/* ==========================================================================
   Pricing & Formats Section (Elige cómo quieres que se sienta tu ceremonia)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

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

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.7rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.featured {
  border-color: var(--gold-400);
  background: linear-gradient(180deg, rgba(30, 28, 22, 0.85) 0%, rgba(18, 19, 24, 0.9) 100%);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.18);
  transform: scale(1.02);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-300);
  box-shadow: var(--gold-strong-glow);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-title {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.pricing-vibe {
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 2.7rem;
}

.pricing-price-box {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 1.5rem;
}

.price-prefix {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-200);
  line-height: 1.1;
}

.price-currency {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-features li i {
  color: var(--gold-400);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.pricing-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ==========================================================================
   Events Section (Música para momentos que no se repiten)
   ========================================================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-400);
  transform: translateY(-5px);
}

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

.event-icon {
  font-size: 2rem;
  color: var(--gold-300);
  margin-bottom: 1.25rem;
}

.event-title {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

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

/* ==========================================================================
   Repertoire Showcase & Audio Experience
   ========================================================================== */
.repertoire-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .repertoire-wrapper {
    grid-template-columns: 1fr;
  }
}

.repertoire-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.repertoire-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.repertoire-item:hover {
  background: rgba(212, 175, 55, 0.09);
  border-color: var(--gold-400);
  transform: scale(1.01);
}

.repertoire-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.music-note-icon {
  color: var(--gold-400);
  font-size: 1.1rem;
}

.piece-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #FFFFFF;
  font-weight: 600;
}

.piece-composer {
  font-size: 0.82rem;
  color: var(--gold-300);
  margin-left: 0.5rem;
}

.audio-preview-btn {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-200);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.audio-preview-btn:hover, .audio-preview-btn.playing {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.repertoire-custom-card {
  background: linear-gradient(135deg, rgba(26, 27, 34, 0.8) 0%, rgba(14, 15, 19, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.custom-card-content {
  position: relative;
  z-index: 2;
}

.custom-quote {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.35;
}

/* ==========================================================================
   How to Hire Steps (5 Pasos)
   ========================================================================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}

@media (max-width: 1100px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem 1.4rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover {
  border-color: var(--gold-400);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition-fast);
}

.step-card:hover .step-number {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.step-title {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Contact Form & Interactive WhatsApp Quote Builder
   ========================================================================== */
.contact-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
}

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

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

.contact-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.2rem;
  backdrop-filter: blur(16px);
}

.contact-info-title {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.contact-direct-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-direct-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-direct-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-direct-text strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-direct-text span, .contact-direct-text a {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-direct-text a:hover {
  color: var(--gold-300);
}

/* AI Assistant Callout */
.ai-assistant-banner {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(20, 21, 26, 0.8) 100%);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.ai-icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.ai-banner-text h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.ai-banner-text p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Form Styles */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .form-card {
    padding: 2rem 1.5rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

@media (max-width: 640px) {
  .form-group.full-width {
    grid-column: span 1;
  }
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-200);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: rgba(10, 11, 14, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-400);
  background: rgba(14, 15, 20, 0.95);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
  color: var(--text-dim);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ECC368'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.4rem;
  cursor: pointer;
}

select.form-control option {
  background: #111217;
  color: #FFFFFF;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-submit-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.8rem;
}

/* ==========================================================================
   FAQ Section Accordion
   ========================================================================== */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.faq-item:hover {
  border-color: var(--gold-400);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.4rem 1.8rem;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold-200);
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--gold-400);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0.5rem 1.8rem 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ==========================================================================
   Final Emotional Closing Section
   ========================================================================== */
.closing-section {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(180deg, #09090b 0%, #12100e 50%, #09090b 100%);
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(40%) contrast(1.2);
  z-index: 1;
}

.closing-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.closing-moments {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-200);
  line-height: 2.2;
  margin-bottom: 2rem;
  font-style: italic;
}

.closing-highlight {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
  font-family: var(--font-serif);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #050507;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 320px;
}

.footer-heading {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Floating WhatsApp Button & Widgets
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: var(--transition-bounce);
  cursor: pointer;
}

.whatsapp-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-bubble::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseRing 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  background: rgba(14, 15, 19, 0.95);
  border: 1px solid var(--border-gold);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  animation: floatTooltip 3s ease-in-out infinite;
}

@media (max-width: 600px) {
  .whatsapp-tooltip {
    display: none;
  }
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .whatsapp-bubble {
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }
}

@keyframes floatTooltip {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Modal Toast Confirmation */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #111217;
  border: 1px solid var(--gold-400);
  color: #FFFFFF;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  font-size: 0.92rem;
  z-index: 2000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ElevenLabs ConvAI widget placement */
elevenlabs-convai {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 998;
}

@media (max-width: 600px) {
  elevenlabs-convai {
    bottom: 1.25rem;
    left: 1.25rem;
  }
}
