/* ============================================================
   SWIFT TRIP HOLIDAYS — PREMIUM STYLESHEET
   Logo Colors: Navy #1B3A6B | Orange #F7941D | Dark #0D1F3C
   ============================================================ */

/* --- Google Fonts Import --- */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;600;700;800&display=swap");

/* ============================================================
   CSS VARIABLES (LOGO COLOR SYSTEM)
   ============================================================ */
:root {
  /* Brand Colors — extracted directly from logo */
  --primary: #1b3a6b; /* Deep navy — S letter, globe */
  --primary-dark: #0d1f3c; /* Darker navy — deepest shadows */
  --primary-light: #2a5298; /* Lighter navy — hover states */
  --secondary: #f7941d; /* Vibrant orange — "Trip" text, globe base */
  --secondary-dark: #d4780a; /* Darker orange — pressed states */
  --secondary-light: #ffb347; /* Light orange — glows */
  --accent: #ff6b35; /* Warm red-orange — CTAs */

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8faff;
  --light-bg: #eef2fb;
  --mid-gray: #8a9bbe;
  --dark-text: #0d1f3c;
  --body-text: #374771;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #1b3a6b 0%, #2a5298 100%);
  --grad-orange: linear-gradient(135deg, #f7941d 0%, #ff6b35 100%);
  --grad-dark: linear-gradient(135deg, #0d1f3c 0%, #1b3a6b 100%);
  --grad-hero: linear-gradient(135deg, #0d1f3c 0%, #1b3a6b 50%, #0d2a4a 100%);
  --grad-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );

  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-sub: "Plus Jakarta Sans", sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container: 1200px;

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-med: 0.4s ease;
  --trans-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 4px 15px rgba(13, 31, 60, 0.15);
  --shadow-md: 0 8px 30px rgba(13, 31, 60, 0.2);
  --shadow-lg: 0 20px 60px rgba(13, 31, 60, 0.3);
  --shadow-orange: 0 8px 30px rgba(247, 148, 29, 0.4);
  --shadow-glow: 0 0 40px rgba(247, 148, 29, 0.3);
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --white: #0d1f3c;
  --off-white: #111f3a;
  --light-bg: #0a1628;
  --dark-text: #eef2fb;
  --body-text: #a8bfdf;
  --glass-bg: rgba(11, 23, 50, 0.8);
  --glass-border: rgba(247, 148, 29, 0.2);
}

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

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

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

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ============================================================
   PRELOADER / INTRO
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#preloader #particles-preload {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.preloader-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid rgba(247, 148, 29, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(247, 148, 29, 0.2);
  animation: preloaderRing 2s ease-in-out infinite 0.3s;
}

.preloader-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(247, 148, 29, 0.1);
  animation: preloaderRing 2s ease-in-out infinite 0.6s;
}

.preloader-logo-wrap img {
  width: 90px;
  height: auto;
  object-fit: contain;
}

.preloader-logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  color: rgb(19, 19, 90);
}

.preloader-logo-text span {
  color: rgb(19, 19, 90);
}

.preloader-sub {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
}

.preloader-progress-wrap {
  width: 280px;
}

.preloader-progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.preloader-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-orange);
  border-radius: 10px;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(247, 148, 29, 0.8);
}

.preloader-percent {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(19, 14, 63, 0.5);
  text-align: right;
}

@keyframes preloaderPulse {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(247, 148, 29, 0.3);
  }
  50% {
    box-shadow: 0 0 60px rgba(247, 148, 29, 0.6);
  }
}

@keyframes preloaderRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.2;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 18px 0;
  transition: all var(--trans-med);
}

.navbar.scrolled {
  background: rgba(13, 31, 60, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(247, 148, 29, 0.2);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.nav-logo-text .brand span {
  color: var(--secondary);
}

.nav-logo-text .tagline {
  font-family: var(--font-sub);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--trans-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: right var(--trans-med);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

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

.btn-apply {
  background: var(--grad-orange);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--trans-med);
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(247, 148, 29, 0.6);
}

.dark-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: all var(--trans-fast);
  backdrop-filter: blur(10px);
}

.dark-toggle:hover {
  background: rgba(247, 148, 29, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans-med);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 8999;
  padding: 100px 40px 40px;
  transition: right var(--trans-slow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid rgba(247, 148, 29, 0.2);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--trans-fast);
}

.mobile-nav a:hover {
  color: var(--secondary);
}

.mobile-nav .btn-apply {
  display: block;
  text-align: center;
  margin-top: 24px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 8998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-med);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   REUSABLE COMPONENTS
   ============================================================ */

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section */
section {
  padding: var(--section-pad) 0;
}

/* Section Label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

/* Section Title */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--secondary);
}

.section-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--body-text);
  max-width: 620px;
  line-height: 1.8;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-orange);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--trans-med);
  box-shadow: var(--shadow-orange);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(247, 148, 29, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--trans-med);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-primary);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--trans-med);
  box-shadow: var(--shadow-md);
}

.btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background-color: var(--secondary-light);
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all var(--trans-med);
}

.glass-card:hover {
  border-color: rgba(247, 148, 29, 0.4);
  box-shadow:
    0 20px 60px rgba(13, 31, 60, 0.2),
    0 0 30px rgba(247, 148, 29, 0.1);
  transform: translateY(-6px);
}

/* Image with overlay */
.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.img-wrap:hover img {
  transform: scale(1.06);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-orange {
  background: rgba(247, 148, 29, 0.15);
  color: var(--secondary);
  border: 1px solid rgba(247, 148, 29, 0.3);
}
.badge-navy {
  background: rgba(27, 58, 107, 0.15);
  color: var(--primary);
  border: 1px solid rgba(27, 58, 107, 0.3);
}

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

#particles-hero {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(247, 148, 29, 0.08) 0%,
    transparent 60%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 148, 29, 0.12);
  border: 1px solid rgba(247, 148, 29, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero-badge i {
  font-size: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-title .highlight {
  color: var(--secondary);
  position: relative;
}

.hero-typed-wrap {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--secondary-light);
  margin-bottom: 28px;
  min-height: 60px;
}

.typed-cursor {
  color: var(--secondary);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-item .num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
}

.hero-trust-item .lbl {
  font-family: var(--font-sub);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Right */
.hero-right {
  position: relative;
}

.hero-card-main {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.hero-card-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: rgba(13, 31, 60, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 148, 29, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
}

.hero-float-1 {
  bottom: 24px;
  left: -30px;
}

.hero-float-2 {
  top: 30px;
  right: -30px;
}

.hero-float-card .float-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.hero-float-card .float-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.hero-float-card .float-sub {
  font-family: var(--font-sub);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-sub);
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-hint i {
  font-size: 18px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--grad-orange);
  padding: 0;
  overflow: hidden;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  max-width: 100%;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--trans-fast);
}

.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .stat-label {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* ============================================================
   COUNTRIES SECTION
   ============================================================ */
.countries-section {
  background: var(--off-white);
}

[data-theme="dark"] .countries-section {
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-label,
.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.country-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-med);
  cursor: pointer;
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.country-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.country-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.country-card:hover .country-img img {
  transform: scale(1.08);
}

.country-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 28px;
  line-height: 1;
}

.country-body {
  padding: 20px;
}

.country-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.country-processing {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 13px;
  color: var(--body-text);
  margin-bottom: 14px;
}

.country-processing i {
  color: var(--secondary);
}

.country-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.country-tag {
  background: var(--light-bg);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-family: var(--font-sub);
  font-weight: 600;
  color: var(--primary);
}

[data-theme="dark"] .country-tag {
  background: rgba(27, 58, 107, 0.3);
  color: var(--secondary-light);
}

.country-btn {
  width: 100%;
  padding: 11px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: all var(--trans-fast);
}

.country-btn:hover {
  background: var(--grad-orange);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(247, 148, 29, 0.08) 0%,
    transparent 70%
  );
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.process-card {
  padding: 36px 30px;
  border-radius: 20px;
  background: var(--secondary-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--trans-med);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--secondary);
  transition: height var(--trans-med);
}

.process-card:hover {
  border-color: rgba(247, 148, 29, 0.3);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
}

.process-card:hover::before {
  height: 100%;
}

.process-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--secondary-light);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--trans-med);
}

.process-card:hover .process-num {
  color: rgba(247, 148, 29, 0.25);
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(247, 148, 29, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-light);
  margin-bottom: 12px;
}

.process-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
}

.why-img-main {
  border-radius: 24px;
  overflow: hidden;
  height: 580px;
}

.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-float-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--grad-orange);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-orange);
}

.why-float-badge .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
}

.why-float-badge .lbl {
  font-family: var(--font-sub);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(247, 148, 29, 0.1);
  border: 1px solid rgba(247, 148, 29, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--secondary);
  flex-shrink: 0;
  transition: all var(--trans-med);
}

.why-item:hover .why-icon {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1);
}

.why-text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.why-text p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--grad-dark);
  overflow: hidden;
}

.swiper-testimonials {
  padding-bottom: 50px !important;
  padding-top: 10px !important;
}

.testimonial-card {
  padding: 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--trans-med);
}

.testimonial-card:hover {
  border-color: rgba(247, 148, 29, 0.3);
  transform: translateY(-4px);
}

