/* ============================================================
   TEHEYANE FOREIGN EMPLOYMENT AGENCY — STYLESHEET
   Modern Green Horizon | Glassmorphism Theme
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --green-primary: #22C55E;
  --green-fresh: #4ADE80;
  --green-deep: #16A34A;
  --green-transparent: rgba(34, 197, 94, 0.15);
  --green-glass: rgba(34, 197, 94, 0.08);
  --mint-light: #F0FDF4;
  --white: #FFFFFF;
  --dark-forest: #14532D;
  --soft-gray: #F8FAFC;
  --text-dark: #1a2e1a;
  --text-mid: #2d5a27;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px rgba(34, 197, 94, 0.12);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 20px;
  --radius-sm: 12px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(135deg, #0f2d1a 0%, #14532D 25%, #1a3a1a 50%, #0d2b17 100%);
  background-attachment: fixed;
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

.section-padding { padding: 90px 0; }

/* ---- UTILITY ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- GLASS CARD ---- */
.glass-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: 0 20px 48px rgba(34, 197, 94, 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ---- SECTION HEADER ---- */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(74,222,128,0.15));
  border: 1px solid rgba(74,222,128,0.4);
  color: var(--green-fresh);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.glass-nav {
  background: rgba(15, 45, 26, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74,222,128,0.15);
  padding: 14px 0;
  transition: var(--transition);
}

.glass-nav.scrolled {
  background: rgba(10, 30, 18, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.brand-icon {
  color: var(--green-fresh);
  font-size: 1.4rem;
  margin-right: 8px;
}

.brand-text {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.brand-accent { color: var(--green-fresh); }

.nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-link:hover { color: var(--green-fresh) !important; background: rgba(74,222,128,0.08); }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh)) !important;
  color: var(--dark-forest) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}

.navbar-toggler {
  border-color: rgba(74,222,128,0.4);
  filter: invert(1);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh));
  color: var(--dark-forest);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.55);
  color: var(--dark-forest);
}

