:root{
  --primary:#0066cc;
  --primary-light:#e6f0ff;
  --primary-dark:#004c99;
  --dark:#111;
  --dark-light:#333;
  --muted:#666;
  --muted-light:#888;
  --bg:#fafafa;
  --card:#fff;
  --border:#e0e0e0;
}

*{box-sizing:border-box; margin:0; padding:0;}
body, html {
  margin:0;
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  font-size:17px;
  line-height:1.7;
  color:var(--dark);
  background:var(--bg);
  font-weight:400;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* ================= FIXED NAVBAR ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  transform: translateZ(0);
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LOGO - Fixed to prevent 'x' */
.logo {
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: 200px;
  object-fit: contain;
}

/* DESKTOP NAV LINKS - Always visible */
.nav-links {
  display: flex;
  gap: 35px;
  font-weight: 600;
  align-items: center;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover:after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

.lang-btn {
  padding: 5px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
}

.lang-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.lang-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  text-decoration: none;
}

/* ===== MOBILE STYLES (992px and below) ===== */
@media (max-width: 992px) {
  /* Mobile menu toggle button */
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
    flex-shrink: 0;
  }
  
  .logo {
    order: 1;
    flex: 1;
    text-align: center;
  }
  
  .logo img {
    width: 180px;
    height: 50px;
  }
  
  .nav {
    gap: 15px;
  }
  
  /* Mobile navigation panel */
  .mobile-nav-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 30px rgba(0,0,0,0.15);
    padding: 80px 30px 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .mobile-nav-panel.active {
    left: 0;
  }
  
  /* Mobile overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    backdrop-filter: blur(3px);
  }
  
  .mobile-overlay.active {
    display: block;
  }
  
  /* Mobile navigation links */
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .mobile-nav-links a {
    font-size: 1.2rem;
    padding: 20px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: left;
    font-weight: 500;
  }
  
  .mobile-nav-links a:hover {
    color: var(--primary);
    background: var(--primary-light);
  }
  
  .mobile-nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding-left: 20px;
  }
  
  /* Close button */
  .mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--dark);
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    line-height: 1;
    z-index: 2001;
  }
  
  /* Mobile language switcher */
  .mobile-language-switcher {
    display: flex;
    gap: 15px;
    margin: 40px 0 0;
    justify-content: center;
  }
  
  .mobile-language-switcher .lang-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
  
  /* Hide desktop navigation on mobile */
  .nav-links {
    display: none;
  }
  
  /* Prevent body scroll when mobile menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

/* Prevent scrolling issues on mobile */
@media (max-width: 768px) {
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  .section {
    padding: 40px 16px;
  }
  
  .journey-text-card {
    padding: 25px 20px;
    font-size: 1rem;
    margin: 20px auto;
  }
}

/* ================= HERO SECTION ================= */
.hero-section {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: white;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
  min-height: 40px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: white;
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 200px;
}

.btn-secondary-hero {
  background: transparent;
  color: white;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 200px;
}

.btn-primary-hero:hover {
  background: #f0f0f0;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-secondary-hero:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    min-height: 50vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 20px;
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  .section {
    padding: 50px 16px;
    scroll-margin-top: 80px;
  }
}

.container {
  max-width: 900px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--dark);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

/* ================= JOURNEY TEXT ================= */
.journey-text-card {
  background: var(--card);
  border-radius: 16px;
  padding: 50px;
  border: 1px solid var(--border);
  margin: 40px auto;
  max-width: 800px;
  white-space: pre-line;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--muted);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.journey-text-card ul {
  margin-top: 25px;
  padding-left: 25px;
}

.journey-text-card li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 10px;
}

.journey-text-card li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

@media (max-width: 768px) {
  .journey-text-card {
    padding: 30px 20px;
    font-size: 1rem;
  }
}

/* ================= DESTINATIONS MARQUEE ================= */
.destinations {
  background: var(--bg);
  overflow: hidden;
  position: relative;
  padding: 60px 0;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.dest-card {
  flex: 0 0 auto;
  width: 200px;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.dest-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.dest-card h4 {
  padding: 20px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: var(--dark);
}

.marquee-container:before,
.marquee-container:after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container:before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.marquee-container:after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.destination-link {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 40px;
  border: none;
  cursor: pointer;
}

.destination-link:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,102,204,0.3);
  text-decoration: none;
}

.text-center {
  text-align: center;
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
  background: var(--bg);
  padding: 80px 20px;
}

.testimonial-card {
  background: var(--card);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark-light);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-text:before {
  content: '"';
  font-size: 5rem;
  color: var(--primary-light);
  position: absolute;
  top: -30px;
  left: -20px;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.author-info h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.author-info p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

/* ================= WHY TO ABROAD ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.why-item {
  padding: 35px 30px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  text-align: center;
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.why-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.why-item p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ================= FINAL CTA ================= */
.cta-section {
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-btn {
  background: #fff;
  color: var(--primary);
  padding: 18px 40px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 220px;
}

.cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 3px solid rgba(255,255,255,0.4);
}

.cta-btn:hover {
  background: #f0f0f0;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ================= FORM MODAL ================= */
.modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}

.modal-header {
  background: var(--primary);
  color: white;
  border-radius: 16px 16px 0 0;
  padding: 30px;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 600;
}

.form-label {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1rem;
}

.form-control, .form-select {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.15);
  outline: none;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-submit {
  background: var(--primary);
  color: white;
  padding: 18px 40px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  width: 100%;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

/* ================= FOOTER ================= */
footer {
  background: #0f0f0f;
  color: #aaa;
  padding: 80px 20px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 70px;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #aaa;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links a:hover {
    transform: none;
  }
}