.t-stars {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.t-quote {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.t-quote::before {
  content: '"';
  font-size: 40px;
  color: var(--secondary);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary);
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.t-role {
  font-family: var(--font-sub);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
}
.swiper-pagination-bullet-active {
  background: var(--secondary) !important;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section {
  background: var(--off-white);
}

[data-theme="dark"] .timeline-section {
  background: var(--light-bg);
}

.timeline-wrap {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}

.timeline-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 50px;
}

.timeline-item:nth-child(odd) .tl-content {
  grid-column: 1;
  text-align: right;
}
.timeline-item:nth-child(odd) .tl-dot {
  grid-column: 2;
}
.timeline-item:nth-child(odd) .tl-spacer {
  grid-column: 3;
}

.timeline-item:nth-child(even) .tl-spacer {
  grid-column: 1;
}
.timeline-item:nth-child(even) .tl-dot {
  grid-column: 2;
}
.timeline-item:nth-child(even) .tl-content {
  grid-column: 3;
  text-align: left;
}

.tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  margin: 0 auto;
  box-shadow: var(--shadow-orange);
  position: relative;
  z-index: 1;
}

.tl-content {
  padding: 20px;
}

.tl-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.tl-content p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
}

.faq-wrap {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(27, 58, 107, 0.1);
  background: var(--white);
  overflow: hidden;
  transition: all var(--trans-med);
}

[data-theme="dark"] .faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
  border-color: rgba(247, 148, 29, 0.4);
  box-shadow: 0 8px 30px rgba(247, 148, 29, 0.1);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  gap: 16px;
}

.faq-q span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-text);
}

.faq-q i {
  color: var(--secondary);
  font-size: 18px;
  transition: transform var(--trans-med);
  flex-shrink: 0;
}

.faq-item.active .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-med);
}

.faq-a-inner {
  padding: 0 26px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.8;
  border-top: 1px solid rgba(27, 58, 107, 0.08);
  padding-top: 18px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--off-white);
}

[data-theme="dark"] .gallery-section {
  background: var(--light-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 60, 0.8), transparent);
  opacity: 0;
  transition: opacity var(--trans-med);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--grad-orange);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner .section-title {
  color: var(--white);
}
.cta-inner .section-desc {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--secondary);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--trans-med);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  min-height: 50vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero h1 span {
  color: var(--secondary);
}

.page-hero p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: var(--secondary);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* About Story */
.story-section {
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img {
  position: relative;
}

.story-img-main {
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
}

.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.story-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
}

/* Mission / Vision Cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.mv-card {
  padding: 36px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(27, 58, 107, 0.1);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-med);
}

[data-theme="dark"] .mv-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(247, 148, 29, 0.3);
}

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: var(--shadow-orange);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.mv-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.8;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-med);
  text-align: center;
}

[data-theme="dark"] .team-card {
  background: rgba(255, 255, 255, 0.05);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.team-img {
  height: 260px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-body {
  padding: 24px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-sub);
  font-size: 13px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 14px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 15px;
  transition: all var(--trans-fast);
}

.team-social a:hover {
  background: var(--secondary);
  color: var(--white);
}

/* Achievement Cards */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.achievement-card {
  background: var(--grad-primary);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--trans-med);
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.achievement-icon {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.achievement-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.achievement-lbl {
  font-family: var(--font-sub);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(27, 58, 107, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-med);
}

[data-theme="dark"] .benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 148, 29, 0.3);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(247, 148, 29, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--secondary);
  flex-shrink: 0;
}

.benefit-text h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.benefit-text p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================================================
   HERO
============================================================ */

.services-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;

  background:
    linear-gradient(rgba(8, 15, 35, 0.86), rgba(8, 15, 35, 0.92)),
    url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?q=80&w=1600&auto=format&fit=crop");

  background-size: cover;
  background-position: center;
}

#particles-services {
  position: absolute;
  inset: 0;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.services-hero h1 {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.services-hero h1 span {
  color: var(--secondary);
}

.services-hero p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 18px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ============================================================
   MAIN SERVICES
============================================================ */

.main-services {
  padding: 120px 0;
  background: var(--off-white);
}

.services-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 30px;
  padding: 42px 34px;
  box-shadow: var(--shadow-md);
  transition: var(--trans-med);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 82px;
  height: 82px;
  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--grad-orange);

  margin-bottom: 24px;
}

.service-icon i {
  color: var(--white);
  font-size: 32px;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--primary);
}

.service-card p {
  line-height: 1.9;
  color: var(--body-text);
}

/* ============================================================
   PROCESS
============================================================ */

.services-process {
  padding: 120px 0;
}

.process-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  position: relative;
  background: var(--white);
  padding: 42px 30px;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 70px;
  height: 70px;
  border-radius: 50%;

  background: var(--grad-orange);
  color: var(--white);

  font-size: 26px;
  font-weight: 800;

  margin-bottom: 24px;
}

.process-card h3 {
  margin-bottom: 16px;
  font-size: 26px;
}

.process-card p {
  line-height: 1.8;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */

.why-services {
  padding: 120px 0;
  background: var(--off-white);
}

.why-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
}

.why-services-left img {
  width: 100%;
  border-radius: 32px;
  height: 620px;
  object-fit: cover;
}

