﻿/*
Theme Name:  Notaria Publica Global
Theme URI:   https://www.notariapublicaglobal.com
Description: Tema profesional para Notaria Publica Global. Servicios notariales para la comunidad latina en Nueva York.
Author:      Notaria Publica Global
Author URI:  https://www.notariapublicaglobal.com
Version:     1.1.0
Text Domain: notaria-global
Tags:        legal, professional, spanish, notary
*/
/* ===================================================
   NOTARÍA PÚBLICA GLOBAL — styles.css  (v2 redesign)
   Colores: #0D2B4E (navy) · #C9A227 (gold)
=================================================== */

/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

/* ── DESIGN TOKENS ── */
:root {
  --navy:        #0D2B4E;
  --navy-dark:   #081D38;
  --navy-mid:    #1A4A7A;
  --navy-light:  #2563A8;
  --gold:        #C9A227;
  --gold-dark:   #A8861E;
  --gold-light:  #F5D87C;
  --gold-bg:     #FEF9EC;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --text:        #1E293B;
  --success:     #10B981;
  --error:       #EF4444;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 8px rgba(13,43,78,.08), 0 1px 3px rgba(13,43,78,.05);
  --shadow-md: 0 4px 20px rgba(13,43,78,.10), 0 2px 8px rgba(13,43,78,.06);
  --shadow-lg: 0 8px 32px rgba(13,43,78,.14), 0 4px 12px rgba(13,43,78,.08);
  --shadow-xl: 0 20px 60px rgba(13,43,78,.20), 0 8px 24px rgba(13,43,78,.12);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --trans-fast: 0.15s ease;
  --trans:      0.25s ease;
  --trans-slow: 0.4s cubic-bezier(0.4,0,0.2,1);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --section-py: clamp(4rem, 8vw, 6rem);

  /* Legacy aliases (keep for compatibility) */
  --navy2:  #081D38;
  --gold2:  #A8861E;
  --gray:   #F8FAFC;
  --gray2:  #E2E8F0;
  --gray3:  #64748B;
  --dark:   #081D38;
  --shadow: var(--shadow-md);
  --shadow2: var(--shadow-xl);
  --radius2: var(--radius-lg);
  --trans-legacy: all .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── UTILITIES ── */
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.bg-navy     { background: var(--navy); }
.bg-gold     { background: var(--gold); }
.bg-gray     { background: var(--off-white); }
.text-center { text-align: center; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: .5rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-family: var(--font-body);
  font-weight: 400;
}
.section-header { text-align: center; margin-bottom: 2rem; }
.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: .75rem auto 1rem;
  border-radius: 2px;
}

