/*═══════════════════════════════════════════════════════════════════════════╗
 │  YL CONSULTORES - Premium Law Firm Stylesheet                            │
 │  Design System: Elegant, Professional, Premium                           │
 │  Colors: Navy #0f172a, Gold #c5a059, Slate #64748b, Off-white #f8fafc   │
 │  Typography: Playfair Display (Serif) + Lato (Sans-Serif)               │
 ╚═══════════════════════════════════════════════════════════════════════════*/

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  CSS CUSTOM PROPERTIES (Variables)                                       ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;500;600;700&display=swap');

:root {
  /* ─── Primary Colors ─── */
  --color-primary: #0f172a;      /* Navy Blue - Main brand color */
  --color-primary-light: #1e293b; /* Lighter Navy */
  --color-primary-dark: #020617;  /* Darker Navy */
  
  /* ─── Accent Colors ─── */
  --color-gold: #c5a059;          /* Muted Gold - Luxury accent */
  --color-gold-hover: #a88a45;    /* Darker Gold for hover */
  --color-gold-light: #d4b86a;    /* Lighter Gold */
  
  /* ─── Neutral Colors ─── */
  --color-slate: #64748b;         /* Slate Gray - Secondary text */
  --color-slate-light: #94a3b8;   /* Light Slate */
  --color-slate-dark: #475569;    /* Dark Slate */
  
  /* ─── Background Colors ─── */
  --color-white: #ffffff;
  --color-off-white: #f8fafc;     /* Off-white - Section backgrounds */
  --color-light: #f1f5f9;         /* Light gray backgrounds */
  
  /* ─── Typography ─── */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  /* ─── Font Sizes (Fluid Typography) ─── */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --fs-base: clamp(1rem, 0.925rem + 0.375vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
  --fs-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
  --fs-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
  --fs-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --fs-4xl: clamp(2.5rem, 1.75rem + 3.75vw, 4.5rem);
  
  /* ─── Spacing ─── */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* ─── Container & Layout ─── */
  --container-max: 1200px;
  --container-padding: clamp(1rem, 5vw, 2rem);
  --section-spacing: clamp(4rem, 10vw, 8rem);
  
  /* ─── Borders & Radius ─── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* ─── Shadows ─── */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  --shadow-gold: 0 4px 14px rgba(197, 160, 89, 0.25);
  
  /* ─── Transitions ─── */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* ─── Z-Index Scale ─── */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-preloader: 1000;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  CSS RESET & BASE STYLES                                                  ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--color-slate-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

/* ─── Typography Base ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); }

p {
  margin-bottom: var(--space-md);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Utility Classes ─── */
.text-gold {
  color: var(--color-gold);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  PRELOADER                                                                 ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  z-index: var(--z-preloader);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo .logo-bg {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw-logo 1.2s ease-out forwards;
}

.preloader-logo text {
  opacity: 0;
  animation: fade-in 0.6s ease-out 0.6s forwards;
}

@keyframes draw-logo {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  HEADER / NAVIGATION                                                       ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  transition: padding var(--transition-base);
}

.site-header.scrolled .nav-inner {
  padding: var(--space-md) 0;
}

/* ─── Brand / Logo ─── */
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: var(--z-modal);
}

.brand-logo {
  width: 48px;
  height: 48px;
  transition: transform var(--transition-base);
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-text {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.02em;
}

/* ─── Main Navigation ─── */
#main-nav {
  display: none;
}

#main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

#main-nav a {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: var(--space-xs) 0;
}

#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition-base);
}

#main-nav a:hover::after,
#main-nav a.active::after {
  width: 100%;
}

/* ─── Nav CTA Button ─── */
.nav-cta {
  display: none;
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background-color: var(--color-gold);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ─── Mobile Nav Toggle ─── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: var(--z-modal);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Desktop Navigation ─── */
@media (min-width: 992px) {
  #main-nav {
    display: block;
  }
  
  .nav-cta {
    display: block;
  }
  
  .nav-toggle {
    display: none;
  }
}