.btn-outline-cta {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(74,222,128,0.6);
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline-cta:hover {
  background: rgba(74,222,128,0.1);
  border-color: var(--green-fresh);
  color: var(--green-fresh);
  transform: translateY(-3px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1f0f 0%, #14532D 40%, #1a4a2a 70%, #0f2d1a 100%);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(34,197,94,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74,222,128,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(22,163,74,0.08) 0%, transparent 40%);
  z-index: 1;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.world-map-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath d='M150,200 Q200,180 250,190 Q300,200 320,220 Q340,240 330,270 Q320,300 280,310 Q240,320 210,300 Q180,280 160,250 Q140,220 150,200Z' fill='none' stroke='rgba(74,222,128,0.08)' stroke-width='1'/%3E%3Cpath d='M600,150 Q640,130 700,140 Q760,150 780,180 Q800,210 790,250 Q780,290 740,310 Q700,330 660,320 Q620,310 600,280 Q580,250 580,210 Q580,170 600,150Z' fill='none' stroke='rgba(74,222,128,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.4;
  z-index: 1;
}

/* --- Grass --- */
.grass-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

.grass-layer {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 120px;
  background-repeat: repeat-x;
  background-position: bottom;
}

.grass-back {
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Cpath d='M0,80 Q10,40 20,60 Q30,20 40,50 Q50,10 60,45 Q70,5 80,40 Q90,15 100,50 Q110,5 120,45 Q130,20 140,55 Q150,10 160,50 Q170,25 180,60 Q190,30 200,80Z' fill='%23166534' opacity='0.6'/%3E%3C/svg%3E");
  animation: grassSway 8s ease-in-out infinite;
}

.grass-mid {
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath d='M0,100 Q8,50 15,70 Q25,25 35,60 Q45,15 55,55 Q65,5 75,45 Q85,15 95,55 Q105,8 115,48 Q125,20 135,60 Q145,12 155,55 Q165,25 175,65 Q185,35 200,100Z' fill='%2322C55E' opacity='0.4'/%3E%3C/svg%3E");
  animation: grassSway 6s ease-in-out infinite reverse;
}

.grass-front {
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120'%3E%3Cpath d='M0,120 Q6,55 12,80 Q20,30 30,65 Q38,10 48,55 Q58,5 68,48 Q78,10 88,52 Q98,8 108,50 Q118,12 128,55 Q138,8 148,52 Q158,18 168,60 Q178,25 188,70 Q194,40 200,120Z' fill='%234ADE80' opacity='0.5'/%3E%3C/svg%3E");
  animation: grassSway 5s ease-in-out infinite;
}

@keyframes grassSway {
  0%, 100% { transform: translateX(0) scaleY(1); }
  33% { transform: translateX(8px) scaleY(1.02); }
  66% { transform: translateX(-5px) scaleY(0.98); }
}

/* --- Leaves --- */
.leaves-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.leaf {
  position: absolute;
  color: var(--green-fresh);
  opacity: 0.5;
  animation: leafFloat 12s ease-in-out infinite;
  font-size: 1.2rem;
}

.leaf-1 { top: 15%; left: 5%; animation-delay: 0s; animation-duration: 14s; }
.leaf-2 { top: 30%; right: 8%; animation-delay: 3s; animation-duration: 10s; font-size: 0.9rem; opacity: 0.3; }
.leaf-3 { top: 60%; left: 15%; animation-delay: 6s; font-size: 0.8rem; }
.leaf-4 { top: 45%; right: 20%; animation-delay: 9s; animation-duration: 16s; }
.leaf-5 { top: 20%; left: 45%; animation-delay: 2s; animation-duration: 11s; font-size: 0.7rem; opacity: 0.4; }

@keyframes leafFloat {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
  25% { transform: translate(20px, -30px) rotate(30deg); opacity: 0.6; }
  50% { transform: translate(-15px, -60px) rotate(-20deg); opacity: 0.3; }
  75% { transform: translate(10px, -40px) rotate(45deg); opacity: 0.5; }
  100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
}

/* --- Hero Content --- */
.hero-content { z-index: 6; padding-top: 90px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(74,222,128,0.35);
  color: var(--green-fresh);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-fresh);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* --- Journey Path Visual --- */
.journey-path-visual {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.journey-svg { width: 100%; height: auto; }

.journey-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.j-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 14px;
  padding: 12px 14px;
  animation: iconPulse 3s ease-in-out infinite;
  min-width: 60px;
}

.j-icon i { font-size: 1.3rem; color: var(--green-fresh); }
.j-icon span { font-size: 0.68rem; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.j-icon-1 { animation-delay: 0s; }
.j-icon-2 { animation-delay: 0.4s; }
.j-icon-3 { animation-delay: 0.8s; }
.j-icon-4 { animation-delay: 1.2s; }
.j-icon-5 { animation-delay: 1.6s; }
.j-icon-6 { animation-delay: 2.0s; }

@keyframes iconPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 rgba(34,197,94,0); }
  50% { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(34,197,94,0.25); }
}

.plane-animated {
  position: absolute;
  top: 30px;
  left: 40px;
  color: var(--green-fresh);
  font-size: 1.4rem;
  animation: flyPath 5s ease-in-out infinite;
}

@keyframes flyPath {
  0% { transform: translate(0, 0) rotate(-30deg); opacity: 1; }
  50% { transform: translate(140px, -80px) rotate(-30deg); opacity: 1; }
  51% { opacity: 0; }
  52% { transform: translate(0, 0) rotate(-30deg); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translate(0, 0) rotate(-30deg); opacity: 1; }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  background: linear-gradient(180deg, rgba(10,30,18,0.0) 0%, rgba(10,30,18,0.5) 100%);
}

.trust-card {
  padding: 36px 28px;
  text-align: center;
  height: 100%;
}

.trust-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(74,222,128,0.1));
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--green-fresh);
  transition: var(--transition);
}

.trust-card:hover .trust-icon {
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh));
  color: var(--dark-forest);
  transform: scale(1.1) rotate(5deg);
}

.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.destinations-section {
  background: rgba(5, 20, 10, 0.3);
}

/* ---- 5-column grid, visible on ALL screen sizes ---- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  /* prevent Bootstrap from hiding anything */
  overflow: visible;
}