.why-services-right h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.why-services-right p {
  line-height: 1.9;
  margin-bottom: 30px;
}

.why-services-right ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-services-right li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.why-services-right li i {
  color: var(--secondary);
}

/* ============================================================
   CTA
============================================================ */

.services-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--grad-primary);
}

.services-cta h2 {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 22px;
}

.services-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 34px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    min-height: 80vh;
  }
}

@media (max-width: 500px) {
  .service-card {
    padding: 34px 26px;
  }

  .process-card {
    padding: 36px 24px;
  }
}

/* Pricing Table */
.pricing-section {
  background: var(--off-white);
}

[data-theme="dark"] .pricing-section {
  background: var(--light-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid rgba(27, 58, 107, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-med);
  position: relative;
}

[data-theme="dark"] .pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
  background: var(--grad-primary);
  border-color: var(--primary);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-name {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

.pricing-card.featured .pricing-name {
  color: var(--secondary-light);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 6px;
  line-height: 1;
}

.pricing-card.featured .pricing-price {
  color: var(--white);
}

.pricing-price sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 600;
}

.pricing-period {
  font-family: var(--font-sub);
  font-size: 13px;
  color: var(--body-text);
  margin-bottom: 28px;
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body-text);
}

.pricing-card.featured .pricing-feature {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-feature i {
  color: var(--secondary);
  width: 16px;
  text-align: center;
}

/* ============================================================
   COUNTRIES PAGE
   ============================================================ */
.country-detail-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-med);
}

[data-theme="dark"] .country-detail-card {
  background: rgba(255, 255, 255, 0.05);
}

.country-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cdc-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.cdc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.country-detail-card:hover .cdc-img img {
  transform: scale(1.06);
}

.cdc-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
}

.cdc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 31, 60, 0.85), transparent);
  padding: 16px;
}

.cdc-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.cdc-body {
  padding: 24px;
}

.cdc-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.cdc-info-item {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 12px;
}

[data-theme="dark"] .cdc-info-item {
  background: rgba(255, 255, 255, 0.05);
}

.cdc-info-label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}

.cdc-info-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
}

.cdc-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================================
   SUCCESS STORIES PAGE
   ============================================================ */
.story-video-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--primary-dark);
}

.story-video-card .sv-thumb {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--trans-slow);
  opacity: 0.7;
}

.story-video-card:hover .sv-thumb {
  transform: scale(1.05);
  opacity: 0.5;
}

.sv-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sv-play {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: var(--shadow-orange);
  transition: transform var(--trans-med);
}

.story-video-card:hover .sv-play {
  transform: scale(1.1);
}

.sv-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.sv-country {
  font-family: var(--font-sub);
  font-size: 13px;
  color: var(--secondary);
  font-weight: 600;
}

/* Journey Card */
.journey-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 58, 107, 0.08);
  transition: all var(--trans-med);
}

[data-theme="dark"] .journey-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(247, 148, 29, 0.3);
}

.journey-before-after {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.journey-step {
  flex: 1;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.journey-step.before {
  background: rgba(231, 76, 60, 0.1);
}
.journey-step.after {
  background: rgba(39, 174, 96, 0.1);
}

.journey-step-label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.journey-step.before .journey-step-label {
  color: #e74c3c;
}
.journey-step.after .journey-step-label {
  color: #27ae60;
}

.journey-step-val {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
}

.journey-arrow {
  display: flex;
  align-items: center;
  color: var(--secondary);
  font-size: 20px;
}

.journey-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.journey-destination {
  font-family: var(--font-sub);
  font-size: 13px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.journey-quote {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
  font-style: italic;
}

/* Rating Section */
.rating-big {
  background: var(--grad-primary);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.rating-score-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.rating-stars-big {
  font-size: 24px;
  color: var(--secondary);
  letter-spacing: 4px;
}

.rating-count {
  font-family: var(--font-sub);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-bar-label {
  font-family: var(--font-sub);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  width: 40px;
  text-align: right;
}

.rating-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--grad-orange);
  border-radius: 4px;
}

.rating-bar-pct {
  font-family: var(--font-sub);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  width: 36px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(27, 58, 107, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-med);
}

[data-theme="dark"] .contact-info-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-info-item:hover {
  border-color: rgba(247, 148, 29, 0.3);
  transform: translateX(6px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body-text);
  transition: color var(--trans-fast);
}

.contact-info-text a:hover {
  color: var(--secondary);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(27, 58, 107, 0.08);
}

[data-theme="dark"] .contact-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.form-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(27, 58, 107, 0.15);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-text);
  transition: all var(--trans-fast);
  outline: none;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--dark-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-msg {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.form-msg.success {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}
.form-msg.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Map Section */
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(247, 148, 29, 0.2);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Social Cards */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.social-card {
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  transition: all var(--trans-med);
  cursor: pointer;
}

.social-card.wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
}
.social-card.ig {
  background: rgba(225, 48, 108, 0.1);
  border: 1px solid rgba(225, 48, 108, 0.3);
}
.social-card.fb {
  background: rgba(24, 119, 242, 0.1);
  border: 1px solid rgba(24, 119, 242, 0.3);
}
.social-card.em {
  background: rgba(247, 148, 29, 0.1);
  border: 1px solid rgba(247, 148, 29, 0.3);
}

.social-card:hover {
  transform: translateY(-6px);
}

.social-card i {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}
.social-card.wa i {
  color: #25d366;
}
.social-card.ig i {
  color: #e1306c;
}
.social-card.fb i {
  color: #1877f2;
}
.social-card.em i {
  color: var(--secondary);
}

.social-card span {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-text);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 28px auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
#wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-bubble {
  background: var(--white);
  color: var(--dark-text);
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--trans-med);
  pointer-events: none;
  white-space: nowrap;
}

