/* NOVA4TRAVEL — SHARED STYLES */

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

:root {
  --navy: #0d2240;
  --navy-mid: #1a3a5c;
  --red: #c0392b;
  --red-bright: #e74c3c;
  --logo-pink:   #c0305a;
  --logo-orange: #e8612a;
  --gold: #f0a500;
  --white: #ffffff;
  --light-gray: #f4f6f9;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --wa-green: #25d366;
  --nav-bg: #111c2e;
  /* Premium Form Tokens */
  --primary-gradient: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  --bg-dark: #0a1d37;
  --bg-card: #102a43;
  --border-color: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: #fff; overflow-x: hidden; }

/* ── SCROLL BAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: linear-gradient(#0ea5e9, #38bdf8); border-radius: 3px; }

/* ── NAV ── */
nav {
  background: #fff;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #c0305a 0%, #e8612a 60%, #f0a500 100%) 1;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--logo-pink);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: linear-gradient(90deg, #c0305a, #e8612a);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* ── DROPDOWN ── */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 10px 0;
  display: none;
  z-index: 1000;
  list-style: none;
  animation: slideInUp 0.3s ease;
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.dropdown-menu li a:hover {
  background: var(--light-gray);
  color: var(--logo-pink);
}
.dropdown-menu li a::after { display: none; }

/* ── MODAL POPUP ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,34,64,0.85);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-container {
  width: 90%;
  max-width: 1000px;
  height: 85vh;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-container { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 10;
  color: var(--navy);
  font-size: 20px;
  font-weight: bold;
  transition: background .2s;
}
.modal-close:hover { background: var(--light-gray); color: var(--logo-pink); }
.modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #c0305a 0%, #e8612a 100%);
  color: #fff; border: none; padding: 10px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  transition: opacity .2s, transform .15s; text-decoration: none;
  box-shadow: 0 2px 12px rgba(192,48,90,.35);
}
.btn-whatsapp:hover { opacity: .88; transform: translateY(-1px); }

.btn-blue {
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  color: #fff; border: none; padding: 10px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  transition: opacity .2s, transform .15s; text-decoration: none;
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.35);
}
.btn-blue:hover { opacity: .88; transform: translateY(-1px); }

.nav-cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; z-index: 110; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed; top: 66px; left: 0; right: 0;
  background: var(--nav-bg); z-index: 99;
  padding: 20px 0 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border-top: 1px solid rgba(192,48,90,.2);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open { display: block !important; animation: slideDown 0.25s ease; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a { display: block; padding: 13px 28px; color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); transition: background .2s, color .2s; }
.mobile-menu ul li a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.mobile-menu .mobile-cta { margin: 16px 28px 0; display: flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, #c0305a 0%, #e8612a 100%); color: #fff; padding: 13px 20px; border-radius: 7px; font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.mobile-menu .mobile-cta:hover { opacity: .88; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #112340 60%, #0a1628 100%);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(10, 22, 40, 0.5), rgba(10, 22, 40, 0.8)), url('../Hero (2).png') center/cover no-repeat;
  opacity: 0.9;
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.page-hero-breadcrumb { color: rgba(255,255,255,0.5); font-size: 12px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero h1 { font-size: 52px; color: #fff; margin-bottom: 14px; line-height: 1.1; font-weight: 700; }
.page-hero h1 em { font-style: normal; background: linear-gradient(135deg, #c0305a, #e8612a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.7; }

/* ── SECTION TITLE ── */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 36px; color: var(--text-dark); margin-bottom: 10px; font-weight: 700; }
.section-title p { color: var(--text-mid); font-size: 14px; margin-bottom: 14px; }
.underline { width: 50px; height: 3px; background: linear-gradient(90deg,#c0305a,#e8612a); margin: 0 auto; border-radius: 2px; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 56px 60px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 12.5px; line-height: 1.7; margin: 12px 0 18px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: transform .3s, background .3s, border-color .3s; }
.social-link:hover { background: var(--primary-gradient); border-color: transparent; transform: translateY(-3px); }
footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.58); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.contact-item { display: flex; gap: 10px; margin-bottom: 13px; color: rgba(255,255,255,0.65); font-size: 12.5px; align-items: flex-start; }
.contact-icon { color: var(--logo-pink); font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.btn-wa-footer { display: flex; align-items: center; gap: 8px; background: var(--wa-green); color: #fff; padding: 12px 18px; border-radius: 7px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .2s; margin-top: 10px; justify-content: center; }
.btn-wa-footer:hover { background: #1da851; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; display: flex; justify-content: center; color: rgba(255,255,255,0.4); font-size: 12px; gap: 24px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: #fff; }


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .btn-whatsapp { display: none !important; }
  .hamburger { display: flex; }
  .page-hero { padding: 50px 20px; }
  .page-hero h1 { font-size: 36px; }
  footer { padding: 44px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
}

/* ── PREMIUM FORM COMPONENTS (Shared) ── */
.stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 0 20px;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-mid);
  transition: var(--transition);
  font-size: 14px;
}
.step-item.active .step-circle {
  background: var(--primary-gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 0 15px rgba(192, 48, 90, 0.4);
}
.step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-mid);
}
.step-item.active .step-label { color: var(--navy); }

.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.premium-card {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns for desktop */
    gap: 20px;
}

/* Stack form fields vertically on tablets and phones */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr !important; /* Forces 1 column */
        gap: 16px;
    }
}

.form-group { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
}

.form-group label { 
    font-size: 12px; 
    font-weight: 700; 
    color: var(--navy); 
    text-transform: uppercase; 
}

/* Fix 2: Prevent inputs from exceeding their parent containers */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;                /* Forces full width of the grid item */
    box-sizing: border-box;     /* Includes padding & border in total width */
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;

}
.form-group input:focus { border-color: var(--logo-pink); }

.btn-premium {
  background: var(--primary-gradient);
  color: #fff; border: none; padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-premium:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3); }

/* Toast Notification */
#toast-container { position: fixed; top: 80px; right: 20px; z-index: 9999; }
.toast {
  background: var(--primary-gradient);
  color: #fff; padding: 12px 24px; border-radius: 8px;
  margin-bottom: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  font-size: 14px; font-weight: 600;
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Navbar & Footer are now visible on all pages as requested */
