/* =============================================
   ROOT VARIABLES & RESET
   ============================================= */
:root {
  /* New Palette */
  --navy: #3D52A0;
  --navy-dark: #2e3f7a;
  --navy-mid: #3D52A0;
  --navy-light: #4a60b8;
  --purple: #3D52A0;
  --purple-mid: #7091E6;
  --purple-light: #8697C4;
  --gold: #7091E6;
  --gold-light: #ADBBDA;
  --white: #FFFFFF;
  --off-white: #EDE8F5;
  --text-light: #ADBBDA;
  --text-muted: #8697C4;
  --glass: rgba(61, 82, 160, 0.08);
  --glass-border: rgba(61, 82, 160, 0.2);
  --gradient-main: linear-gradient(135deg, #3D52A0 0%, #4a60b8 50%, #7091E6 100%);
  --gradient-accent: linear-gradient(135deg, #3D52A0, #7091E6);
  --gradient-gold: linear-gradient(135deg, #7091E6, #ADBBDA);
  --shadow-lg: 0 25px 60px rgba(61, 82, 160, 0.25);
  --shadow-card: 0 8px 32px rgba(61, 82, 160, 0.15);
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  background: #EDE8F5;
  color: #3D52A0;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   UTILITY
   ============================================= */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D52A0;
  background: rgba(61, 82, 160, 0.1);
  border: 1px solid rgba(61, 82, 160, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #000000;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.5);
  filter: brightness(1.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  border: 1.5px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

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

.play-icon {
  width: 20px;
  height: 20px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(61, 82, 160, 0.2);
  box-shadow: 0 4px 30px rgba(61, 82, 160, 0.12);
}

.nav-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-icon.small {
  width: 28px;
  height: 28px;
}

.logo-text {
  font-family: 'Comfortaa', cursive;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-accent {
  color: #859acf;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  color: #2e3f7a;
  background: rgba(61, 82, 160, 0.1);
}

.nav-cta {
  background: var(--gradient-main);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 16px rgba(61, 82, 160, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(61, 82, 160, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  margin-left: auto;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #3D52A0;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #3D52A0 0%, #4a60b8 40%, #7091E6 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(173, 187, 218, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(61, 82, 160, 0.35) 0%, transparent 60%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(173, 187, 218, 0.35);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(110vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(237, 232, 245, 0.4);
  color: #EDE8F5;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00ff2f;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(2.0);
    opacity: 0.8;
  }
}

.hero-title {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  font-weight: 700;
  color: #000000;
  font-style: bold;
  margin-bottom: 0.8rem;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 2.0vw, 1.4rem);
  font-weight: 500;
  color: #000000;
  font-style: normal;
  margin-bottom: 1rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 500px;
  color: #000000;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 100px;
  align-items: center;
  animation: fadeUp 0.9s 0.5s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #EDE8F5;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-image-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(112, 145, 230, 0.4) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  max-width: 560px;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(61, 82, 160, 0.2);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, opacity 0.8s ease-in-out;
}

.hero-img.fade-out {
  opacity: 0;
}

.slider-dots {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #7091E6;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background-color: #7091E6;
  transform: scale(1.2);
}

.slider-dots .dot:hover {
  background-color: rgba(112, 145, 230, 0.4);
}

.hero-img:hover {
  transform: scale(1.02) translateY(-4px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeUp 1s 1s ease both;
  z-index: 5;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #ADBBDA;
  border-bottom: 2px solid #ADBBDA;
  transform: rotate(45deg);
  animation: bounce 1.6s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
  background: linear-gradient(135deg, #3D52A0, #7091E6);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  background: #EDE8F5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(237, 232, 245, 0.9));
  border: 1px solid rgba(61, 82, 160, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(112, 145, 230, 0.08), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(61, 82, 160, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.card-highlight {
  background: linear-gradient(145deg, rgba(112, 145, 230, 0.15), rgba(61, 82, 160, 0.1));
  border-color: rgba(61, 82, 160, 0.35);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  padding: 12px;
  transition: var(--transition);
}

.service-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-icon-wrap {
  background: rgba(112, 145, 230, 0.12);
  border-color: rgba(61, 82, 160, 0.3);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #3D52A0;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #7091E6;
  transition: var(--transition);
}

.service-link:hover {
  letter-spacing: 0.05em;
}

/* =============================================
   COUNTRIES WE SERVE (DESTINATIONS)
   ============================================= */
.destinations-section {
  background: linear-gradient(180deg, #EDE8F5 0%, #ADBBDA 100%);
  position: relative;
  overflow: hidden;
}

.destinations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7091E6, transparent);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.destination-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(237, 232, 245, 0.98));
  border: 1px solid rgba(61, 82, 160, 0.15);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dest-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, background-image 0.5s ease-in-out;
  z-index: -1;
  pointer-events: none;
}

.dest-card-bg.active {
  opacity: 0.3;
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3D52A0, #7091E6);
  opacity: 0;
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(61, 82, 160, 0.15);
  border-color: rgba(61, 82, 160, 0.3);
}

.destination-card:hover::before {
  opacity: 1;
}

.dest-region {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3D52A0;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(61, 82, 160, 0.1);
}

.dest-countries {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dest-countries li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #4a60b8;
  transition: var(--transition);
}

.dest-countries li:hover {
  color: #3D52A0;
  transform: translateX(4px);
}

.flag {
  font-size: 1.4rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* =============================================
   WHY US
   ============================================= */
.why-section {
  background: #EDE8F5;
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 12px rgba(61, 82, 160, 0.3);
}

.why-item strong {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.why-item p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.why-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(237, 232, 245, 0.95));
  border: 1px solid rgba(61, 82, 160, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

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

.why-card.accent-card {
  background: linear-gradient(145deg, rgba(112, 145, 230, 0.15), rgba(61, 82, 160, 0.08));
  border-color: rgba(61, 82, 160, 0.35);
}

.why-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #3D52A0;
  margin-bottom: 0.4rem;
}

.why-card-label {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: linear-gradient(180deg, #ADBBDA 0%, #EDE8F5 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(237, 232, 245, 0.95));
  border: 1px solid rgba(61, 82, 160, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(112, 145, 230, 0.15);
  font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(61, 82, 160, 0.25);
}

.test-stars {
  color: #7091E6;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.test-quote {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 2px solid rgba(61, 82, 160, 0.3);
}

.test-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.test-role {
  font-size: 0.82rem;
  color: #7091E6;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  background: #EDE8F5;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item strong {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-detail-item p {
  color: #000000;
  font-size: 0.92rem;
}

.contact-form-wrap {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(237, 232, 245, 0.95));
  border: 1px solid rgba(61, 82, 160, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #3D52A0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(61, 82, 160, 0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #3D52A0;
  font-family: inherit;
  font-size: 0.93rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8697C4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7091E6;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(112, 145, 230, 0.15);
}

.form-group select option {
  background: #EDE8F5;
  color: #3D52A0;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-main);
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-weight: 900;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.form-success p {
  color: var(--text-light);
}

/* =============================================
   WHATSAPP BUTTON
   ============================================= */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem 0.75rem 0.9rem;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  margin: 1.2rem 0 0.4rem;
  width: fit-content;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  background: #1ebe5d;
}

.whatsapp-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #3D52A0;
  position: relative;
}

.footer-wave {
  line-height: 0;
  background: #EDE8F5;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.footer-body {
  background: #3D52A0;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-style: italic;
  color: #ADBBDA;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EDE8F5;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: #7091E6;
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ADBBDA;
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom em {
  color: #ADBBDA;
  font-style: italic;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-cards {
    max-width: 500px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 90px;
  }

  .hero-content {
    max-width: 100%;
    padding: 2rem 1.5rem 1rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrap {
    padding: 1rem 1.5rem 2rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(237, 232, 245, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

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

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

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-stats {
    gap: 1rem;
  }
}