#wa-float:hover .wa-bubble {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transition: all var(--trans-med);
  position: relative;
}

.wa-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s ease-out infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

.wa-btn i {
  position: relative;
  z-index: 1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: all var(--trans-fast);
}

.footer-socials a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(247, 148, 29, 0.3);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-col ul li a i {
  font-size: 12px;
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p span {
  color: var(--secondary);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-family: var(--font-sub);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--trans-fast);
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ============================================================
   AOS CUSTOM
   ============================================================ */
[data-aos] {
  transition-duration: 700ms !important;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 8000;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--trans-med);
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#scroll-top:hover {
  background: var(--grad-orange);
  transform: translateY(-3px);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center {
  text-align: center;
}
.text-orange {
  color: var(--secondary);
}
.text-navy {
  color: var(--primary);
}
.text-white {
  color: var(--white);
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-32 {
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-right {
    display: none;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-img-wrap {
    order: -1;
  }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .rating-big {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px;
  }
  .nav-links {
    display: none;
  }
  .btn-apply.desktop {
    display: none;
  }
  .dark-toggle {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .stats-inner {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 0 0 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .timeline-wrap::before {
    left: 24px;
  }
  .timeline-item {
    grid-template-columns: 48px 1fr;
  }
  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content {
    grid-column: 2;
    text-align: left;
  }
  .timeline-item:nth-child(odd) .tl-dot,
  .timeline-item:nth-child(even) .tl-dot {
    grid-column: 1;
    margin: 0;
  }
  .timeline-item:nth-child(odd) .tl-spacer,
  .timeline-item:nth-child(even) .tl-spacer {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-row: span 1;
  }
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .contact-form-wrap {
    padding: 28px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stat-item {
    flex: 0 0 100%;
    border-right: none;
  }
  .cdc-info {
    grid-template-columns: 1fr;
  }
  .hero-trust {
    flex-wrap: wrap;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    border-radius: 12px;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero {
  position: relative;
  min-height: 70vh;
  background:
    linear-gradient(rgba(13, 31, 60, 0.75), rgba(13, 31, 60, 0.85)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=1400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-hero h1 span {
  color: var(--secondary);
}

.contact-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  max-width: 650px;
}

/* ============================================================
   CONTACT MAIN
   ============================================================ */

.contact-main-section {
  background: var(--off-white);
  padding: 100px 0;
}

[data-theme="dark"] .contact-main-section {
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-med);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  flex-shrink: 0;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--body-text);
  font-size: 15px;
}

.contact-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ============================================================
   FORM
   ============================================================ */

.contact-form-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.form-top h2 {
  font-family: var(--font-display);
  font-size: 42px;
  margin-bottom: 16px;
}

.form-top h2 span {
  color: var(--secondary);
}

.form-top p {
  color: var(--body-text);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(27, 58, 107, 0.15);
  background: var(--off-white);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--dark-text);
  outline: none;
  transition: var(--trans-fast);
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.12);
}

.submit-btn {
  width: 100%;
  border: none;
  padding: 18px;
  border-radius: 18px;
  background: var(--grad-orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  transition: var(--trans-med);
  box-shadow: var(--shadow-orange);
}

.submit-btn:hover {
  transform: translateY(-3px);
}

/* ============================================================
   MINI FAQ
   ============================================================ */

.mini-faq-section {
  padding: 100px 0;
  background: var(--white);
}

[data-theme="dark"] .mini-faq-section {
  background: var(--primary-dark);
}

.mini-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.mini-faq-card {
  background: var(--off-white);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: var(--trans-med);
}

.mini-faq-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.mini-faq-card i {
  width: 80px;
  height: 80px;
  background: var(--grad-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
}

.mini-faq-card h3 {
  font-family: var(--font-display);
  margin-bottom: 14px;
  font-size: 24px;
}

.mini-faq-card p {
  color: var(--body-text);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--grad-dark);
  padding-top: 90px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo span span {
  color: var(--secondary);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 28px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 24px;
  font-size: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li,
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--trans-fast);
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--trans-fast);
}

.footer-socials a:hover {
  background: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .mini-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .form-top h2 {
    font-size: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    min-height: 60vh;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   COUNTRIES PAGE
   ============================================================ */

.countries-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
  background:
    linear-gradient(rgba(13, 31, 60, 0.75), rgba(13, 31, 60, 0.85)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80&auto=format");
  background-size: cover;
  background-position: center;
}

.countries-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.countries-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 74px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.countries-hero h1 span {
  color: var(--secondary);
}

.countries-hero p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 18px;
}

/* ============================================================
   COUNTRIES GRID
   ============================================================ */

.all-countries-section {
  padding: 100px 0;
  background: var(--off-white);
}

[data-theme="dark"] .all-countries-section {
  background: var(--light-bg);
}

.countries-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.country-box {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-med);
}

.country-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.country-image {
  height: 260px;
  overflow: hidden;
}

.country-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans-slow);
}

.country-box:hover .country-image img {
  transform: scale(1.08);
}

.country-content {
  padding: 30px;
}

.country-flag {
  font-size: 38px;
  margin-bottom: 18px;
}

.country-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 14px;
}

.country-content p {
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.country-features {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.country-features span {
  background: var(--light-bg);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.country-features i {
  color: var(--secondary);
  margin-right: 6px;
}

.country-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background: var(--grad-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  transition: var(--trans-med);
}

.country-btn:hover {
  background: var(--grad-orange);
}

/* ============================================================
   WHY SECTION
   ============================================================ */

.countries-why {
  padding: 100px 0;
}

.countries-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.countries-why-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.countries-why-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.why-list-2 {
  margin-top: 34px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item-2 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-item-2 i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.why-item-2 span {
  font-weight: 700;
  color: var(--dark-text);
}

/* ============================================================
   CTA
   ============================================================ */

.countries-cta {
  background: var(--grad-orange);
  padding: 100px 0;
  text-align: center;
}

.countries-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 20px;
}

.countries-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-size: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--grad-dark);
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo span span {
  color: var(--secondary);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li,
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--trans-fast);
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

  .countries-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .countries-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .countries-hero {
    min-height: 60vh;
  }

  .countries-hero h1 {
    font-size: 44px;
  }
}

/* ============================================================
   ABOUT HERO
============================================================ */

.about-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;

  background:
    linear-gradient(rgba(13, 31, 60, 0.75), rgba(13, 31, 60, 0.85)),
    url("https://images.unsplash.com/photo-1521295121783-8a321d551ad2?q=80&w=1600&auto=format");

  background-size: cover;
  background-position: center;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.about-hero h1 span {
  color: var(--secondary);
}

.about-hero p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 18px;
}

/* ============================================================
   ABOUT COMPANY
============================================================ */

.about-company {
  padding: 100px 0;
  background: var(--off-white);
}

[data-theme="dark"] .about-company {
  background: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.about-features {
  margin-top: 36px;
  margin-bottom: 40px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-feature i {
  color: var(--secondary);
  font-size: 22px;
}

.about-feature span {
  font-weight: 700;
  color: var(--dark-text);
}

/* ============================================================
   STATS
============================================================ */

.about-stats {
  padding: 100px 0;
  background: var(--grad-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-card h3 {
  font-size: 54px;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 12px;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}
.stat-card1 {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-card1 h3 {
  font-size: 54px;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 12px;
}

.stat-card1 p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}

/* ============================================================
   WHY SECTION
============================================================ */

.why-about {
  padding: 100px 0;
}

.why-grid {
  margin-top: 60px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 34px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-med);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: var(--grad-orange);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  font-size: 30px;

  margin-bottom: 26px;
}

.why-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.why-card p {
  line-height: 1.9;
  color: var(--body-text);
}

/* ============================================================
   PROCESS SECTION
============================================================ */

.about-process {
  padding: 100px 0;
  background: var(--off-white);
}

.process-grid {
  margin-top: 60px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--grad-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  font-size: 34px;
  font-weight: 800;

  margin: auto;
  margin-bottom: 26px;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 16px;
}

.process-card p {
  line-height: 1.8;
  color: var(--body-text);
}

/* ============================================================
   CTA SECTION
============================================================ */

.about-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--grad-orange);
}

.about-cta h2 {
  font-size: clamp(38px, 6vw, 68px);
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 24px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
  background: var(--grad-dark);
  padding-top: 90px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo span span {
  color: var(--secondary);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 28px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li,
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--trans-fast);
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 60vh;
  }

  .about-hero h1 {
    font-size: 44px;
  }

  .about-image img {
    height: 500px;
  }
}

/* ============================================================
   ABOUT HERO
============================================================ */

.about-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;

  background:
    linear-gradient(rgba(8, 15, 35, 0.82), rgba(8, 15, 35, 0.88)),
    url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?q=80&w=1600&auto=format");

  background-size: cover;
  background-position: center;
}

#particles-about {
  position: absolute;
  inset: 0;
}

