/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --black:        #1A1A1A;
  --black-soft:   #222222;
  --black-card:   #252525;
  --gold:         #D4AF37;
  --gold-light:   #E8C84A;
  --gold-dark:    #B8960C;
  --red:          #C0392B;
  --red-hover:    #A93226;
  --white:        #FFFFFF;
  --offwhite:     #FDF8F0;
  --offwhite-2:   #F5F0E8;
  --text-body:    #4A4A4A;
  --text-muted:   #888888;
  --text-white:   rgba(255,255,255,0.85);
  --border-subtle: rgba(212,175,55,0.15);
  --border-gold:   rgba(212,175,55,0.4);
  --text-premium: #C5C5C5;

  --grad-gold:    linear-gradient(135deg, #D4AF37 0%, #F0CD55 50%, #B8960C 100%);
  --grad-dark:    linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  --grad-hero:    linear-gradient(135deg, #111111 0%, #1A1A1A 40%, #0D0D0D 100%);
  --grad-card:    linear-gradient(145deg, #252525 0%, #2A2A2A 100%);
  --grad-section: linear-gradient(180deg, #FDF8F0 0%, #FFFFFF 100%);

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.16);
  --shadow-gold:  0 8px 32px rgba(212,175,55,0.25);
  --shadow-red:   0 8px 32px rgba(192,57,43,0.35);
  --shadow-card:  0 4px 20px rgba(0,0,0,0.4);

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --radius-full:  9999px;

  --transition:   all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --font-heading: 'Playfair Display', serif;
  --font-body:    'Montserrat', sans-serif;

  --nav-height:   85px;
  --section-pad:  clamp(60px, 10vw, 120px);
}

/* ---- BASE RESET ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 800; letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.5px; color: var(--white); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 600; font-family: var(--font-body); }

/* Section-aware heading colors */
.section-dark h2,
.page-hero h2          { color: var(--white); }
.section-offwhite h2   { color: var(--black); }

/* Base paragraph — dark text by default (light/white backgrounds) */
p { color: var(--text-body); margin-bottom: 1rem; }

/* Dark sections override: light text */
.section-dark p,
.hero p,
.page-hero p,
.footer p { color: rgba(255,255,255,0.7); }

/* Offwhite / light sections: clearly dark text */
.section-offwhite p,
.section-light p  { color: var(--text-body); }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Wide container for Navbar to allow corner logo alignment */
.navbar .container {
  max-width: 100%;
  padding: 0 40px;
}

/* ---- UTILITY ---- */
.text-center   { text-align: center; }
.text-gold     { color: var(--gold); }
.text-red      { color: var(--red); }
.text-muted    { color: var(--text-muted); }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 6px 14px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  background: rgba(212,175,55,0.06);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

/* Red CTA */
.btn-cta {
  background: var(--red);
  margin-top: 9px;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}
.btn-cta:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* Gold Primary */
.btn-gold {
  background: var(--grad-gold);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}
.btn-cta:hover, .btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(212,175,55,0.4);
  filter: brightness(1.1);
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: 0.6s;
  pointer-events: none;
}

.btn-cta:hover::after {
  left: 120%;
}

/* Outline Gold */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: #1ebe5b;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* Dark outline */
.btn-dark-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-dark-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  height: 65px;
  background: rgba(8, 8, 8, 0.98);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  border-bottom-color: rgba(212,175,55,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Logo — image style */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo .logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  background: white;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.navbar.scrolled .nav-logo .logo-img {
  height: 38px;
  padding: 3px 8px;
}
.nav-logo:hover .logo-img {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(212,175,55,0.25);
}
/* Footer logo image - also white badge for consistency */
.footer-logo-img {
  height: 140px;
  width: auto;
  display: block;
  object-fit: contain;
  background: white;
  
  border-radius: var(--radius-md);
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Sidebar logo image */
.sidebar-logo .logo-img {
  height: 45px;
  padding: 4px 10px;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  margin-right: 15px;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  white-space: nowrap;
  position: relative;
}

.nav-links a i,
.nav-links a svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-links a:hover i,
.nav-links a:hover svg {
  opacity: 1;
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.nav-links a.active i,
.nav-links a.active svg {
  opacity: 1;
  color: var(--gold);
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   MOBILE SIDEBAR DRAWER
   ============================================ */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--black-soft);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-logo .logo-main { font-size: 1.1rem; }

.sidebar-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}
.sidebar-close:hover { background: var(--red); }

.sidebar-nav {
  flex: 1;
  padding: 16px 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.06);
  border-left-color: var(--gold);
}
.sidebar-nav a i { width: 18px; color: var(--gold); opacity: 0.7; }

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2s ease-in-out infinite;
}
.floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
  color: white;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ============================================
   PAGE WRAPPER (offset for fixed navbar)
   ============================================ */
.page-content { padding-top: var(--nav-height); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 92vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(192,57,43,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(212,175,55,0.08) 0%, transparent 50%);
  filter: blur(60px);
  animation: meshMove 20s ease-in-out infinite alternate;
}

@keyframes meshMove {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(2%, 2%); }
}