.section-padding { padding: var(--section-py) 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.bg-navy-section {
  background: var(--navy);
  padding: 80px 0;
}
.bg-navy-section h2 { color: var(--white); }
.bg-navy-section p  { color: rgba(255,255,255,.75); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .2s;
}
.btn:active::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-green {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-green:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media(max-width:600px) {
  .btn-lg { padding: 14px 24px; font-size: .97rem; }
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
#navbar.scrolled {
  background: rgba(8,29,56,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.nav-logo .logo-text { color: var(--white); }
.nav-logo .logo-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.2;
}
.nav-logo .logo-text span {
  font-size: .7rem;
  letter-spacing: .08em;
  opacity: .8;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
  transition: var(--trans);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,.08);
}
.nav-cta {
  margin-left: 8px;
  padding: 8px 18px;
  font-size: .9rem;
  white-space: nowrap;
  line-height: 1;
  transform: translateY(-5px);
}
.nav-cta:hover { transform: translateY(-8px) !important; }

/* Native <details>/<summary> dropdown — bulletproof */
details.nav-dropdown { display: inline-block; position: relative; }
.nav-dd-summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  font-weight: 500;
  padding: 10px 14px;
  line-height: 1;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--trans);
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  white-space: nowrap;
}
.nav-dd-summary::-webkit-details-marker { display: none; }
.nav-dd-summary:hover { color: var(--gold); background: rgba(255,255,255,.08); }
.nav-dd-summary i { font-size: .65rem; opacity: .75; transition: transform .3s; }
details.nav-dropdown:hover > .nav-dd-summary i,
details.nav-dropdown[open] > .nav-dd-summary i { transform: rotate(180deg); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 10000;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV — Full-screen overlay ── */
@media(max-width:900px) {
  #navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    min-height: 100%;
    z-index: 9999;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 72px 20px 32px;
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .nav-links.open {
    display: flex;
    animation: navFadeIn .25s ease;
  }
  @keyframes navFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .nav-links > a {
    font-size: 1.2rem;
    padding: 13px 24px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
  }
  .nav-links > a:hover { background: rgba(255,255,255,.08); }
  .nav-cta {
    margin: 6px 0 0;
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 14px;
    min-height: 50px;
    box-sizing: border-box;
    transform: none;
  }
  .nav-cta:hover { transform: none !important; }

  /* Dropdown wrapper */
  details.nav-dropdown {
    width: 100%;
    display: block;
    margin: 2px 0;
  }
  .nav-dd-summary {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 50px;
    padding: 14px 24px;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255,255,255,.88);
    border-radius: var(--radius);
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    list-style: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-dd-summary i { font-size: .85rem; opacity: .85; transition: transform .3s; pointer-events: none; }
  .nav-dd-summary:hover, .nav-dd-summary:active { background: rgba(255,255,255,.08); }
  details.nav-dropdown[open] > .nav-dd-summary {
    background: rgba(255,255,255,.1);
    color: var(--gold);
  }
  details.nav-dropdown[open] > .nav-dd-summary i { transform: rotate(180deg); }

  /* Submenu */
  .nav-dropdown-menu {
    display: none;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(13,43,78,.6) !important;
    margin: 2px 0 6px !important;
    border-radius: var(--radius-sm) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    width: 100% !important;
    padding: 6px 0 !important;
    animation: none !important;
  }
  details.nav-dropdown[open] > .nav-dropdown-menu { display: block !important; }
  details.nav-dropdown:hover > .nav-dropdown-menu { display: none; }
  details.nav-dropdown[open] > .nav-dropdown-menu { display: block !important; }
  .nav-dropdown-menu a {
    color: var(--white) !important;
    padding: 12px 20px !important;
    font-size: .98rem !important;
    min-height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    background: transparent !important;
    border-radius: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .nav-dropdown-menu a i { color: var(--gold); width: 18px; text-align: center; }
  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:active {
    background: rgba(255,255,255,.12) !important;
    color: var(--gold) !important;
  }
}

/* ── NAV DROPDOWN (desktop submenu) ── */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 260px;
  padding: 8px;
  z-index: 1100;
  animation: dropdownFade .2s ease;
}
@keyframes dropdownFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
details.nav-dropdown:hover > .nav-dropdown-menu,
details.nav-dropdown[open] > .nav-dropdown-menu {
  display: block !important;
}
details.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}
details.nav-dropdown:hover::after { display: block; }
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm) !important;
  color: var(--white) !important;
  font-size: .9rem !important;
  transition: var(--trans);
  background: transparent !important;
  width: 100% !important;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,.1) !important;
  color: var(--gold) !important;
  padding-left: 18px !important;
}
.nav-dropdown-menu a i {
  color: var(--gold);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
/* Dot pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
/* Radial glow top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,162,39,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,.18);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 2.25rem;
  max-width: 580px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-img-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 40px;
}
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 340px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}
.hero-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(201,162,39,.4);
}
.hero-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .5rem; }
.hero-card p  { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1rem; }
.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.6rem; color: var(--gold); font-weight: 700; font-family: var(--font-heading); }
.stat span   { font-size: .75rem; color: rgba(255,255,255,.65); display: block; }
.hero-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media(max-width:900px) {
  .hero-layout { flex-direction: column; }
  .hero-img-wrap { padding-left: 0; justify-content: center; width: 100%; }
  .hero-card { max-width: 100%; }
}

/* ── TRUST BAND ── */
.trust-band {
  background: linear-gradient(135deg, #B8911A 0%, #C9A227 45%, #D4AE35 100%);
  padding: 2.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-dark);
}
.trust-item i {
  width: 48px; height: 48px;
  background: rgba(8,29,56,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: .95rem; font-weight: 700; color: var(--navy-dark); }
.trust-item span   { font-size: .8rem; color: rgba(8,29,56,.65); }
.trust-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(8,29,56,.14);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--navy-dark);
  flex-shrink: 0;
}