/* ─── Mobile Navigation Overlay ─── */
@media (max-width: 991px) {
  #main-nav {
    position: fixed;
    inset: 0;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
  }
  
  #main-nav.open {
    opacity: 1;
    visibility: visible;
  }
  
  #main-nav ul {
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
  }
  
  #main-nav a {
    font-size: var(--fs-xl);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
  }
  
  #main-nav.open a {
    opacity: 1;
    transform: translateY(0);
  }
  
  #main-nav.open li:nth-child(1) a { transition-delay: 0.1s; }
  #main-nav.open li:nth-child(2) a { transition-delay: 0.15s; }
  #main-nav.open li:nth-child(3) a { transition-delay: 0.2s; }
  #main-nav.open li:nth-child(4) a { transition-delay: 0.25s; }
  #main-nav.open li:nth-child(5) a { transition-delay: 0.3s; }
  #main-nav.open li:nth-child(6) a { transition-delay: 0.35s; }
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  BUTTONS                                                                   ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn svg {
  transition: transform var(--transition-base);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Gold Button (Primary CTA) */
.btn-gold {
  color: var(--color-white);
  background-color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Outline Button (Secondary) */
.btn-outline {
  color: var(--color-white);
  background-color: transparent;
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  color: var(--color-primary);
  background-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Full Width Button */
.btn-full {
  width: 100%;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  HERO SECTION                                                              ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--space-5xl) + 80px) 0 var(--space-4xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
  overflow: hidden;
}

/* Geometric Pattern Overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(30deg, var(--color-gold) 12%, transparent 12.5%, transparent 87%, var(--color-gold) 87.5%, var(--color-gold)),
    linear-gradient(150deg, var(--color-gold) 12%, transparent 12.5%, transparent 87%, var(--color-gold) 87.5%, var(--color-gold)),
    linear-gradient(30deg, var(--color-gold) 12%, transparent 12.5%, transparent 87%, var(--color-gold) 87.5%, var(--color-gold)),
    linear-gradient(150deg, var(--color-gold) 12%, transparent 12.5%, transparent 87%, var(--color-gold) 87.5%, var(--color-gold)),
    linear-gradient(60deg, rgba(197, 160, 89, 0.5) 25%, transparent 25.5%, transparent 75%, rgba(197, 160, 89, 0.5) 75%, rgba(197, 160, 89, 0.5)),
    linear-gradient(60deg, rgba(197, 160, 89, 0.5) 25%, transparent 25.5%, transparent 75%, rgba(197, 160, 89, 0.5) 75%, rgba(197, 160, 89, 0.5));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  opacity: 0.03;
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  position: relative;
  text-align: center;
  z-index: var(--z-base);
}

.hero .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-xl);
}

.hero h1 br {
  display: none;
}

.hero .lead {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  font-size: var(--fs-lg);
  color: var(--color-slate-light);
  line-height: 1.8;
}

.hero .sublead {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  font-size: var(--fs-base);
  font-style: italic;
  color: var(--color-slate);
  line-height: 1.8;
  opacity: 0.85;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 576px) {
  .hero h1 br {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-lg);
  }
}

/* Hero Stats */
.hero-stats {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-4xl);
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
}

.stat-label {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

@media (min-width: 768px) {
  .hero-stats {
    flex-direction: row;
    gap: var(--space-3xl);
    padding: var(--space-2xl) var(--space-3xl);
  }
  
  .stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-slate-light);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  SECTIONS - Base Styles                                                    ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.section {
  padding: var(--section-spacing) 0;
}

.section-light {
  background-color: var(--color-off-white);
}

.section-white {
  background-color: var(--color-white);
}

.section-dark {
  background-color: var(--color-primary);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-md);
}

.section-header h2 {
  margin-bottom: var(--space-lg);
}

.header-line {
  width: 60px;
  height: 3px;
  background-color: var(--color-gold);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  SERVICES SECTION                                                          ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.services-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.service-card {
  position: relative;
  background-color: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold);
  transition: stroke var(--transition-base);
}

.service-card:hover .service-icon {
  background-color: var(--color-gold);
}

.service-card:hover .service-icon svg {
  stroke: var(--color-white);
}

.service-number {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-light);
  transition: color var(--transition-base);
}