/* Each card is fully self-contained */
.dest-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: visible;       /* never clip the flag */
  position: relative;
}

.dest-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 222, 128, 0.5);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.25);
}

.dest-inner {
  padding: 28px 14px 22px;
  text-align: center;
  position: relative;
}

/* Animated glow blob behind flag */
.dest-glow {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(74,222,128,0.18) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.4s ease;
  pointer-events: none;
}

.dest-card:hover .dest-glow {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(74,222,128,0.28) 0%, transparent 70%);
}

.dest-flag {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 6px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}

.dest-card:hover .dest-flag {
  transform: scale(1.2);
}

.dest-pin {
  display: block;
  color: var(--green-fresh);
  font-size: 0.95rem;
  margin-bottom: 8px;
  animation: markerBounce 2s ease-in-out infinite;
}

@keyframes markerBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.dest-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.dest-jobs {
  display: inline-block;
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(74,222,128,0.1));
  border: 1px solid rgba(74,222,128,0.35);
  color: var(--green-fresh);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ---- Tablet: 5 columns still, but allow horizontal scroll if needed ---- */
@media (max-width: 768px) {
  .dest-grid {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(74,222,128,0.3) transparent;
  }
}

/* ---- Very small phones: fixed-width cards, scroll horizontally ---- */
@media (max-width: 480px) {
  .dest-grid {
    grid-template-columns: repeat(5, 140px);
  }
  .dest-inner { padding: 22px 10px 18px; }
  .dest-flag   { font-size: 2.5rem; }
  .dest-card h4 { font-size: 0.8rem; }
}

/* ============================================================
   CAREERS CAROUSEL
   ============================================================ */
.careers-section { position: relative; }

.careers-carousel {
  overflow: hidden;
  padding: 10px 0 20px;
}

.careers-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 4px;
}

.career-card {
  min-width: 260px;
  flex-shrink: 0;
  padding: 32px 24px;
}

.career-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(74,222,128,0.1));
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green-fresh);
  margin-bottom: 16px;
  transition: var(--transition);
}

.career-card:hover .career-icon {
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh));
  color: var(--dark-forest);
}

.career-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.career-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 14px;
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.career-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(74,222,128,0.25);
  color: rgba(74,222,128,0.9);
}

.btn-career-apply {
  background: transparent;
  border: 1px solid rgba(74,222,128,0.4);
  color: var(--green-fresh);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-career-apply:hover {
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh));
  color: var(--dark-forest);
  border-color: transparent;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: var(--green-fresh);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh));
  color: var(--dark-forest);
  border-color: transparent;
}

/* ============================================================
   JOURNEY TIMELINE (WINDING ROAD)
   ============================================================ */
.journey-section { background: rgba(5, 15, 8, 0.3); }

.road-journey {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.road-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--green-primary) 10%, var(--green-fresh) 50%, var(--green-primary) 90%, transparent);
  transform: translateX(-50%);
  border-radius: 4px;
}

.road-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.road-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  padding-left: calc(50% + 40px);
}

.road-step-right {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: calc(50% + 40px);
}

.step-bubble {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(74,222,128,0.1));
  border: 2px solid var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-fresh);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.1);
}

.road-step:hover .step-bubble {
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh));
  color: var(--dark-forest);
  transform: translateX(-50%) scale(1.1);
}

.step-content {
  padding: 24px 28px;
  max-width: 300px;
  position: relative;
}

.highlight-step {
  border-color: rgba(34,197,94,0.6) !important;
  box-shadow: 0 0 30px rgba(34,197,94,0.15) !important;
}

.step-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--green-fresh);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.road-vehicle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--green-primary);
  font-size: 1.4rem;
  z-index: 3;
  transition: top 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(34,197,94,0.5));
}

/* ============================================================
   WHY TEHEYANE
   ============================================================ */
.why-section { background: rgba(8, 22, 12, 0.3); }

.why-circle {
  padding: 32px 20px;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  transition: var(--transition);
}

.why-circle:hover {
  border-radius: 24px;
}

.why-icon {
  font-size: 2rem;
  color: var(--green-fresh);
  transition: var(--transition);
}

