/* =========================================
   SOLEMNITY GROUP — Premium Corporate Theme
   ========================================= */

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

/* CSS Variables */
:root {
  --olive: #6B732B;
  --olive-dark: #535a1f;
  --olive-light: #8a9436;
  --gold: #C89232;
  --gold-dark: #a6761f;
  --gold-light: #d4a84b;
  --cream: #F8F7F2;
  --charcoal: #1F1F1F;
  --beige: #EAE7DE;
  --white: #ffffff;
  --text-muted: #6b6b5f;
  --shadow: 0 4px 24px rgba(107,115,43,0.10);
  --shadow-lg: 0 8px 40px rgba(107,115,43,0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-muted); font-size: 1rem; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-alt { background: var(--beige); }
.section-dark { background: var(--olive); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--charcoal); margin-bottom: 14px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.02rem; line-height: 1.8; }
.section-header .gold-line {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px auto 0;
  border-radius: 2px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); border-color: var(--gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,146,50,0.35);
}
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white); color: var(--olive);
  transform: translateY(-2px);
}
.btn-olive {
  background: var(--olive); color: var(--white); border-color: var(--olive);
}
.btn-olive:hover {
  background: var(--olive-dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,115,43,0.3);
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff !important;
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(107,115,43,0.2);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(107,115,43,0.10);
}
.site-header.scrolled {
  background: #ffffff !important;
  box-shadow: 0 2px 20px rgba(107,115,43,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 56px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); letter-spacing: 1px; }
.nav-logo-text .tagline { font-size: 0.7rem; color: var(--gold); font-style: italic; letter-spacing: 0.5px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  padding: 8px 14px; border-radius: 6px;
  color: var(--charcoal); font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--olive); background: rgba(107,115,43,0.08);
}
.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--charcoal); 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; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(31,31,31,0.99); z-index: 999;
  flex-direction: column; padding: 20px 24px 28px;
  border-bottom: 2px solid var(--gold); box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem; font-weight: 500; transition: var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ===================== HERO V2 ===================== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #4a5220 0%, #3d4518 50%, #2f3512 100%);
  padding: 120px 0 40px;
  overflow: hidden;
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-v2-globe {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,146,50,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-v2-globe::before {
  content: '';
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(200,146,50,0.2);
  border-radius: 50%;
}

.hero-v2-globe::after {
  content: '';
  position: absolute;
  inset: 35%;
  border: 1px solid rgba(200,146,50,0.15);
  border-radius: 50%;
}

.hero-v2-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 2;
  min-height: 75vh;
  padding: 40px 0 20px;
}

/* Right Side - Woman Image */
.hero-v2-woman {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  min-height: 580px;
  margin-right: -20px;
  margin-bottom: -20px;
  padding-top: 20px;
}

.hero-v2-woman img {
  max-height: 600px;
  width: auto;
  max-width: 105%;
  object-fit: contain;
  margin-bottom: 0;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  position: relative;
  z-index: 5;
}

.hero-v2-image {
  display: none;
}

/* Left Content */
.hero-v2-content {
  color: #fff;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(200,146,50,0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero-v2-badge i {
  font-size: 0.7rem;
}

.hero-v2-content h1 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-v2-content h1 span {
  color: var(--gold);
}

.hero-v2-content h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 1px;
}

.hero-v2-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 420px;
}

.hero-v2-trust {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-v2-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-v2-trust span i {
  color: var(--gold);
  font-size: 0.9rem;
}

.hero-v2-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #1a1e07;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-v2-btn-primary:hover {
  background: #d4a03a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200,146,50,0.3);
}

.hero-v2-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-v2-btn-whatsapp:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}

.hero-v2-btn-whatsapp i {
  color: #25D366;
  font-size: 1.2rem;
}

/* Bottom Stats */
.hero-v2-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 0;
  padding: 20px 40px;
  background: rgba(15,17,6,0.55);
  border: 1px solid rgba(200,146,50,0.2);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 6;
}