.service-card:hover .service-number {
  color: var(--color-gold);
}

.service-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

.service-card p {
  color: var(--color-slate);
  margin-bottom: var(--space-lg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-link svg {
  transition: transform var(--transition-base);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  ABOUT SECTION                                                             ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.about-layout {
  display: grid;
  gap: var(--space-3xl);
  align-items: start;
  margin-bottom: var(--space-4xl);
}

@media (min-width: 992px) {
  .about-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
  }
}

.about-content .eyebrow {
  margin-bottom: var(--space-md);
}

.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content .header-line {
  margin: 0 0 var(--space-2xl);
}

.about-text p {
  color: var(--color-slate);
  margin-bottom: var(--space-md);
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Misión y Visión Cards */
.about-mv {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mv-card {
  padding: var(--space-xl);
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-gold);
}

.mv-card-gold {
  background-color: var(--color-gold);
  border-left-color: var(--color-primary);
}

.mv-card h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.mv-card-gold h4 {
  color: var(--color-primary);
}

.mv-card p {
  font-size: var(--fs-sm);
  color: var(--color-slate);
  margin-bottom: 0;
  line-height: 1.7;
}

.mv-card-gold p {
  color: var(--color-primary-light);
}

/* About Visual */
.about-visual {
  position: relative;
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-frame {
  position: absolute;
  inset: 20px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-md);
  opacity: 0.5;
}

.image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: var(--space-xl);
  background-color: var(--color-gold);
  border-radius: var(--radius-md);
  text-align: center;
}

.accent-number {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1;
}

.accent-text {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-primary-light);
  text-align: center;
  line-height: 1.4;
  margin-top: var(--space-xs);
}

/* Valores Section */
.valores-section {
  text-align: center;
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--color-light);
}

.valores-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-3xl);
}

.valores-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 576px) {
  .valores-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .valores-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-2xl);
  }
}

.valor-item {
  text-align: center;
}

.valor-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-off-white);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.valor-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold);
  transition: stroke var(--transition-base);
}

.valor-item:hover .valor-icon {
  background-color: var(--color-gold);
  transform: translateY(-4px);
}

.valor-item:hover .valor-icon svg {
  stroke: var(--color-white);
}

.valor-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.valor-item p {
  font-size: var(--fs-sm);
  color: var(--color-slate);
  margin-bottom: 0;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  RECURSOS SECTION                                                          ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.recursos-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 576px) {
  .recursos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .recursos-grid {
    gap: var(--space-2xl);
  }
}

.recurso-card {
  background-color: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.recurso-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.recurso-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.recurso-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold);
  transition: stroke var(--transition-base);
}

.recurso-card:hover .recurso-icon {
  background-color: var(--color-gold);
}

.recurso-card:hover .recurso-icon svg {
  stroke: var(--color-white);
}

.recurso-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

.recurso-card p {
  color: var(--color-slate);
  margin-bottom: 0;
}

.recurso-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recurso-lista li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-slate);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.recurso-lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
}

.recurso-lista li:last-child {
  margin-bottom: 0;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  TEAM SECTION                                                              ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.team-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.team-card {
  text-align: center;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.team-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: var(--color-gold);
  opacity: 0.5;
}

.team-info {
  padding: var(--space-xl);
}

.team-info h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
}

.team-role {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.team-info p {
  font-size: var(--fs-sm);
  color: var(--color-slate);
  margin-bottom: 0;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  METRICS SECTION                                                           ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.metrics-section {
  padding: var(--space-4xl) 0;
}

.metrics-grid {
  display: grid;
  gap: var(--space-2xl);
  text-align: center;
}

@media (min-width: 576px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3xl);
  }
}

.metric-item {
  position: relative;
}

.metric-symbol {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
}

.metric-number {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  line-height: 1;
}