.why-circle:hover .why-icon {
  transform: scale(1.2) rotate(10deg);
}

.why-circle h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   IMPACT COUNTERS
   ============================================================ */
.counters-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1f0f 0%, #14532D 50%, #0a1f0f 100%);
  overflow: hidden;
}

.counters-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.counter-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.counter-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--green-fresh);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(100%); opacity: 0; }
  20% { opacity: 0.4; }
  80% { opacity: 0.4; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

.counter-item {
  position: relative;
  z-index: 1;
}

.counter-icon {
  font-size: 2rem;
  color: var(--green-fresh);
  margin-bottom: 12px;
  display: block;
}

.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.counter-suffix {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--green-fresh);
  display: inline;
}

.counter-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 8px;
}

/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.stories-section { background: rgba(5, 20, 10, 0.3); }

.stories-slider { overflow: hidden; padding: 10px 4px 20px; }

.stories-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card {
  min-width: 340px;
  flex-shrink: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-avatar {
  font-size: 3.5rem;
  color: var(--green-fresh);
  opacity: 0.8;
  line-height: 1;
}

.story-body {}

.story-flag { font-size: 1.8rem; margin-bottom: 8px; display: block; }

.story-body h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.story-role {
  font-size: 0.8rem;
  color: var(--green-fresh);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.story-stars { color: #FBBF24; font-size: 0.85rem; letter-spacing: 2px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: rgba(8, 22, 12, 0.3); }

/* Filter buttons */
.gallery-filter-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(74,222,128,0.25);
  color: rgba(255,255,255,0.65);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh));
  border-color: transparent;
  color: var(--dark-forest);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(74,222,128,0.15);
}

.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item.gallery-wide { grid-column: span 2; }

/* Real image styling */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img { transform: scale(1.07); }
.gallery-item:hover { border-color: rgba(74,222,128,0.45); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,50,24,0.85) 0%, rgba(14,50,24,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.gallery-overlay-content i {
  font-size: 1.1rem;
  color: var(--green-fresh);
}

.gallery-overlay-content span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active { display: flex; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.lightbox-close:hover { background: rgba(34,197,94,0.3); border-color: var(--green-fresh); }

.lightbox-content {
  max-width: 700px;
  width: 100%;
  background: rgba(14, 40, 20, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--radius);
  padding: 24px 24px 28px;
  text-align: center;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: rgba(5, 15, 8, 0.3); }

.faq-accordion { display: flex; flex-direction: column; gap: 12px; }

.faq-item { overflow: hidden; }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.faq-question i:first-child { color: var(--green-fresh); font-size: 1rem; flex-shrink: 0; }

.faq-arrow {
  margin-left: auto;
  transition: transform 0.35s ease;
  color: var(--green-fresh);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-question:hover { color: var(--green-fresh); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  border-top: 1px solid rgba(74,222,128,0.15);
  padding-top: 16px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,83,45,0.25), rgba(10,30,18,0.6));
  z-index: 0;
}

.contact-info {
  padding: 36px 32px;
  height: 100%;
}

.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(74,222,128,0.1));
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-fresh);
  font-size: 1rem;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-fresh);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--green-fresh); }

.contact-form {
  padding: 36px 32px;
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.form-label span { color: var(--green-fresh); }

.glass-input {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(74,222,128,0.25) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--white) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.92rem !important;
  padding: 12px 16px !important;
  transition: var(--transition) !important;
}

.glass-input::placeholder { color: rgba(255,255,255,0.3) !important; }

.glass-input:focus {
  outline: none !important;
  border-color: rgba(74,222,128,0.6) !important;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1) !important;
  background: rgba(255,255,255,0.09) !important;
}