.about-hero-content {
  position: relative;
  z-index: 5;
  max-width: 760px;
}

.about-hero h1 {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.05;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 24px;
}

.about-hero h1 span {
  color: var(--secondary);
}

.about-hero p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  font-size: 18px;
}

/* ============================================================
   ABOUT SECTION
============================================================ */

.about-section {
  padding: 110px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.about-features {
  margin-top: 34px;
  margin-bottom: 40px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-box i {
  color: var(--secondary);
  font-size: 20px;
}

.feature-box span {
  font-weight: 700;
}

/* ============================================================
   STATS
============================================================ */

.stats-section {
  padding: 100px 0;
  background: var(--grad-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  text-align: center;
  padding: 50px 30px;
}

.stat-card h3 {
  font-size: 58px;
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.stat-card p {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   WHY SECTION
============================================================ */

.why-us {
  padding: 110px 0;
}

.why-grid {
  margin-top: 60px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--white);
  border-radius: 28px;
  padding: 42px 34px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-med);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: var(--grad-orange);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  font-size: 28px;

  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.why-card p {
  line-height: 1.8;
  color: var(--body-text);
}

/* ============================================================
   CTA
============================================================ */

.about-cta {
  padding: 110px 0;
  text-align: center;
  background: var(--grad-orange);
}

.about-cta h2 {
  font-size: clamp(40px, 6vw, 70px);
  color: var(--white);
  margin-bottom: 24px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
  background: #081120;
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--trans-fast);
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 6px;
}

.footer-col i {
  margin-right: 8px;
  color: var(--secondary);
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  transition: var(--trans-fast);
}

.footer-socials a:hover {
  background: var(--secondary);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p span {
  color: var(--secondary);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 70vh;
  }

  .about-hero h1 {
    font-size: 44px;
  }

  .about-image img {
    height: 450px;
  }
}

/* ============================================================
   COUNTRIES SECTION
============================================================ */

.countries-section {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.countries-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: rgba(247, 148, 29, 0.08);
  border-radius: 50%;
  filter: blur(80px);
}

.countries-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.country-card {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-med);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.country-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.country-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.country-card:hover img {
  transform: scale(1.08);
}

.country-content {
  padding: 30px;
}

.country-content h3 {
  font-size: 30px;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: var(--font-display);
}

.country-content p {
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 15px;
}

.country-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;
  border-radius: 999px;

  background: var(--grad-orange);
  color: var(--white);
  font-weight: 700;

  transition: var(--trans-fast);
}

.country-content a:hover {
  transform: translateY(-3px);
  gap: 14px;
}

.country-content a i {
  font-size: 14px;
}

.country-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(247, 148, 29, 0.35),
    rgba(255, 255, 255, 0)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* ============================================================
   SECTION HEADER
============================================================ */

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 22px;
  border-radius: 999px;

  background: rgba(247, 148, 29, 0.12);
  color: var(--secondary);

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 24px;
}

/* .section-label h1,
p {
  font-display: "Sora", sans-serif;
  font-body: "Manrope", sans-serif;
  font-sub: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  color: var(--body-text);
  max-width: 620px;
  line-height: 1.8;
  font-family: var(--font-body);
} */

.section-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  margin-bottom: 22px;
  /* color: white; */
  font-family: var(--font-display);
}

