/* =============================================
   UVA MARKETING — Custom Styles
   Bootstrap 5 + Custom Design System
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --navy:        #0D1B3E;
  --navy-mid:    #1E2D5A;
  --navy-light:  #253566;
  --lilac:       #9B7FD4;
  --lilac-dark:  #7A5BB5;
  --lilac-light: #D4BCFF;
  --vine:        #4ADE80;
  --vine-dark:   #22c55e;
  --burgundy:    #6B1F3A;
  --cream:       #F8F5F0;
  --white:       #ffffff;
  --gray-text:   #6B7280;
  --light-gray:  #F3F4F6;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display:'Josefin Sans', system-ui, sans-serif;

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:   0 2px 8px rgba(13,27,62,0.08);
  --shadow-md:   0 8px 32px rgba(13,27,62,0.12);
  --shadow-lg:   0 20px 60px rgba(13,27,62,0.18);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.7;
}
h1, h2, h3, h4, h5 { font-family: var(--font-serif); line-height: 1.15; }

/* ---- Utility Classes ---- */
.text-vine    { color: var(--vine) !important; }
.text-lilac   { color: var(--lilac) !important; }
.text-white-60 { color: rgba(255,255,255,0.65); }
.text-white-50 { color: rgba(255,255,255,0.5); }
.py-6 { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.z-2  { z-index: 2; }

/* ---- Section Backgrounds ---- */
.section-white  { background: var(--white); }
.section-navy   { background: var(--navy); }
.section-cream  { background: var(--cream); }

/* ---- Section Typography ---- */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lilac-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vine);
  flex-shrink: 0;
}
.section-eyebrow.justify-content-center::before { display: none; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-title em { color: var(--lilac-dark); font-style: italic; }
.section-sub {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 0.75rem;
}
.section-body {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.85;
}

/* =============================================
   NAVBAR
   ============================================= */
.uva-nav {
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(155,127,212,0.15);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  transition: var(--transition);
}
.uva-nav.scrolled {
  background: rgba(13,27,62,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.uva-logo { text-decoration: none; display: flex; align-items: center; }
.uva-logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition);
  filter: brightness(0) invert(1); /* Hace que el logo sea blanco para el fondo oscuro */
}
.uva-nav.scrolled .uva-logo-img {
  height: 40px;
}
.footer-logo {
  height: 40px;
}
@media (max-width: 767.98px) {
  .uva-logo-img { height: 38px; }
}
.uva-nav .nav-link {
  color: rgba(255,255,255,0.72) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.4rem 0 !important;
  position: relative;
  transition: color 0.2s;
}
.uva-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--vine);
  transition: width 0.25s;
}
.uva-nav .nav-link:hover { color: var(--vine) !important; }
.uva-nav .nav-link:hover::after { width: 100%; }
.btn-vine {
  background: var(--vine);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-vine:hover {
  background: var(--vine-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,222,128,0.3);
  color: var(--navy) !important;
}
.btn-vine.btn-lg { padding: 0.85rem 1.8rem; font-size: 0.95rem; }

/* =============================================
   HERO
   ============================================= */
.hero-section {
  min-height: 100vh;
  background: var(--navy);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(155,127,212,0.12) 0%, transparent 70%),
    radial-gradient(circle 400px at 10% 80%, rgba(74,222,128,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(155,127,212,0.15);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155,127,212,0.12);
  border: 1px solid rgba(155,127,212,0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  color: var(--lilac);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vine);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.7; }
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero-title em { color: var(--vine); font-style: italic; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
}
.btn-ghost-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost-link:hover { color: var(--white); }
.btn-ghost-link i { transition: transform 0.2s; }
.btn-ghost-link:hover i { transform: translateX(4px); }
.hero-trust { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.75rem; }
.trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.trust-badge:hover {
  background: rgba(155,127,212,0.15);
  border-color: rgba(155,127,212,0.35);
  color: var(--lilac-light);
}
/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  filter: brightness(0.85) saturate(1.1);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,0.35) 0%, rgba(155,127,212,0.1) 100%);
}
/* Floating stat cards */
.stat-card {
  position: absolute;
  background: rgba(13,27,62,0.85);
  border: 1px solid rgba(155,127,212,0.25);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  min-width: 130px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.stat-card-1 { bottom: 24px; left: -20px; }
.stat-card-2 { top: 24px; right: -16px; }
.stat-card-3 { bottom: 80px; right: -16px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lilac-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
  line-height: 1.4;
}
.reveal-up {
  animation: reveal-up-anim 0.7s ease forwards;
}
@keyframes reveal-up-anim {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   PROBLEMA / PAIN CARDS
   ============================================= */
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid #F0EBF8;
  border-radius: 12px;
  background: #FDFBFF;
  transition: var(--transition);
}
.pain-card:hover {
  border-color: var(--lilac);
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}
.pain-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(107,31,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--burgundy);
}
/* Solution Card */
.solution-card {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.solution-card-inner { padding: 2.5rem; }
.solution-card .section-eyebrow { color: var(--vine); }
.solution-card .section-eyebrow::before { background: var(--lilac); }
.solution-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.solution-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.solution-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--vine);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--navy);
  font-weight: 700;
}
.solution-img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  opacity: 0.85;
}

/* =============================================
   MÉTRICAS
   ============================================= */
.metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(155,127,212,0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: var(--transition);
  height: 100%;
}
.metric-card:hover {
  background: rgba(155,127,212,0.1);
  border-color: rgba(155,127,212,0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(155,127,212,0.15);
}
.metric-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--lilac-light);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.metric-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  line-height: 1.5;
  display: block;
}
.metric-source {
  font-size: 0.7rem;
  color: rgba(155,127,212,0.55);
  margin-top: 0.75rem;
  display: block;
}

/* =============================================
   SERVICIOS
   ============================================= */
.service-card {
  background: var(--white);
  border: 1px solid #EEE9F8;
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: var(--lilac);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(74,222,128,0.15), rgba(74,222,128,0.05));
  border: 1px solid rgba(74,222,128,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--vine-dark);
  flex-shrink: 0;
}
.service-icon-social {
  background: linear-gradient(135deg, rgba(155,127,212,0.15), rgba(155,127,212,0.05));
  border-color: rgba(155,127,212,0.25);
  color: var(--lilac-dark);
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.service-platforms {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin: 0;
}
.service-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.service-list li {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  color: #374151;
  font-weight: 500;
}
.service-result {
  background: linear-gradient(135deg, rgba(74,222,128,0.08), rgba(74,222,128,0.03));
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
}
.result-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.result-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vine-dark);
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.9;
}

/* =============================================
   PROCESO
   ============================================= */
.process-card {
  position: relative;
  padding: 1.5rem 1rem;
}
.process-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lilac);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(155,127,212,0.1);
  border: 2px solid rgba(155,127,212,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: var(--transition);
}
.process-card:hover .process-num {
  background: var(--lilac-dark);
  color: var(--white);
  border-color: var(--lilac-dark);
  transform: scale(1.08);
}
.process-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.process-desc {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* =============================================
   POR QUÉ UVA
   ============================================= */
.why-card {
  background: var(--white);
  border: 1px solid #EEE9F8;
  border-radius: 16px;
  padding: 1.75rem;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--lilac);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(155,127,212,0.15), rgba(155,127,212,0.05));
  border: 1px solid rgba(155,127,212,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--lilac-dark);
  margin-bottom: 1rem;
}
.why-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.why-desc {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   TESTIMONIOS
   ============================================= */
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(155,127,212,0.2);
  border-radius: 18px;
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(155,127,212,0.08);
  border-color: rgba(155,127,212,0.4);
  transform: translateY(-4px);
}
.stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
  border: none;
  padding: 0; margin: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lilac-dark), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(155,127,212,0.3);
}

/* =============================================
   NOSOTROS / ABOUT
   ============================================= */
.about-img-grid {
  position: relative;
  padding-bottom: 2rem;
}
.about-img-main {
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; left: -20px;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: 20px; right: -10px;
  background: var(--white);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(155,127,212,0.2);
}
.about-stat-card {
  background: var(--white);
  border: 1px solid #EEE9F8;
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.about-stat-card:hover {
  border-color: var(--lilac);
  box-shadow: var(--shadow-sm);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lilac-dark);
  display: block;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--gray-text);
  margin-top: 0.3rem;
  display: block;
  font-weight: 500;
}

/* =============================================
   CONTACTO
   ============================================= */
.contact-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(74,222,128,0.15), rgba(74,222,128,0.05));
  border: 1px solid rgba(74,222,128,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--vine-dark);
  flex-shrink: 0;
}
.contact-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.9;
}
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid #EEE9F8;
}
.form-card-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}
.uva-input {
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
  background: #FAFAFA;
  color: var(--navy);
}
.uva-input:focus {
  border-color: var(--lilac);
  box-shadow: 0 0 0 3px rgba(155,127,212,0.15);
  background: var(--white);
  outline: none;
}
.btn-uva-cta {
  background: var(--vine);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}
.btn-uva-cta:hover {
  background: var(--vine-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
}
.btn-uva-cta:active {
  transform: translateY(0);
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-success {
  text-align: center;
  padding: 2rem;
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 14px;
}

/* =============================================
   FOOTER
   ============================================= */
.uva-footer {
  background: var(--navy);
  border-top: 1px solid rgba(155,127,212,0.12);
}
.footer-brand-tex.uva-footer {
  background-color: #0a192f; /* Azul muy oscuro similar a la imagen */
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  font-weight: 400;
}
.footer-heading-v2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}
.footer-info-list-v2 {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}
.text-vine-v2 {
  color: #2ecc71; /* Verde brillante similar a la imagen */
}
.social-btn-v2 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-btn-v2:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: scale(1.1);
}
.footer-link-v2 {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-link-v2:hover {
  color: var(--white);
}
.footer-copy-v2 {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.gap-x-4 { column-gap: 1.5rem; }
.gap-y-2 { row-gap: 0.5rem; }

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
  .hero-section { padding-top: 100px; }
  .hero-main-img { height: 320px; }
  .stat-card-1 { left: 0; }
  .stat-card-2 { right: 0; }
  .stat-card-3 { right: 0; }
  .about-img-secondary { display: none; }
  .about-img-main { height: 300px; }
}
@media (max-width: 767.98px) {
  .py-6 { padding-top: 4rem; padding-bottom: 4rem; }
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 1.9rem; }
  .stat-card { display: none; }
  .hero-main-img { height: 260px; }
  .contact-form-card { padding: 1.75rem; }
  .metric-num { font-size: 2.2rem; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .btn-vine.btn-lg { width: 100%; text-align: center; }
  .btn-ghost-link { width: 100%; justify-content: center; }
}
