/* =========================
   RESET & BASE
========================= */

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

body {
  font-family: 'DM Sans', sans-serif;
  color: #1e293b;
  background: #f8fafc;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

/* =========================
   CONTAINERS
========================= */

.container {
  width: 90%;
  max-width: 1152px;
  margin: auto;
}

.container-narrow {
  width: 90%;
  max-width: 768px;
  margin: auto;
}

.container-narrow2 {
  width: 90%;
  max-width: 672px;
  margin: auto;
}

.section {
  padding: 64px 24px;
}

.section-white  { background: #ffffff; }
.section-grey   { background: #f1f5f9; }
.section-purple { background: #eef2ff; }

.section-title {
  font-weight: 800;
  font-size: 28px;
  color: #1e293b;
}

.section-subtitle {
  color: #64748b;
  margin-top: 12px;
}

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

.grid {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; }

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

.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  overflow: hidden;
  background: #1e3a8a;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(30, 58, 138, 0.70) 0%,
    rgba(30, 58, 138, 0.60) 50%,
    rgba(23, 37, 84, 0.80) 100%
  );
}

.hero-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1152px;
  margin: auto;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-logo {
  height: 40px;
  width: auto;
}

.hero-brand h1 {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
}

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1d4ed8;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  transition: 0.3s;
}

.nav-phone-btn:hover {
  background: #eff6ff;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 24px 96px;
  max-width: 900px;
  margin: auto;
}

.hero-content h2 {
  color: #fff;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.2;
}

.hero-content p {
  color: #dbeafe;
  margin-top: 16px;
  max-width: 640px;
  font-size: 18px;
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-white {
  background: #fff;
  color: #1d4ed8;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 600;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-green {
  background: #22c55e;
  color: #fff;
}

/* =========================
   FEATURE CARDS (Why Choose Us)
========================= */

.feature-card {
  background: #f0f9ff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #dbeafe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-card h3 {
  font-weight: 600;
  font-size: 19px;
  color: #1e293b;
}

.feature-card p {
  margin-top: 8px;
  color: #64748b;
}

/* =========================
   DESTINATION CARDS
========================= */

.dest-grid {
  gap: 24px;
}

.dest-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
  cursor: pointer;
}

.dest-img-wrap {
  height: 190px;
  overflow: hidden;
}

.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-img-wrap img {
  transform: scale(1.1);
}

.dest-label {
  padding: 16px;
  background: #fff;
}

.dest-label h3 {
  font-weight: 600;
  font-size: 19px;
  color: #1e293b;
}

/* =========================
   HOW IT WORKS
========================= */

.step-card {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.step-card h3 {
  font-weight: 600;
  font-size: 19px;
  color: #1e293b;
}

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

.form-box {
  max-width: 480px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
  padding: 32px;
}

.form-title {
  font-weight: 800;
  font-size: 26px;
  color: #1e293b;
  text-align: center;
}

.form-box form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}

.form-box label {
  display: block;
  margin: 16px 0 6px;
  font-weight: 500;
  color: #374151;
}

.form-box label:first-of-type {
  margin-top: 0;
}

.form-box input,
.form-box select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: 0.2s;
}

.form-box input:focus,
.form-box select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-box button {
  margin-top: 24px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: #1d4ed8;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  opacity: 0.9;
}

.form-success {
  text-align: center;
  padding: 32px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.form-success p {
  font-weight: 600;
  font-size: 18px;
  color: #16a34a;
}

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

.testimonial-card {
  background: #f8fafc;
  padding: 24px;
  border-radius: 16px;
  text-align: left;
}

.stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: #475569;
  font-style: italic;
}

.testimonial-name {
  font-weight: 600;
  font-style: normal;
  color: #1e293b;
  margin-top: 16px !important;
}

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

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  color: #1e293b;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

.faq-toggle i {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer.open {
  max-height: 240px;
  padding: 0 20px 20px;
}

.faq-answer p {
  color: #64748b;
}

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

.final-cta {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  text-align: center;
  padding: 80px 24px;
}

.final-cta h2 {
  color: #fff;
  font-weight: 800;
  font-size: 28px;
}

.final-cta p {
  color: #dbeafe;
  margin-top: 16px;
  font-size: 18px;
}

.hero-btn-group.center {
  margin-top: 32px;
}

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

footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 40px 24px;
}

.footer-brand {
  font-weight: 700;
  font-size: 18px;
}

.footer-tagline,
.footer-phone {
  margin-top: 6px;
  color: #94a3b8;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer-toggle {
  background: transparent;
  border: 1px solid #475569;
  color: #cbd5e1;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.footer-toggle:hover {
  border-color: #facc15;
  color: #facc15;
}

.footer-legal-panel {
  text-align: left;
  max-width: 700px;
  margin: 20px auto 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 22px 25px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.footer-legal-panel h4 {
  color: #facc15;
  font-size: 15px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal-panel p {
  margin-bottom: 10px;
}

.footer-copy {
  margin-top: 24px;
  font-size: 12px;
  color: #64748b;
}

/* =========================
   FLOATING WHATSAPP
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =========================
   STICKY MOBILE CTA
========================= */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: none;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 12px;
  gap: 12px;
}

.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
}

.sticky-cta .call { background: #2563eb; }
.sticky-cta .wa   { background: #22c55e; }

/* =========================
   SCROLL ANIMATION
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 991px) {
  .hero-content h2 { font-size: 34px; }
}

@media (max-width: 768px) {

  .nav-phone-btn { display: none; }

  .hero-content { padding: 48px 20px 80px; }
  .hero-content h2 { font-size: 28px; }
  .hero-content p  { font-size: 16px; }

  .section { padding: 48px 20px; }
  .section-title { font-size: 24px; }

  .grid { gap: 20px; margin-top: 32px; }

  .sticky-cta { display: flex; }

  body { padding-bottom: 70px; }

  .whatsapp-float { bottom: 80px; }

}