.hero-v2-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-v2-stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(107,115,43,0.25);
  border: 1px solid rgba(200,146,50,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-v2-stat-icon i {
  color: var(--gold);
  font-size: 0.95rem;
}

.hero-v2-stat-info strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.1;
}

.hero-v2-stat-info span {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 30px 0 20px;
  }
  .hero-v2-content {
    text-align: center;
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-v2-content h1 {
    font-size: 2.2rem;
  }
  .hero-v2-content h1::after {
    margin: 12px auto 0;
  }
  .hero-v2-content p {
    max-width: 100%;
  }
  .hero-v2-trust {
    justify-content: center;
    gap: 16px;
  }
  .hero-v2-btns {
    justify-content: center;
    gap: 10px;
  }
  .hero-v2-woman {
    min-height: 350px;
    order: 2;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 0;
    padding-top: 0;
    align-items: flex-start;
  }
  .hero-v2-woman img {
    max-height: 380px;
  }
  .hero-v2-globe {
    width: 350px;
    height: 350px;
    opacity: 0.25;
  }
  .hero-v2-stats {
    gap: 40px;
    padding: 20px 30px;
    margin-top: 20px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .hero-v2 {
    padding: 90px 0 20px;
  }
  .hero-v2-inner {
    padding: 20px 0 15px;
    gap: 25px;
  }
  .hero-v2-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .hero-v2-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }
  .hero-v2-content p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .hero-v2-trust {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
  }
  .hero-v2-trust span {
    font-size: 0.8rem;
  }
  .hero-v2-btns {
    flex-direction: column;
    gap: 10px;
  }
  .hero-v2-btn-primary,
  .hero-v2-btn-whatsapp {
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  .hero-v2-woman {
    min-height: 300px;
  }
  .hero-v2-woman img {
    max-height: 320px;
  }
  .hero-v2-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 18px 20px;
    margin-top: 15px;
    border-radius: 12px;
  }
  .hero-v2-stat {
    gap: 8px;
  }
  .hero-v2-stat-icon {
    width: 36px;
    height: 36px;
  }
  .hero-v2-stat-icon i {
    font-size: 0.85rem;
  }
  .hero-v2-stat-info strong {
    font-size: 1.2rem;
  }
  .hero-v2-stat-info span {
    font-size: 0.7rem;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
  .hero-v2-content h1 {
    font-size: 1.6rem;
  }
  .hero-v2-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  .hero-v2-woman {
    min-height: 260px;
  }
  .hero-v2-woman img {
    max-height: 280px;
  }
  .hero-v2-stats {
    gap: 15px;
    padding: 15px;
  }
  .hero-v2-stat-icon {
    width: 32px;
    height: 32px;
  }
  .hero-v2-stat-info strong {
    font-size: 1.1rem;
  }
}

/* ===================== OLD HERO (deprecated) ===================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: #636b2f;
  overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236B732B' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.08);
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-particles span {
  position: absolute; display: block; border-radius: 50%;
  background: rgba(200,146,50,0.15); animation: particleFloat 8s infinite ease-in-out;
}
.hero-particles span:nth-child(1) { width: 6px; height: 6px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero-particles span:nth-child(2) { width: 4px; height: 4px; left: 25%; top: 70%; animation-delay: 1.5s; animation-duration: 9s; }
.hero-particles span:nth-child(3) { width: 8px; height: 8px; left: 60%; top: 15%; animation-delay: 3s; animation-duration: 6s; }
.hero-particles span:nth-child(4) { width: 5px; height: 5px; left: 80%; top: 60%; animation-delay: 0.5s; animation-duration: 8s; }
.hero-particles span:nth-child(5) { width: 3px; height: 3px; left: 45%; top: 85%; animation-delay: 2s; animation-duration: 10s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 0.9; }
}

/* Two-column inner layout */
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  min-height: calc(100vh - 80px - 100px);
  padding: 60px 0 40px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,146,50,0.12); border: 1px solid rgba(200,146,50,0.35);
  color: var(--gold); font-size: 0.82rem; font-weight: 600;
  padding: 7px 18px; border-radius: 30px; margin-bottom: 28px; letter-spacing: 0.8px;
  animation: fadeInDown 0.7s ease both;
}
.hero h1 {
  color: var(--white); margin-bottom: 22px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.72); font-size: 1.08rem; margin-bottom: 36px; max-width: 540px;
  line-height: 1.85; animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; animation: fadeInUp 0.8s ease 0.3s both; }