/* ── SERVICES SECTION ── */
.services-section { padding: var(--section-py) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--trans-slow);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
/* Top accent bar */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-slow);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: var(--trans);
  box-shadow: 0 4px 12px rgba(13,43,78,.25);
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(13,43,78,.35);
}
.service-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}
.service-card .btn { font-size: .82rem; padding: 9px 18px; }

/* ── WHY US ── */
.why-section {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, #060F1E 0%, #081D38 40%, #0D2B4E 70%, #0F3460 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,.6); }
.why-section .text-gold { color: var(--gold); }
.geo-section .text-gold { color: var(--navy); }
.why-section .divider { background: var(--gold); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  counter-reset: why-counter;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--trans-slow);
  position: relative;
  overflow: hidden;
  counter-increment: why-counter;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.why-card::before {
  content: counter(why-counter, decimal-leading-zero);
  position: absolute; top: 12px; right: 16px;
  font-size: 3.5rem; font-weight: 900; opacity: .06;
  color: var(--white); font-family: var(--font-heading); line-height: 1;
}
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,162,39,.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.why-icon {
  width: 72px; height: 72px;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  transition: var(--trans);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: scale(1.08) rotate(3deg);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: .6rem; font-family: var(--font-body); font-weight: 700; color: var(--white); }
.why-card p  { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── ABOUT PREVIEW ── */
.about-preview { padding: var(--section-py) 0; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-box {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  max-height: 480px;
}
.about-img-box i { font-size: 6rem; color: rgba(255,255,255,.15); }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.about-badge strong { display: block; font-size: 1.4rem; font-weight: 700; }
.about-badge span   { font-size: .8rem; font-weight: 600; }
.about-content { padding-bottom: 20px; }
.about-content .badge-tag {
  display: inline-block;
  background: rgba(201,162,39,.12);
  color: var(--gold-dark);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-content h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
.about-content p  { color: var(--gray-500); font-size: .97rem; margin-bottom: 1rem; }
.about-list { margin: 1.25rem 0; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .93rem;
  margin-bottom: .6rem;
  color: var(--text);
}
.about-list li i { color: var(--gold); font-size: .95rem; }

@media(max-width:800px) {
  .about-layout { grid-template-columns: 1fr !important; gap: 40px !important; }
  .about-badge { bottom: -10px; right: 10px; }
}

/* ── TESTIMONIALS ── */
.testimonials { padding: var(--section-py) 0; background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  transition: var(--trans-slow);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 10px; right: 20px;
  font-size: 8rem; line-height: 1;
  color: var(--gold); opacity: .07;
  font-family: Georgia, serif; font-weight: 900;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-card p {
  font-size: .97rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: 1rem; flex-shrink: 0;
  border: 2px solid var(--gold);
}
.author-info strong { display: block; font-size: .95rem; font-weight: 700; color: var(--text); }
.author-info span   { font-size: .8rem; color: var(--gray-500); }

/* ── FAQ ACCORDION ── */
.faq-section { padding: var(--section-py) 0; }
.faq-section.compact { padding: 40px 0; }
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--trans);
}
.accordion-item.open { box-shadow: var(--shadow-md); }
.accordion-item.open .accordion-header { background: var(--gold-bg); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: var(--trans);
  gap: 12px;
}
.accordion-header:hover { background: var(--off-white); }
.accordion-header h4 {
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}
.accordion-icon {
  width: 28px; height: 28px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--navy);
  transition: var(--trans);
  flex-shrink: 0;
}
.accordion-item.open .accordion-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(180deg);
}
/* Smooth accordion animation */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4,0,0.2,1), padding .3s ease;
  padding: 0 24px;
  background: var(--white);
}
.accordion-item.open .accordion-body {
  max-height: 500px;
  padding: 0 24px 20px;
}
.accordion-body p {
  font-size: .93rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* FAQ categories */
.faq-category { margin-bottom: 2.5rem; }
.faq-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-body);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-mid) 100%);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,162,39,.12), transparent);
  pointer-events: none;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: clamp(3rem,6vw,5rem) 0 0;
  color: rgba(255,255,255,.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo .logo-text strong,
.footer-brand .nav-logo .logo-text span {
  color: rgba(255,255,255,.9);
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  margin: 1.25rem 0;
  opacity: .7;
}
.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 6px;
  transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: .65rem; color: var(--gold); opacity: .6; }
