/*
Theme Name: Eden Global Education
Theme URI: https://eden-global-education-websi-872.created.app/
Author: Eden Global Education
Author URI: https://eden-global-education-websi-872.created.app/
Description: A premium single-page WordPress theme for Eden Global Education — elegant, modern, and conversion-focused for international education services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eden-global-education
Tags: one-page, education, responsive, custom-menu, custom-logo, featured-images, full-width-template
*/

/* ─────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────────────────────────────*/
:root {
  --clr-navy:       #0c1a2a;
  --clr-navy-mid:   #162e4a;
  --clr-gold:       #C8A44A;
  --clr-gold-light: #E8C572;
  --clr-sky:        #4DA6D9;
  --clr-white:      #FFFFFF;
  --clr-off-white:  #F5F3EF;
  --clr-text:       #1A2D4A;
  --clr-muted:      #5A6E85;
  --clr-border:     #DDD8CF;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --ff-accent:  'DM Mono', 'Courier New', monospace;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  1.75rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3rem;
  --fs-5xl:  4rem;
  --fs-hero: clamp(2.75rem, 6vw, 5.5rem);

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(10,31,60,0.07);
  --shadow-md:  0 6px 24px rgba(10,31,60,0.12);
  --shadow-lg:  0 16px 48px rgba(10,31,60,0.18);
  --shadow-gold: 0 4px 20px rgba(200,164,74,0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --header-h: 80px;
}

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

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

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section-label {
  font-family: var(--ff-accent);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--clr-gold);
  display: block;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
  font-weight: 700;
  color: var(--clr-navy);
  line-height: 1.15;
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-muted);
  max-width: 580px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,164,74,0.45);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--clr-white);
}
.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(200,164,74,0.08);
}
.btn-outline-dark {
  border: 2px solid var(--clr-navy);
  color: var(--clr-navy);
}
.btn-outline-dark:hover {
  background: var(--clr-navy);
  color: var(--clr-white);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────
   HEADER / NAVIGATION
───────────────────────────────────────────────────────────────*/
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
#site-header.scrolled {
  background: rgba(10, 31, 60, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  height: 68px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-navy);
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.main-nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-gold);
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--clr-white); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────────────────────*/
#hero {
  min-height: 100vh;
  background: var(--clr-navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 65% 40%, rgba(77,166,217,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(200,164,74,0.08) 0%, transparent 55%),
    linear-gradient(160deg, #0c1a2a 0%, #162e4a 50%, #0e2040 100%);
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  padding-block: var(--space-3xl) var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.hero-text .section-label { color: var(--clr-gold); margin-bottom: var(--space-md); }
.hero-heading {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.08;
  margin-bottom: var(--space-md);
}
.hero-heading em {
  font-style: normal;
  color: var(--clr-gold);
  position: relative;
}
.hero-heading em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  border-radius: 2px;
}
.hero-desc {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.hero-stats {
  display: flex;
  gap: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
}
.stat-item { }
.stat-number {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}
.stat-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-cluster {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
}
.hero-card-main {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  color: var(--clr-white);
}
.hero-card-flag {
  width: 36px; height: 24px;
  border-radius: 4px;
  object-fit: cover;
}
.hero-card-destinations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.dest-pill {
  background: rgba(200,164,74,0.15);
  border: 1px solid rgba(200,164,74,0.3);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.9rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-gold-light);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}
.hero-card-floating {
  position: absolute;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}
.hero-card-floating.card-1 { top: -24px; right: -20px; }
.hero-card-floating.card-2 { bottom: -20px; left: -20px; }
.floating-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-icon.gold { background: rgba(200,164,74,0.15); color: var(--clr-gold); }
.floating-icon.sky  { background: rgba(77,166,217,0.15);  color: var(--clr-sky); }
.floating-text strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-navy);
}
.floating-text span {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────────────────────────────
   DESTINATIONS / COUNTRIES
───────────────────────────────────────────────────────────────*/
#destinations {
  padding-block: var(--space-3xl);
  background: var(--clr-off-white);
}
.destinations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}
.destination-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: 1px solid var(--clr-border);
}
.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.dest-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--clr-navy), var(--clr-sky));
  position: relative;
  overflow: hidden;
}
.dest-card-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--gradient);
}
.dest-card-body { padding: var(--space-md); }
.dest-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-xs);
}
.dest-card-title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-navy);
}
.dest-card-badge {
  background: rgba(200,164,74,0.12);
  color: var(--clr-gold);
  border: 1px solid rgba(200,164,74,0.3);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: var(--fs-xs);
  font-weight: 600;
  white-space: nowrap;
}
.dest-card-desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}
.dest-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  background: var(--clr-off-white);
  color: var(--clr-text);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: var(--fs-xs);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────────────────────────*/