.btn-outline-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  transition: var(--transition); cursor: pointer;
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* Trust row */
.hero-trust { display: flex; align-items: center; gap: 16px; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-trust-avatars { display: flex; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.72rem; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.2);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #6B732B, #8a9436); }
.av2 { background: linear-gradient(135deg, #a6761f, #C89232); }
.av3 { background: linear-gradient(135deg, #535a1f, #6B732B); }
.av4 { background: rgba(255,255,255,0.15); font-size: 0.8rem; }
.hero-trust-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 3px; }
.hero-trust-text span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.hero-trust-text strong { color: var(--white); }

/* ── Right Visual Panel ── */
.hero-visual {
  position: relative; z-index: 2;
  height: 480px;
  animation: fadeInRight 0.9s ease 0.2s both;
}

/* Central card */
.hero-main-card {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(107,115,43,0.25), rgba(200,146,50,0.15));
  border: 1px solid rgba(200,146,50,0.3);
  backdrop-filter: blur(20px);
  border-radius: 24px; padding: 36px 32px;
  text-align: center; width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: cardFloat 4s ease-in-out infinite;
}
.hero-main-card-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white); margin: 0 auto 14px;
  box-shadow: 0 8px 24px rgba(107,115,43,0.5);
}
.hero-main-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.hero-main-card p { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin: 0; }
.hero-main-card-dots { display: flex; gap: 6px; justify-content: center; margin-top: 14px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.dot.active { background: var(--gold); width: 20px; border-radius: 4px; }

/* Floating service pills */
.hero-pill {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(15,17,6,0.85); border: 1px solid rgba(200,146,50,0.25);
  backdrop-filter: blur(16px); border-radius: 50px;
  padding: 10px 18px 10px 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  color: var(--white); font-size: 0.84rem; font-weight: 600;
  white-space: nowrap;
}
.pill-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--white); flex-shrink: 0;
}
.pill-1 { top: 5%; left: 0; animation: pillFloat1 5s ease-in-out infinite; }
.pill-2 { top: 28%; right: 0; animation: pillFloat2 6s ease-in-out infinite; }
.pill-3 { bottom: 28%; left: 0; animation: pillFloat1 7s ease-in-out infinite 1s; }
.pill-4 { bottom: 5%; right: 0; animation: pillFloat2 5s ease-in-out infinite 0.5s; }