.glass-input option { background: #14532D; color: white; }

.form-success-msg {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(74,222,128,0.4);
  color: var(--green-fresh);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   SOCIAL BUTTONS
   ============================================================ */
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.social-btn.facebook { background: rgba(24,119,242,0.15); }
.social-btn.telegram { background: rgba(0,136,204,0.15); }
.social-btn.tiktok { background: rgba(0,0,0,0.3); }
.social-btn.instagram { background: rgba(193,53,132,0.15); }
.social-btn.whatsapp { background: rgba(37,211,102,0.15); }

.social-btn:hover { transform: translateY(-4px) scale(1.1); color: white; }
.social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-btn.telegram:hover { background: #0088cc; border-color: #0088cc; }
.social-btn.tiktok:hover { background: #010101; border-color: #010101; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.social-btn.whatsapp:hover { background: #25d366; border-color: #25d366; }

/* ============================================================
   OFFICE MAP
   ============================================================ */
.map-wrapper {
  margin-top: 56px;
}

.map-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.map-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.map-title i {
  color: var(--green-fresh);
  font-size: 1.3rem;
}

.map-address-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 50px;
}

.map-address-pill i { color: var(--green-fresh); }

.map-frame-container {
  padding: 14px;
  overflow: hidden;
}

.map-open-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  justify-content: flex-start;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1f0f 0%, #14532D 50%, #1a4a2a 100%);
}

.cta-sunrise {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sunrise-orb {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at center bottom, rgba(34,197,94,0.3) 0%, rgba(74,222,128,0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: sunriseGlow 4s ease-in-out infinite;
}

@keyframes sunriseGlow {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

.cta-hills { position: absolute; bottom: 0; left: 0; right: 0; }

.hill {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}

.hill-back {
  left: -10%;
  width: 60%;
  height: 120px;
  background: rgba(34,197,94,0.08);
  bottom: 0;
}

.hill-front {
  right: -10%;
  width: 60%;
  height: 100px;
  background: rgba(34,197,94,0.06);
}

.cta-content { z-index: 2; position: relative; }

.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.glass-footer {
  background: rgba(5, 20, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(74,222,128,0.15);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-fresh);
  margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green-fresh); }

.footer-contact-list { list-style: none; padding: 0; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-list i { color: var(--green-fresh); margin-top: 2px; flex-shrink: 0; }

.footer-contact-list a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover { color: var(--green-fresh); }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(74,222,128,0.1);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: white;
  box-shadow: 0 10px 32px rgba(37,211,102,0.7);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(20,83,45,0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid rgba(74,222,128,0.3);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: 50%;
  color: var(--green-fresh);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--green-primary), var(--green-fresh));
  color: var(--dark-forest);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-content { padding-top: 100px; }
  .journey-path-visual { width: 100%; max-width: 380px; }

  .road-step {
    padding-left: 0;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
  }

  .road-step-right {
    padding-right: 0;
    flex-direction: column;
  }

  .road-line { left: 20px; }

  .step-bubble {
    position: static;
    transform: none;
    margin-bottom: 12px;
  }

  .road-step:hover .step-bubble {
    transform: scale(1.1);
  }

  .step-content {
    max-width: 100%;
    width: 100%;
    margin-left: 36px;
  }

  .road-steps { padding-left: 20px; }
  .road-vehicle { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item.gallery-wide { grid-column: span 2; }
  .gallery-item.gallery-tall { grid-row: span 2; }
}

@media (max-width: 767px) {
  .section-padding { padding: 64px 0; }

  .hero-headline { font-size: 2.2rem; }

  .journey-icons { gap: 8px; }
  .j-icon { min-width: 52px; padding: 10px; }
  .j-icon i { font-size: 1.1rem; }

  .careers-track .career-card { min-width: 230px; }

  .story-card { min-width: 290px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.gallery-tall { grid-row: span 1; }
  .gallery-item.gallery-wide { grid-column: span 2; }

  .contact-form, .contact-info { padding: 24px 20px; }

  .glass-nav .navbar-nav { padding: 16px 0; gap: 4px !important; }

  .why-circle { border-radius: var(--radius); aspect-ratio: auto; padding: 20px; }
}

@media (max-width: 480px) {
  .hero-stat { flex-direction: row; gap: 6px; align-items: center; }
  .stat-num { font-size: 1.3rem; }

  .careers-track .career-card { min-width: 200px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item.gallery-wide { grid-column: span 1; }
  .gallery-item.gallery-tall { grid-row: span 1; }

  .dest-countries-row { gap: 10px; }
}

/* ---- Accessibility ---- */
:focus-visible {
  outline: 2px solid var(--green-fresh);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