#services {
  padding-block: var(--space-3xl);
  background: var(--clr-white);
}
.services-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }
.services-header .section-label::after {
  content: '';
  width: 28px; height: 2px;
  background: var(--clr-gold);
  display: block;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.service-card {
  background: var(--clr-off-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--clr-navy), var(--clr-navy-mid));
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
}
.service-title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: var(--space-xs);
}
.service-desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.service-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.7rem; }

/* ─────────────────────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────────────────────────*/
#why-us {
  padding-block: var(--space-3xl);
  background: var(--clr-navy);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.why-us-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.why-us-text .section-label { color: var(--clr-gold); }
.why-us-text .section-title { color: var(--clr-white); }
.why-us-text .section-subtitle { color: rgba(255,255,255,0.65); margin-block: var(--space-md) var(--space-xl); }
.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.feature-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.feature-check {
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(200,164,74,0.15);
  border: 1px solid rgba(200,164,74,0.35);
  color: var(--clr-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.8rem;
}
.feature-text strong {
  display: block;
  color: var(--clr-white);
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-text span {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
}
.why-us-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.metric-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: background var(--transition);
}
.metric-card:hover { background: rgba(255,255,255,0.08); }
.metric-card.large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(200,164,74,0.15), rgba(77,166,217,0.1));
  border-color: rgba(200,164,74,0.25);
}
.metric-number {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
}
.metric-icon { font-size: 2rem; margin-bottom: var(--space-sm); }

/* ─────────────────────────────────────────────────────────────
   PROCESS / HOW IT WORKS
───────────────────────────────────────────────────────────────*/
#process {
  padding-block: var(--space-3xl);
  background: var(--clr-off-white);
}
.process-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}
.process-header .section-label { justify-content: center; }
.process-header .section-label::before { display: none; }
.process-header .section-label::after {
  content: '';
  width: 28px; height: 2px;
  background: var(--clr-gold);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(12.5% + 26px); right: calc(12.5% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-sky));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--clr-navy);
  color: var(--clr-gold);
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--clr-gold);
  position: relative;
}
.step-title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 8px;
}
.step-desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────────────*/
#testimonials {
  padding-block: var(--space-3xl);
  background: var(--clr-white);
}
.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-header .section-label::after {
  content: '';
  width: 28px; height: 2px;
  background: var(--clr-gold);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.testimonial-card {
  background: var(--clr-off-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.quote-icon {
  font-size: 2.5rem;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-navy), var(--clr-sky));
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-white);
  font-weight: 700;
  font-size: var(--fs-sm);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-navy);
}
.author-meta {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
}
.stars { color: var(--clr-gold); font-size: var(--fs-sm); letter-spacing: 2px; }

/* ─────────────────────────────────────────────────────────────
   CONTACT / CTA SECTION
───────────────────────────────────────────────────────────────*/
#contact {
  padding-block: var(--space-3xl);
  background: var(--clr-off-white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-info .section-label { }
.contact-info .section-title { margin-bottom: var(--space-sm); }
.contact-info .section-subtitle { margin-bottom: var(--space-xl); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-navy);
  color: var(--clr-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 600; font-size: var(--fs-sm); }
.contact-item span { font-size: var(--fs-sm); color: var(--clr-muted); }

.contact-form {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: var(--space-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.form-group { margin-bottom: var(--space-sm); }
.form-group label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  background: var(--clr-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(200,164,74,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; font-size: var(--fs-base); padding: 1rem; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────*/
#site-footer {
  background: var(--clr-navy);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-2xl) var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { margin-bottom: var(--space-sm); }
.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,0.55);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 0.85rem;
}
.social-btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-navy);
}
.footer-col h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--clr-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); }
.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}
.footer-bottom-links a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--clr-gold); }

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────────────────────────────*/
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────────*/
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  /* Hide desktop nav and CTA button on mobile */
  .main-nav { display: none; }
  .header-cta, .header-cta-btn { display: none !important; }
  .nav-toggle { display: flex; }

  /* Keep lang switcher but shrink it so logo + lang + burger fit */
  .lang-toggle {
    padding: .35rem .55rem;
    font-size: .75rem;
    gap: .25rem;
  }
  .lang-toggle svg:first-child { display: none; } /* hide globe icon on mobile */

  .header-right {
    gap: .5rem;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: var(--clr-navy);
    padding: var(--space-xl) var(--space-md);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: var(--space-lg);
    font-size: var(--fs-xl);
  }
  /* CTA link inside the open mobile nav */
  .main-nav.open .mobile-cta {
    display: flex !important;
    margin-top: var(--space-xl);
    width: 100%;
    justify-content: center;
    font-size: var(--fs-lg);
  }

  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-md); }

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

  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .destinations-header { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: var(--space-sm); }
  .metric-card.large { grid-column: span 1; }
  .why-us-visual { grid-template-columns: 1fr; }

  /* Prevent header overflow on very small screens */
  .site-logo .logo-img { max-width: 110px; height: 38px; }
  .lang-toggle { padding: .3rem .45rem; }
  .nav-toggle { width: 32px; }
}
}