.section-title span {
  color: var(--secondary);
}

.section-title strong {
  color: var(--primary);
}

.section-desc {
  font-size: 18px;
  line-height: 1.9;
  color: var(--body-text);
}

/* ============================================================
   RESPONSIVE
============================================================ */

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

@media (max-width: 768px) {
  .countries-section {
    padding: 90px 0;
  }

  .countries-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .country-card img {
    height: 240px;
  }

  .country-content {
    padding: 24px;
  }

  .country-content h3 {
    font-size: 26px;
  }

  .section-title {
    font-size: 44px;
  }

  .section-desc {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .country-card img {
    height: 220px;
  }

  .country-content h3 {
    font-size: 24px;
  }

  .country-content a {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   HERO
============================================================ */

.stories-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;

  background:
    linear-gradient(rgba(8, 15, 35, 0.82), rgba(8, 15, 35, 0.9)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=1600&auto=format&fit=crop");

  background-size: cover;
  background-position: center;
}

#particles-stories {
  position: absolute;
  inset: 0;
}

.stories-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.stories-hero-content h1,
p {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.stories-hero h1 {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 26px;
}

.stories-hero h1 span {
  color: var(--secondary);
}

.stories-hero p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 18px;
}

/* ============================================================
   STATS
============================================================ */

.stories-stats {
  padding: 100px 0;
  background: var(--grad-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  text-align: center;
  padding: 50px 30px;
}

.stat-box h3 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 10px;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.7);
}

.stat-box1 {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  text-align: center;
  padding: 50px 30px;
}

.stat-box1 h3 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 10px;
}