/* Gold geometric line accent */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge span.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }

.hero-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  animation: fadeSlideRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-brand::after {
  content: '';
  height: 1px;
  width: 50px;
  background: var(--grad-gold);
  opacity: 0.6;
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--black);
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item i {
  font-size: 1.2rem;
  color: var(--gold);
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.1);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p   { color: var(--text-white); }

.section-offwhite { background: var(--offwhite); }
.section-offwhite-2 { background: var(--offwhite-2); }

.section-header {
  margin-bottom: 56px;
}
.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Gold gradient divider line */
.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 3px;
  margin: 16px auto 20px;
}
.divider-gold-left {
  margin-left: 0;
}

/* ============================================
   CARDS SYSTEM
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.cards-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

/* ------- COUNTRY CARD (dark) ------- */
.country-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.country-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.country-card:hover::before { transform: scaleX(1); }

.country-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(212,175,55,0.1);
}

.country-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.country-flag {
  font-size: 2.4rem;
  line-height: 1;
}

.country-card-header h3 {
  color: var(--white);
  font-size: 1.25rem;
}
.country-card-header .subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.license-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.benefits-list li i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ------- SERVICE CARD (light) ------- */
.service-card {
  background: var(--white);
  border: 1px solid #F0EBE0;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.3);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(212,175,55,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--gold);
}
.service-icon-wrap i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap i { color: var(--black); }

.service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212,175,55,0.07);
  line-height: 1;
  user-select: none;
}

.service-card h3 { margin-bottom: 12px; }

.service-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-list li i {
  color: var(--red);
  font-size: 0.7rem;
}

/* ------- STAT CARD ------- */
.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(212,175,55,0.05);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.stat-card .stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* ------- VALUE CARD ------- */
/* Value Card Refinement */
.value-card {
  background: #ffffff;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  padding: 45px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212,175,55,0.12);
}

.value-card .icon-svg {
  background: var(--grad-gold);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--black);
  box-shadow: 0 8px 20px rgba(212,175,55,0.25);
}

.value-card h4 { 
  color: var(--black); 
  margin-bottom: 12px; 
  font-weight: 700;
}

.value-card p { 
  font-size: 0.95rem; 
  color: #555; 
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS / STEPS
   ============================================ */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

/* Vertical connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}

.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-item:hover .step-num {
  background: var(--gold);
  color: var(--black);
}

.step-body {
  padding-top: 12px;
}
.step-body h4 {
  color: var(--black);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Dark variant */
.section-dark .step-body h4 { color: var(--white); }
.section-dark .steps-grid::before { background: linear-gradient(to bottom, var(--gold), transparent); }

/* ============================================
   APPLICATION FORM
   ============================================ */
.apply-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #F0EBE0;
}

.apply-form-wrap .form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.apply-form-wrap .form-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E8E0D0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  background: #FAFAF8;
  transition: var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-control::placeholder { color: #BBB; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-control.error { border-color: var(--red); }

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-box {
  background: var(--black);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: var(--white);
}

.contact-info-box h2 { color: var(--gold); margin-bottom: 8px; }
.contact-info-box > p { color: rgba(255,255,255,0.9); margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--gold); }