/* Floating stat badges */
.hero-badge-float {
  position: absolute; text-align: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 16px; padding: 14px 20px;
  box-shadow: 0 8px 28px rgba(200,146,50,0.35);
}
.hero-badge-float strong { display: block; font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); line-height: 1; }
.hero-badge-float span { font-size: 0.72rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.badge-float-1 { top: 8%; right: 18%; animation: badgeFloat 4.5s ease-in-out infinite; }
.badge-float-2 { bottom: 8%; left: 18%; animation: badgeFloat 5.5s ease-in-out infinite 1s; }

/* Stats bar at bottom */
.hero-stats-bar {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,50,0.2);
  border-radius: var(--radius-lg); padding: 24px 32px;
  backdrop-filter: blur(12px);
  margin-top: 0; margin-bottom: 48px;
  animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-stat-item { text-align: center; padding: 0 32px; flex: 1; min-width: 100px; }
.hero-stat-item strong { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.hero-stat-item span { color: rgba(255,255,255,0.55); font-size: 0.8rem; letter-spacing: 0.3px; }
.hero-stat-divider { width: 1px; height: 44px; background: rgba(200,146,50,0.2); flex-shrink: 0; }

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes cardFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}
@keyframes pillFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pillFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.hero-image-side { display: none; }
.hero-globe-icon { display: none; }

/* ===================== ABOUT STRIP ===================== */
.about-strip { padding: 80px 0; background: var(--white); }
.about-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-strip-text .overline {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block;
}
.about-strip-text h2 { margin-bottom: 18px; }
.about-strip-text p { margin-bottom: 14px; line-height: 1.8; }
.about-strip-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-card {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  border-radius: var(--radius-lg); padding: 40px 36px;
  color: var(--white); text-align: center;
}
.about-card .globe-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 2rem; color: var(--gold);
}
.about-card h3 { color: var(--white); margin-bottom: 12px; }
.about-card p { color: rgba(255,255,255,0.8); }
.about-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.about-card-stat { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 14px 12px; }
.about-card-stat strong { display: block; font-size: 1.6rem; font-family: var(--font-heading); color: var(--gold); }
.about-card-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ===================== COUNTRIES SECTION ===================== */
.countries-section { background: var(--white); }
.countries-header { margin-bottom: 48px; }
.countries-header .overline {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px;
}
.countries-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; color: var(--charcoal); }
.countries-sub { color: var(--olive); display: block; }
.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.country-card {
  display: block; text-decoration: none; color: inherit;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  background: var(--white);
}
.country-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.country-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.country-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.country-card:hover .country-img-wrap img { transform: scale(1.06); }
.country-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(107,115,43,0.55) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 16px; opacity: 0; transition: var(--transition);
}
.country-overlay i {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.country-card:hover .country-overlay { opacity: 1; }
.country-label {
  padding: 14px 18px; display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.95rem; color: var(--charcoal);
  border-top: 1px solid rgba(107,115,43,0.08);
}
.country-flag-code { font-size: 1.3rem; line-height: 1; }
.countries-cta { text-align: center; margin-top: 40px; }

/* ===================== SERVICES GRID ===================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 26px; border: 1px solid rgba(107,115,43,0.1);
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--olive), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(107,115,43,0.12), rgba(200,146,50,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px; transition: var(--transition);
  color: var(--olive);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--olive), var(--gold-dark));
  color: var(--white);
}
.service-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 18px; line-height: 1.75; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--olive); font-weight: 600; font-size: 0.88rem;
  transition: var(--transition);
}
.service-link:hover { color: var(--gold); gap: 10px; }

/* ===================== WHY CHOOSE US ===================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-grid-4 { grid-template-columns: repeat(4, 1fr); }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 22px 20px; border: 1px solid rgba(107,115,43,0.1);
  transition: var(--transition); box-shadow: var(--shadow);
}
.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.why-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}
.why-item h4 { margin-bottom: 5px; font-size: 1rem; }
.why-item p { font-size: 0.88rem; line-height: 1.7; }

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 50%, #4a5020 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C89232' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid rgba(107,115,43,0.1);
  box-shadow: var(--shadow); transition: var(--transition); position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote-mark {
  font-size: 4rem; line-height: 1; color: var(--gold); opacity: 0.3;
  font-family: Georgia; position: absolute; top: 16px; left: 24px;
}
.testimonial-text { color: var(--charcoal); font-size: 0.94rem; line-height: 1.85; margin: 20px 0 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.95rem;
}
.author-name { font-weight: 600; font-size: 0.92rem; color: var(--charcoal); }
.author-role { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; letter-spacing: 2px; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(107,115,43,0.12); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; background: var(--white);
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--charcoal); text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--olive); }
.faq-question.open { color: var(--olive); }
.faq-icon { min-width: 24px; height: 24px; border-radius: 50%; background: var(--beige); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); color: var(--olive); }
.faq-question.open .faq-icon { background: var(--olive); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.95rem; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: linear-gradient(135deg, #1a1c0a 0%, #2a2f0d 50%, #1F1F1F 100%);
  padding: 130px 0 72px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236B732B' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center; align-items: center;
  margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===================== SERVICE DETAIL ===================== */
.service-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.detail-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; border: 1px solid rgba(107,115,43,0.1);
  box-shadow: var(--shadow); transition: var(--transition);
}
.detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(200,146,50,0.3); }
.detail-card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--olive), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white); margin-bottom: 16px;
}
.detail-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.detail-card p { font-size: 0.92rem; line-height: 1.75; }