.stat-box1 p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   TESTIMONIALS
============================================================ */

.testimonials-section {
  padding: 120px 0;
  background: var(--primary-dark);
}

.story-card {
  background: var(--white);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.story-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.story-top img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.story-top h3 {
  margin-bottom: 6px;
}

.story-top span {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
}

.stars {
  color: #ffb400;
  margin-bottom: 20px;
}

.story-card p {
  line-height: 1.9;
  color: var(--body-text);
}

/* ============================================================
   GALLERY
============================================================ */

.gallery-section {
  padding: 120px 0;
}

.gallery-grid {
  margin-top: 60px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 28px;
}

.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================================================
   CTA
============================================================ */

.stories-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--grad-orange);
}

.stories-cta h2 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 22px;
}

.stories-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
  background: #081120;
  padding: 26px 0;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom span {
  color: var(--secondary);
}

/* ============================================================
   RESPONSIVE
============================================================ */

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stories-hero {
    min-height: 70vh;
  }
}

@media (max-width: 500px) {
  .story-card {
    padding: 28px;
  }

  .gallery-item img {
    height: 280px;
  }
}

.country-card,
.country-item,
.countries-grid,
.all-countries,
.all-countries * {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* ============================================================
   TERMS PAGE
============================================================ */

.terms-hero {
  position: relative;
  padding: 180px 20px 120px;
  background: var(--grad-hero);
  overflow: hidden;
}

#particles-terms {
  position: absolute;
  inset: 0;
}

.terms-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 30px;
}

.terms-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 25px;
}

.terms-hero h1 span {
  color: var(--secondary);
}

.terms-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.terms-section {
  padding: var(--section-pad) 20px;
  background: var(--off-white);
}

.terms-wrapper {
  max-width: 1000px;
  margin: auto;
}

.terms-card {
  background: var(--white);
  border-radius: 32px;
  padding: 60px;
  box-shadow: var(--shadow-md);
}

.terms-card h2 {
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: 25px;
  font-family: var(--font-display);
}

.terms-card h3 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-top: 45px;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.terms-card p {
  color: var(--body-text);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.terms-card ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.terms-card ul li {
  margin-bottom: 12px;
  color: var(--body-text);
  line-height: 1.8;
}

.terms-note {
  margin-top: 50px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(247, 148, 29, 0.08);
  border: 1px solid rgba(247, 148, 29, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
}

.terms-note i {
  color: var(--secondary);
  font-size: 1.4rem;
}

.terms-note p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 768px) {
  .terms-card {
    padding: 35px 25px;
  }

  .terms-card h2 {
    font-size: 1.9rem;
  }

  .terms-card h3 {
    font-size: 1.35rem;
  }
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  /* margin-top: 80px; */
}

.thankyou-page::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(247, 148, 29, 0.12);
  filter: blur(120px);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.thankyou-card {
  position: relative;
  z-index: 2;
  max-width: 850px;
  width: 100%;
  padding: 60px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  text-align: center;
  margin-top: 80px;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 148, 29, 0.12);
  border: 2px solid rgba(247, 148, 29, 0.25);
  margin-bottom: 30px;
}

.success-icon i {
  font-size: 4rem;
  color: var(--secondary);
}

.success-badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(247, 148, 29, 0.12);
  border: 1px solid rgba(247, 148, 29, 0.2);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 25px;
}

.thankyou-card h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.1;
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 25px;
}

.thankyou-card h1 span {
  color: var(--secondary);
}

.thankyou-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 20px;
}

.thankyou-info {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.info-box {
  padding: 28px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-box i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 18px;
}

.info-box h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.info-box span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.thankyou-actions {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.home-btn,
.contact-btn {
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-btn {
  background: var(--grad-orange);
  color: #fff;
}

.contact-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-btn:hover,
.contact-btn:hover {
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .thankyou-info {
    grid-template-columns: 1fr;
  }

  .thankyou-card {
    padding: 40px 25px;
  }
}

/* Terms checkbox container */

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 14px 18px;

  margin-top: 20px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);
}

/* checkbox */

.terms-check input[type="checkbox"] {
  margin-top: 4px;

  width: 18px;
  height: 18px;

  cursor: pointer;

  accent-color: #f7941d;

  flex-shrink: 0;
}

/* label */

.terms-check label {
  color: #fff;

  font-size: 14px;

  line-height: 1.7;

  cursor: pointer;
}

/* terms link */

.terms-check a {
  color: #f7941d;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.terms-check a:hover {
  text-decoration: underline;

  opacity: 0.8;
}

/* mobile */

@media (max-width: 768px) {
  .terms-check {
    padding: 12px;

    gap: 10px;
  }

  .terms-check label {
    font-size: 13px;
  }
}