.contact-item h4 { color: var(--white); font-size: 0.85rem; margin-bottom: 4px; }
.contact-item a,
.contact-item p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }

.wa-cta-box {
  margin-top: 32px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  text-align: center;
}
.wa-cta-box p { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-bottom: 12px; }

/* ============================================
   SECTION: HERO PAGE HEADER
   ============================================ */
.page-hero {
  background: var(--black);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.07) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
}

.page-hero h1 {
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold); opacity: 0.7; transition: var(--transition); }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb i { font-size: 0.6rem; }

/* ============================================
   SPLIT SECTION
   ============================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

.split-content .section-label { margin-bottom: 12px; }
.split-content h2 { margin-bottom: 16px; }
.split-content p  { margin-bottom: 20px; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.check-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* Dark variant */
.section-dark .check-list li { color: rgba(255,255,255,0.75); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111111;
  color: var(--white);
  position: relative;
}

.footer-top-border {
  height: 3px;
  background: var(--grad-gold);
}

.footer-body {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-brand .footer-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: show all if JS didn't load */
.no-js .fade-up { opacity: 1; transform: none; }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  /* Navbar tablet fix */
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-layout.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; --nav-height: 70px; }

  /* Navbar */
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 72px 0; }
  .hero-stats { gap: 24px; }
  .hero-stat .num { font-size: 1.5rem; }

  /* Trust */
  .trust-items { gap: 20px; }
  .trust-divider { display: none; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }

  /* Form */
  .apply-form-wrap { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }

  /* Steps */
  .steps-grid::before { display: none; }

  /* Section header */
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 48px; }
  .btn { padding: 12px 20px; font-size: 0.85rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { justify-content: center; }
  .hero h1 { font-size: 2rem; }
}

/* ============================================
   NEW ENHANCEMENTS & UTILITIES
   ============================================ */

/* Section Spacing */
.section-xl { padding: calc(var(--section-pad) * 1.5) 0; }
.section-bg-image {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

/* 1. STATS SECTION (Animated Counters) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-box:hover::before { opacity: 1; }

.stat-box:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212,175,55,0.1);
}

.stat-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  transition: var(--transition);
}

.stat-box:hover .stat-icon-wrap {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1) rotate(5deg);
}

.stat-box .count {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-box .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}

/* Chart Card (Taxi page) */
.chart-card {
  background: #ffffff;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chart-header {
  margin-bottom: 20px;
}

.chart-header h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* 2. TESTIMONIALS SECTION */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid #F0EBE0;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: rgba(212,175,55,0.1);
}

.testimonial-card .feedback {
  font-size: 1rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-user .info h4 {
  font-size: 0.95rem;
  margin: 0;
  color: var(--black);
}

.testimonial-user .info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 3. DESTINATION VISUAL CARDS (Upgraded) */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.destination-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition-slow);
}

.destination-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-card), 0 0 30px rgba(212,175,55,0.1);
}

.destination-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.destination-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.destination-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.badge-gold {
  background: var(--grad-gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.badge-demand {
  background: rgba(192, 57, 43, 0.9);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.destination-body {
  padding: 30px;
}

.destination-body h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.destination-body .salary {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.destination-highlights {
  list-style: none;
  margin-bottom: 25px;
}

.destination-highlights li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.destination-highlights li i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* 4. CHART SECTION */
.chart-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid #F0EBE0;
  box-shadow: var(--shadow-md);
}

.chart-header {
  margin-bottom: 30px;
  text-align: center;
}

.chart-header h4 {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 10px;
}

.chart-container {
  height: 350px;
  width: 100%;
  position: relative;
}

/* 5. LOGO ROW (Partners/Credibility) */
.logos-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
  filter: grayscale(1);
  transition: var(--transition);
}

.logos-row:hover {
  opacity: 1;
  filter: grayscale(0);
}

.logo-item {
  height: 40px;
}

.logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