/* ===================== BENEFITS LIST ===================== */
.benefits-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefit-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); padding: 14px 18px; border-radius: var(--radius);
  border: 1px solid rgba(107,115,43,0.1); box-shadow: var(--shadow);
  font-weight: 600; font-size: 0.88rem;
}
.benefit-check {
  width: 26px; height: 26px; min-width: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem;
}

/* ===================== DESTINATIONS ===================== */
.destinations-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.destination-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px 16px;
  text-align: center; border: 1px solid rgba(107,115,43,0.1);
  box-shadow: var(--shadow); transition: var(--transition); cursor: default;
}
.destination-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.destination-flag {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); margin: 0 auto 10px;
}
.destination-name { font-weight: 700; font-size: 0.92rem; color: var(--charcoal); }

/* ===================== ABOUT PAGE ===================== */
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid rgba(107,115,43,0.1); box-shadow: var(--shadow);
}
.mv-card.mission { background: var(--olive); color: var(--white); }
.mv-card.vision { background: var(--white); }
.mv-card .mv-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 18px;
}
.mv-card.vision .mv-icon {
  background: linear-gradient(135deg, rgba(107,115,43,0.12), rgba(200,146,50,0.12));
  color: var(--olive);
}
.mv-card h3 { margin-bottom: 14px; }
.mv-card.mission h3, .mv-card.mission p { color: var(--white); }
.mv-card.mission p { color: rgba(255,255,255,0.85); }
.mv-card.vision p { color: var(--text-muted); }

.team-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-top: 36px; }
.value-item { text-align: center; padding: 26px 18px; background: var(--white); border-radius: var(--radius); border: 1px solid rgba(107,115,43,0.1); box-shadow: var(--shadow); }
.value-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--olive), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white); margin: 0 auto 14px;
}
.value-item h4 { color: var(--olive); margin-bottom: 6px; }
.value-item p { font-size: 0.88rem; }