.metric-suffix {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
}

.metric-label {
  display: block;
  margin-top: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-slate-light);
  line-height: 1.5;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  TESTIMONIALS SECTION                                                      ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.testimonials-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.testimonial-card {
  position: relative;
  background-color: var(--color-off-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  margin-bottom: var(--space-lg);
}

.quote-icon {
  color: var(--color-gold);
  opacity: 0.3;
}

.testimonial-card blockquote {
  font-size: var(--fs-base);
  font-style: italic;
  color: var(--color-slate-dark);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  border-radius: 50%;
}

.author-info strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

.author-info span {
  font-size: var(--fs-xs);
  color: var(--color-slate);
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  CONTACT SECTION                                                           ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.contact-layout {
  display: grid;
  gap: var(--space-4xl);
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
  }
}

.contact-info .eyebrow {
  margin-bottom: var(--space-md);
}

.contact-info h2 {
  margin-bottom: var(--space-lg);
}

.contact-info .header-line {
  margin: 0 0 var(--space-2xl);
}

.contact-intro {
  color: var(--color-slate);
  margin-bottom: var(--space-2xl);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-off-white);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
}

.contact-icon-wa {
  background-color: #25D366;
}

.contact-icon-wa svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
  stroke: none;
}

.contact-item:hover .contact-icon {
  background-color: var(--color-gold);
}

.contact-item:hover .contact-icon svg {
  stroke: var(--color-white);
}

.contact-item:hover .contact-icon-wa {
  background-color: #128C7E;
}

.contact-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: 2px;
}

.contact-text span {
  font-size: var(--fs-sm);
  color: var(--color-slate);
}

/* Contact Form */
.contact-form {
  background-color: var(--color-off-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

/* Contact Map */
.contact-map {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.form-row {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-light);
  border-radius: var(--radius-sm);
  background-color: var(--color-off-white);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  FOOTER                                                                    ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.site-footer {
  background-color: var(--color-primary);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.footer-content .brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-content .brand-text {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
}

.footer-nav a {
  font-size: var(--fs-sm);
  color: var(--color-slate);
  transition: color var(--transition-base);
}

.footer-nav a:hover {
  color: var(--color-gold);
}

.copyright {
  font-size: var(--fs-sm);
  color: var(--color-slate);
  margin: 0;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  SCROLL TO TOP BUTTON                                                      ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.scroll-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gold);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  REVEAL ANIMATIONS                                                         ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

/* Base reveal class */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
}

/* Fade In */
.fade-in {
  opacity: 0;
}

.fade-in.visible {
  opacity: 1;
}

/* Fade Up */
.fade-up {
  transform: translateY(40px);
}

.fade-up.visible {
  transform: translateY(0);
}

/* Fade Down */
.fade-down {
  transform: translateY(-40px);
}

.fade-down.visible {
  transform: translateY(0);
}

/* Fade Left */
.fade-left {
  transform: translateX(40px);
}

.fade-left.visible {
  transform: translateX(0);
}

/* Fade Right */
.fade-right {
  transform: translateX(-40px);
}

.fade-right.visible {
  transform: translateX(0);
}

/* Scale X (for lines) */
.scale-x {
  transform: scaleX(0);
  transform-origin: left;
}

.scale-x.visible {
  transform: scaleX(1);
}

/* Scale Up */
.scale-up {
  transform: scale(0.9);
}

.scale-up.visible {
  transform: scale(1);
}

/* Delay modifiers */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║  RESPONSIVE ADJUSTMENTS                                                    ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

@media (max-width: 575px) {
  .hero {
    padding-top: calc(var(--space-4xl) + 60px);
  }
  
  .hero-stats {
    padding: var(--space-lg);
  }
  
  .service-card {
    padding: var(--space-lg);
  }
  
  .contact-form {
    padding: var(--space-lg);
  }
  
  .testimonial-card {
    padding: var(--space-lg);
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Print styles */
@media print {
  .site-header,
  .preloader,
  .scroll-top,
  .nav-toggle {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}