/* ═══════════════════════════════════════════════════ LOGO IMG ══ */
.logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  /* The logo has a yellow shield — works on dark header */
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
}

/* ═══════════════════════════════════════════════ HERO SLIDESHOW ══ */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,.45);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slideshow-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 2;
}
.slideshow-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.slideshow-dots .dot.active {
  background: var(--clr-gold);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════ HOW IT WORKS ══ */
#how-it-works {
  background: var(--clr-bg);
  padding-block: var(--space-3xl);
}
.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: var(--space-2xl);
  position: relative;
}
/* Horizontal connector line between steps */
.hiw-step {
  position: relative;
  text-align: center;
  padding: 0 var(--space-md);
}
.hiw-connector {
  display: none; /* handled via pseudo on step wrapper */
}
.how-it-works-steps .hiw-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px; /* centre of icon */
  right: -2px;
  width: calc(100% - 68px);  /* gap between icons */
  left: calc(50% + 34px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold) 0%, rgba(200,164,74,.25) 100%);
  z-index: 0;
}
.hiw-icon-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto var(--space-md);
  z-index: 1;
}
.hiw-icon-wrap .hiw-step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  font-family: var(--ff-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
}
.hiw-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 2px solid rgba(200,164,74,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  transition: background .3s, border-color .3s, transform .3s;
}
.hiw-step:hover .hiw-icon {
  background: rgba(200,164,74,.12);
  border-color: var(--clr-gold);
  transform: translateY(-4px);
}
.hiw-title {
  font-family: var(--ff-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}
.hiw-desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.6;
}

/* reCAPTCHA container */
.captcha-wrap { margin-bottom: var(--space-md); }

/* ── Responsive overrides ── */
@media (max-width: 900px) {
  .how-it-works-steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl) var(--space-md);
  }
  .how-it-works-steps .hiw-step::after { display: none; }
}
@media (max-width: 600px) {
  .how-it-works-steps { grid-template-columns: 1fr; gap: var(--space-lg); }
  .hero-slideshow { min-height: 260px; border-radius: var(--radius-lg); }
}

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════════════════════════ */
.header-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.lang-toggle:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(200,164,74,.5);
}
.lang-chevron {
  transition: transform .2s;
}
.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: #0d1f33;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  list-style: none;
  padding: .4rem 0;
  margin: 0;
  z-index: 9999;
  animation: langDropIn .15s ease;
}
.lang-switcher.open .lang-dropdown {
  display: block;
}
@keyframes langDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.lang-option {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .55rem 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background .15s, color .15s;
}
.lang-option:hover,
.lang-option.active {
  background: rgba(200,164,74,.12);
  color: var(--clr-gold-light, #c8a44a);
}

/* RTL support */
html[dir="rtl"] .main-nav ul,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .contact-inner,
html[dir="rtl"] .why-us-inner {
  direction: rtl;
}
html[dir="rtl"] .hero-text,
html[dir="rtl"] .contact-info,
html[dir="rtl"] .why-us-text {
  text-align: right;
}
html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}
html[dir="rtl"] .header-right {
  flex-direction: row-reverse;
}
html[dir="rtl"] .section-label,
html[dir="rtl"] .hero-stats,
html[dir="rtl"] .features-list,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-details {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .hiw-step {
  text-align: right;
}
html[dir="rtl"] .feature-item {
  flex-direction: row-reverse;
}
html[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-col ul,
html[dir="rtl"] .footer-bottom {
  text-align: right;
  direction: rtl;
}