/* ===================== CONTACT PAGE ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  border-radius: var(--radius-lg); padding: 40px 32px; color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 6px; }
.contact-info-card > p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.12); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: var(--gold);
}
.contact-item-text strong { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item-text a, .contact-item-text span { color: var(--white); font-size: 0.95rem; }
.contact-social { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15); }
.contact-social p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 14px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition); font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); }

.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid rgba(107,115,43,0.1); box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 6px; }
.contact-form-card > p { margin-bottom: 24px; font-size: 0.92rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--beige); background: var(--cream);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--charcoal);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--olive); background: var(--white); box-shadow: 0 0 0 3px rgba(107,115,43,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; }

.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.93rem; font-weight: 500; }
.alert-success { background: rgba(107,115,43,0.1); color: var(--olive); border: 1px solid rgba(107,115,43,0.3); }
.alert-error { background: rgba(220,53,69,0.1); color: #dc3545; border: 1px solid rgba(220,53,69,0.3); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--charcoal); color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-col h4 { font-family: var(--font-heading); color: var(--white); margin-bottom: 16px; font-size: 1rem; letter-spacing: 0.3px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-contact li span:first-child { color: var(--gold); min-width: 16px; margin-top: 2px; }
.footer-contact li a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }
.footer-gold-bar { height: 3px; background: linear-gradient(90deg, var(--olive), var(--gold), var(--olive-light)); }

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--gold-dark));
  color: var(--white); font-size: 1.1rem; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(107,115,43,0.35);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(107,115,43,0.5); }

/* ===================== UTILITIES ===================== */
.text-gold { color: var(--gold); }
.text-olive { color: var(--olive); }
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .benefits-list { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .mission-vision-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Layout */
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 40px; }

  /* Nav */
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 68px; }
  .nav-logo img { height: 46px; }

  /* Mobile menu spacing */
  .mobile-menu { top: 68px; padding: 16px 20px 24px; }
  .mobile-menu a { padding: 12px 0; font-size: 0.97rem; }
  .mobile-menu .btn { margin-top: 14px; padding: 13px 20px; }

  /* Hero */
  .hero { min-height: auto; padding: 84px 0 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; min-height: auto; padding: 36px 0 0; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero-badge { margin: 0 auto 16px; font-size: 0.8rem; }
  .hero-content h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); margin-bottom: 14px; }
  .hero-content p { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn, .hero-btns .btn-outline-hero { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-trust { justify-content: center; margin-top: 20px; }

  /* Hero stats bar — scrollable row */
  .hero-stats-bar {
    overflow-x: auto; gap: 0;
    padding: 16px 20px; margin-bottom: 0;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-stats-bar::-webkit-scrollbar { display: none; }
  .hero-stat-item { padding: 0 20px; min-width: 100px; flex-shrink: 0; }
  .hero-stat-item strong { font-size: 1.5rem; }
  .hero-stat-divider { height: 28px; flex-shrink: 0; }

  /* Countries */
  .countries-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .countries-header h2 { font-size: 1.5rem; }
  .countries-cta { margin-top: 28px; }

  /* Grids */
  .why-grid { grid-template-columns: 1fr; }
  .why-grid-4 { grid-template-columns: 1fr 1fr; }
  .benefits-list { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services-grid-4 { grid-template-columns: 1fr 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* About strip */
  .about-strip { padding: 56px 0; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-card { padding: 28px 20px; }
  .about-card-stats { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }

  /* Cards */
  .service-card { padding: 24px 20px; }
  .why-item { padding: 18px 16px; }
  .testimonial-card { padding: 24px 20px; }
  .detail-card { padding: 22px 18px; }
  .mv-card { padding: 28px 22px; }

  /* Section header text */
  .section-header p { font-size: 0.95rem; }

  /* CTA */
  .cta-section { padding: 60px 0; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-card { padding: 28px 22px; }
  .contact-form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding: 48px 0 0; }

  /* Page hero */
  .page-hero { padding: 100px 0 52px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  /* Hero */
  .hero-content h1 { font-size: 1.65rem; }
  .hero-badge { font-size: 0.75rem; padding: 7px 14px; }

  /* Countries */
  .countries-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Grids */
  .why-grid-4 { grid-template-columns: 1fr; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card-stats { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Form */
  .contact-form-card { padding: 22px 16px; }
  .contact-info-card { padding: 24px 16px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; }

  /* Buttons */
  .btn { padding: 13px 22px; font-size: 0.9rem; }

  /* Cards */
  .service-card { padding: 20px 16px; }
  .why-item { padding: 16px 14px; gap: 12px; }
  .testimonial-card { padding: 20px 16px; }

  /* Scroll top */
  .scroll-top { bottom: 18px; right: 18px; width: 42px; height: 42px; }
}

/* ══════════════ FEATURED JOBS NEW ══════════════ */
.jobs-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.job-card-new {
  text-decoration: none;
  display: block;
}

.job-card-new-inner {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e8e8e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-card-new:hover .job-card-new-inner {
  border-color: var(--olive);
  box-shadow: 0 8px 24px rgba(107,115,43,0.12);
  transform: translateY(-4px);
}

.job-card-new-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.job-card-new-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--olive), #8a9432);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-card-new-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.job-card-new-tag {
  background: var(--gold);
  color: #1a1e07;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-card-new-body {
  flex: 1;
  margin-bottom: 20px;
}

.job-card-new-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.4;
}

.job-card-new-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-card-new-meta span {
  font-size: 0.8rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-card-new-meta span i {
  color: var(--olive);
  font-size: 0.75rem;
}

.job-card-new-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0e8;
}

.job-card-new-salary {
  font-size: 1rem;
  font-weight: 700;
  color: var(--olive);
}

.job-card-new-salary small {
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
}

.job-card-new-btn {
  background: var(--olive);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
}

.job-card-new-btn:hover {
  background: var(--olive-dark);
}

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

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

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