.social-icons { display: flex; gap: 10px; margin-top: 1rem; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: var(--trans);
  border: 1px solid rgba(255,255,255,.1);
}
.social-icons a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
}
.contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.contact-item a { color: rgba(255,255,255,.88); transition: var(--trans); }
.contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.25rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.footer-bottom a { color: var(--gold); text-decoration: underline; }
.footer-bottom a:hover { text-decoration: underline; }

@media(max-width:900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width:600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid  { grid-template-columns: 1fr; }
  .trust-grid  { grid-template-columns: 1fr 1fr; }
  .mission-vision { grid-template-columns: 1fr !important; }
  .page-hero-cta { flex-direction: column; align-items: stretch; }
  .page-hero-cta .btn, .page-hero-cta button { width: 100%; justify-content: center; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .hero-stats { justify-content: center; }
  .section-header { padding: 0 4px; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: clamp(100px, 15vw, 160px) 0 clamp(50px, 8vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.02) 40px,
    rgba(255,255,255,.02) 80px
  );
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border: 2px solid rgba(201,162,39,.2);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: .75rem;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.page-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
}
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
  cursor: pointer;
  text-decoration: none;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  position: relative;
}
.breadcrumb a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: var(--trans);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: .65rem; color: rgba(255,255,255,.3); }
.breadcrumb span { font-size: .85rem; color: var(--gold); font-weight: 600; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 80px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-box h2 { font-size: 1.6rem; margin-bottom: .5rem; }
.contact-form-box > p { color: var(--gray-500); font-size: .95rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 20px; }
.contact-form-group { margin-bottom: 20px; }
.form-group label,
.contact-form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea,
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group .btn { width: 100%; justify-content: center; }
.contact-info-box { position: sticky; top: 100px; }
.contact-info-box h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.contact-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.contact-card i { font-size: 1.4rem; color: var(--gold); margin-bottom: .75rem; }
.contact-card h4 { font-size: 1rem; margin-bottom: .4rem; font-family: var(--font-body); font-weight: 600; }
.contact-card p,
.contact-card a { font-size: .92rem; color: var(--gray-500); }
.contact-card a:hover { color: var(--gold); }
.whatsapp-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--trans);
  margin-bottom: 20px;
}
.whatsapp-big:hover { background: #20ba58; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.whatsapp-big i { font-size: 1.5rem; }
.map-placeholder {
  background: var(--gray-200);
  border-radius: var(--radius);
  height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  color: var(--gray-500);
  font-size: .95rem;
  margin-top: 16px;
}
.map-placeholder i { font-size: 2.5rem; color: var(--navy); }
@media(max-width:800px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-box { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
}

/* ── BLOG ── */
.blog-section { padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-slow);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img i { font-size: 3rem; color: rgba(255,255,255,.2); }
.blog-card img { width: 100%; height: 210px; object-fit: cover; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-category {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold-dark);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.blog-cat {
  background: rgba(13,43,78,.08);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blog-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: .78rem; color: var(--gray-400);
  margin-bottom: .75rem;
}
.blog-meta i { color: var(--gold); }
.blog-date { font-size: .8rem; color: var(--gray-500); }
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}
.blog-card p { font-size: .88rem; color: var(--gray-500); margin-bottom: 1.25rem; flex: 1; }
.blog-link,
.blog-read-more {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}
.blog-link:hover,
.blog-read-more:hover { color: var(--gold); gap: 10px; }

/* ── ABOUT PAGE ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--trans);
}
.value-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
}
.value-card:hover h4,
.value-card:hover p { color: var(--white); }
.value-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: .75rem; }
.value-card h4 {
  font-size: 1rem;
  margin-bottom: .4rem;
  font-family: var(--font-body);
  font-weight: 600;
  transition: var(--trans);
  color: var(--text);
}
.value-card p { font-size: .85rem; color: var(--gray-500); transition: var(--trans); }

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 3rem 0;
}
.mv-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(201,162,39,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.mv-card h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 1rem; }
.mv-card p  { color: rgba(255,255,255,.82); font-size: .97rem; line-height: 1.75; }
@media(max-width:700px) { .mission-vision { grid-template-columns: 1fr; } }

.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}
.country-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: .9rem;
  font-weight: 500;
  transition: var(--trans);
}
.country-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.country-tag i { color: var(--gold); font-size: .85rem; }

/* ── SERVICES PAGE categories ── */
.services-page-section { padding: var(--section-py) 0; }
.services-page-section.alt { background: var(--off-white); }
.services-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--navy);
  margin-bottom: .5rem;
}
.services-category-title i {
  width: 44px; height: 44px;
  background: var(--gold-bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.services-category-sub { color: var(--gray-500); font-size: .97rem; margin-bottom: 2rem; font-family: var(--font-body); }

/* ── PROCESO/STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: steps;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: var(--trans);
  counter-increment: steps;
}
.step-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
}
.step-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.step-card p  { font-size: .88rem; color: var(--gray-500); }

/* ── GEO SECTION ── */
.geo-section { padding: var(--section-py) 0; background: var(--off-white); }
.geo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}
.geo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--trans);
  cursor: default;
}
.geo-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.geo-card i { color: var(--gold); font-size: 1.4rem; margin-bottom: 8px; }
.geo-card h4 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .2rem;
  color: var(--text);
  transition: var(--trans);
}
.geo-card span { display: block; font-size: .78rem; color: var(--gray-400); transition: var(--trans); }

/* ── COUNTRIES BAND ── */
.countries-band {
  background: var(--navy);
  padding: clamp(3rem,6vw,5rem) 0;
}
.countries-band h2 { color: var(--white); text-align: center; margin-bottom: .5rem; }
.countries-band .divider { margin: .75rem auto 1.5rem; }
.countries-band p { color: rgba(255,255,255,.72); text-align: center; margin-bottom: 2rem; }
.countries-flex { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: .85rem;
  font-weight: 500;
  transition: var(--trans);
}
.country-chip:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.country-chip i { color: var(--gold); font-size: .8rem; }
.country-chip:hover i { color: var(--navy); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 990;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
@media(max-width:768px) { .whatsapp-float { bottom: 90px; right: 18px; } }
.whatsapp-float a.float-btn,
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--trans);
  position: relative;
}
.whatsapp-float a.float-btn:hover,
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: pulse-wa 2.5s ease infinite;
}
@keyframes pulse-wa {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* Legacy pulse alias */
@keyframes pulse {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
.float-tooltip {
  position: absolute;
  right: 70px; top: 50%;
  transform: translateY(-50%);
  background: var(--navy-dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  font-weight: 500;
}
.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-dark);
}
.whatsapp-float:hover .float-tooltip { opacity: 1; }

/* ── ANIMATIONS — Scroll fade with stagger ── */
.fade-in, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s cubic-bezier(0.4,0,0.2,1);
  transition-delay: calc(var(--delay, 0) * 1ms);
}
.fade-in       { transform: translateY(28px); }
.fade-in-left  { transform: translateX(-32px); }
.fade-in-right { transform: translateX(32px); }
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0,0);
}

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 28px; left: 24px;
  z-index: 990;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(13,43,78,.85);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: .9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--trans);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
#scrollTop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover { background: var(--gold); color: var(--navy); }

/* ── MISC ── */
.badge-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.objetivos-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}
.objetivo-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
}
.objetivo-item i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.objetivo-item p { font-size: .92rem; color: var(--text); line-height: 1.6; }

/* Radial glow corner on service cards */
.service-card .service-glow {
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(201,162,39,.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
  transition: var(--trans-slow);
}
.service-card:hover .service-glow {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(201,162,39,.18) 0%, transparent 70%);
  top: -40px; right: -40px;
}

/* ── EYEBROW LABELS ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: .75rem;
  font-family: var(--font-body);
}
.eyebrow { color: var(--navy); }
.eyebrow i { font-size: .6rem; }
.eyebrow-dark { color: var(--navy-dark); }
.why-section .eyebrow, .page-hero .eyebrow, .hero .eyebrow, .cta-band .eyebrow { color: var(--gold-light); }

/* ── STAT BLOCK ── */
.stat-block {
  text-align: center;
  padding: 20px 16px;
}
.stat-number {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
}
.stat-plus { font-size: .55em; vertical-align: super; }
.stat-label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  font-family: var(--font-body);
}

/* ── CERT BADGE ── */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.25);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 1.5rem;
}
.cert-icon {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.2rem; flex-shrink: 0;
}
.cert-text strong { display: block; font-size: .9rem; color: var(--white); font-weight: 700; }
.cert-text span   { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ── SECTION DIVIDER WAVE ── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ── HERO PATTERN ── */
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── ABOUT IMG DECORATIONS ── */
.about-img-deco {
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: .2;
  pointer-events: none;
}

/* ── SECTION STATS ROW ── */
.stats-row {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.stats-row .stat-block {
  flex: 1;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stats-row .stat-block:last-child { border-right: none; }
@media(max-width:600px) {
  .stats-row { flex-wrap: wrap; }
  .stats-row .stat-block { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ════════════════════════════════════════════
   BOOKING MODAL
════════════════════════════════════════════ */
.booking-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
}
.booking-modal.open { display: flex; }
.booking-overlay {
  position: absolute; inset: 0;
  background: rgba(13,43,78,.65); backdrop-filter: blur(4px);
}
.booking-container {
  position: relative; z-index: 1;
  background: #fff; border-radius: 20px;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 48px); overflow-y: auto;
  box-shadow: 0 20px 60px rgba(13,43,78,.25);
  animation: bookingSlideIn .3s ease;
}
@keyframes bookingSlideIn {
  from { opacity:0; transform: translateY(30px) scale(.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.booking-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: #f0f2f5; cursor: pointer;
  font-size: 1.2rem; color: #555; display: flex;
  align-items: center; justify-content: center;
  transition: all .2s;
}
.booking-close:hover { background: #e0e2e6; }
.booking-header { padding: 28px 28px 0; }
.booking-header h2 { font-size: 1.5rem; color: #0D2B4E; margin-bottom: 4px; font-family: 'Playfair Display', serif; }
.booking-header p { color: #6b7280; font-size: .9rem; }

/* Progress */
.booking-progress {
  display: flex; gap: 0; padding: 20px 28px;
  border-bottom: 1px solid #e8eaf0;
}
.progress-step {
  flex: 1; display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: #9ca3af; font-weight: 500;
  position: relative;
}
.progress-step::after {
  content: ''; flex: 1; height: 2px;
  background: #e8eaf0; margin: 0 6px;
}
.progress-step:last-child::after { display: none; }
.progress-step span {
  width: 26px; height: 26px; border-radius: 50%;
  background: #e8eaf0; color: #9ca3af;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.progress-step.active span { background: #C9A227; color: #fff; }
.progress-step.active { color: #0D2B4E; }
.progress-step.done span { background: #10B981; color: #fff; }

/* Body */
.booking-body { padding: 24px 28px 28px; }

/* Form fields */
.booking-field { margin-bottom: 18px; }
.booking-field label {
  display: block; font-size: .875rem; font-weight: 600;
  color: #1a1a2e; margin-bottom: 6px;
}
.booking-field label span.req { color: #C9A227; margin-left: 2px; }
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%; padding: 11px 14px; border: 2px solid #e8eaf0;
  border-radius: 10px; font-family: 'Inter', sans-serif;
  font-size: .95rem; color: #1a1a2e; outline: none;
  transition: border-color .2s; background: #fff;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus { border-color: #C9A227; }
.booking-field input.error,
.booking-field select.error { border-color: #EF4444; }
.booking-field .field-error {
  font-size: .8rem; color: #EF4444; margin-top: 4px; display: none;
}
.booking-field.has-error .field-error { display: block; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.booking-field.shake input,
.booking-field.shake select,
.booking-field.shake { animation: shake .3s ease; }

/* Time slots */
.time-slots-group { margin-bottom: 12px; }
.time-slots-group h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: #9ca3af; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.time-slots-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.time-slot {
  padding: 8px 14px; border-radius: 8px;
  border: 2px solid #e8eaf0; background: #fff;
  font-size: .875rem; font-weight: 500; cursor: pointer;
  color: #1a1a2e; transition: all .2s;
}
.time-slot:hover { border-color: #C9A227; color: #C9A227; }
.time-slot.selected { border-color: #0D2B4E; background: #0D2B4E; color: #fff; }
.time-slot.unavailable { opacity: .4; cursor: not-allowed; pointer-events: none; }
.time-slots-error { font-size: .8rem; color: #EF4444; margin-top: 6px; display: none; }
.time-slots-error.show { display: block; }

/* Summary card */
.booking-summary {
  background: #F4F7FA; border-radius: 14px; padding: 20px;
  margin-bottom: 20px;
}
.booking-summary-row {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 6px 0; border-bottom: 1px solid #e8eaf0;
  font-size: .9rem;
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-row .s-icon { font-size: 1rem; flex-shrink: 0; width: 20px; }
.booking-summary-row .s-label { color: #6b7280; font-size: .82rem; min-width: 70px; }
.booking-summary-row .s-val { font-weight: 600; color: #1a1a2e; }

/* Nav buttons */
.booking-nav { display: flex; gap: 12px; margin-top: 4px; }
.booking-nav .btn-back {
  flex: 0 0 auto; padding: 12px 20px; border-radius: 10px;
  border: 2px solid #e8eaf0; background: none; cursor: pointer;
  color: #6b7280; font-size: .9rem; font-weight: 600; transition: all .2s;
}
.booking-nav .btn-back:hover { border-color: #0D2B4E; color: #0D2B4E; }
.booking-nav .btn-next,
.booking-nav .btn-confirm {
  flex: 1; padding: 13px; border-radius: 10px;
  border: none; background: #0D2B4E; color: #fff;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all .2s; display: flex; align-items: center;
  justify-content: center; gap: 8px;
}
.booking-nav .btn-confirm { background: #10B981; }
.booking-nav .btn-next:hover { background: #1A4A7A; }
.booking-nav .btn-confirm:hover { background: #059669; }

/* ════════════════════════════════════════════
   STICKY MOBILE CTA BAR
════════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #0D2B4E; padding: 10px 16px 14px;
  grid-template-columns: 1fr;
  gap: 10px; box-shadow: 0 -4px 20px rgba(13,43,78,.2);
}
.mobile-cta-bar button {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px; border-radius: 10px;
  font-weight: 700; font-size: .95rem; color: #0D2B4E;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  background: #C9A227; width: 100%;
}
@media(max-width:768px) {
  .mobile-cta-bar { display: grid; }
  body { padding-bottom: 72px; }
}

/* ════════════════════════════════════════════
   BOOKING BUTTON in service cards
════════════════════════════════════════════ */
.btn-booking {
  width: 100%; margin-top: 12px; padding: 10px 16px;
  background: #0D2B4E; color: #fff; border: none; border-radius: 8px;
  font-size: .875rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .2s; font-family: 'Inter', sans-serif;
}
.btn-booking:hover { background: #1A4A7A; }

/* ══════════════════════════════════════════════
   MOBILE FIXES — comprehensive responsive patch
══════════════════════════════════════════════ */
@media(max-width:480px) {
  /* Nav */
  .nav-links a { font-size: 1.15rem; padding: 12px 20px; }
  .nav-dropdown-menu a { font-size: 1rem; }

  /* Page hero */
  .page-hero { padding: 90px 0 50px; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .page-hero p { font-size: .93rem; }

  /* Section headings */
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* Cards */
  .service-card { padding: 24px 18px; }
  .why-card { padding: 24px 18px; }
  .testimonial-card { padding: 24px 18px; }
  .step-card { padding: 28px 18px 20px; }

  /* about-layout: force single column on smallest screens too */
  .about-layout { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Stats row */
  .stats-row { flex-direction: column; }
  .stats-row .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 12px 0; flex: unset; }
  .stats-row .stat-block:last-child { border-bottom: none; }

  /* Geo grid */
  .geo-grid { grid-template-columns: 1fr 1fr; }

  /* Trust grid — single column, stacked layout */
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-item {
    padding: 12px 14px;
    background: rgba(8,29,56,.06);
    border-radius: 10px;
  }
  .trust-item strong { font-size: 1rem; }
  .trust-item span { font-size: .85rem; }
  .trust-icon-wrap { width: 42px; height: 42px; font-size: 1.2rem; }

  /* Blog */
  .blog-card-img { height: 160px; }

  /* Buttons */
  .btn-lg { padding: 13px 22px; font-size: .95rem; }
  .btn-group { gap: 10px; }

  /* Footer */
  .footer-bottom span { font-size: .78rem; }

  /* Section padding */
  :root { --section-py: clamp(3rem, 7vw, 5rem); }
}

/* ══════════════════════════════════════════════
   WORDPRESS BLOG STYLES
══════════════════════════════════════════════ */

/* Blog card placeholder (sin imagen destacada) */
.blog-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.blog-card-placeholder i {
  font-size: 3rem;
  color: rgba(255,255,255,.2);
}

/* Post content typography */
.post-content { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.post-content h2 { font-family: var(--font-heading); color: var(--navy); margin: 2.5rem 0 1rem; font-size: clamp(1.4rem,3vw,1.9rem); }
.post-content h3 { color: var(--navy); margin: 2rem 0 .75rem; font-size: 1.25rem; }
.post-content p  { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content li { margin-bottom: .5rem; }
.post-content strong { color: var(--navy); }
.post-content a  { color: var(--gold-dark); text-decoration: underline; }
.post-content a:hover { color: var(--navy); }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--off-white);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--gray-500);
}
.post-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-md);
}
.post-content table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0;
  font-size: .93rem;
}
.post-content th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; }
.post-content td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); }
.post-content tr:nth-child(even) td { background: var(--off-white); }

/* WP Pagination */
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--gray-200);
  color: var(--navy); font-weight: 600; font-size: .9rem;
  text-decoration: none; transition: var(--trans);
}
.page-numbers:hover, .page-numbers.current {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.page-numbers.prev, .page-numbers.next { font-size: .75rem; }
ul.page-numbers { list-style: none; display: flex; gap: 6px; padding: 0; margin: 0; }
ul.page-numbers li { display: inline; }

/* ── HERO CARD NAME (a11y: h2 heading) ── */
h2.hero-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 .5rem;
}
