/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0A2F5E;
  --navy-light: #1A5299;
  --sky: #4A9AE8;
  --sky-light: #7AB8F0;
  --white: #ffffff;
  --off-white: #f5f8ff;
  --text: #1a1a2e;
  --text-muted: #5580aa;
  --gold: #C9A84C;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: var(--sky);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-sm {
  padding: 9px 22px;
  font-size: 13px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
}
.btn-sm:hover { background: var(--sky); transform: translateY(-2px); }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 42px;
  color: var(--navy);
  font-weight: 700;
}
.section-header.light h2 { color: var(--white); }
.section-header.light .section-tag { color: var(--sky-light); }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,47,94,0.10);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  padding: 8px 60px;
  box-shadow: 0 4px 30px rgba(10,47,94,0.15);
}
.logo img { height: 90px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}
.nav-links > li > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links > li > a:hover { color: var(--sky); background: var(--off-white); }

/* Enquiry button in nav */
.nav-feedback-btn {
  background: transparent !important;
  color: var(--navy) !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  border: 2px solid var(--navy) !important;
}
.nav-feedback-btn:hover { background: var(--off-white) !important; }

.nav-enquiry-btn {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
}
.nav-enquiry-btn:hover { background: var(--sky) !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(10,47,94,0.15);
  min-width: 220px;
  padding: 8px;
  list-style: none;
  z-index: 999;
  pointer-events: auto;
}
.dropdown:hover .dropdown-menu { display: block; animation: dropDown 0.2s ease; }
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--navy);
  border-radius: 8px;
  transition: all 0.2s;
}
.dropdown-menu li a:hover { background: var(--off-white); color: var(--sky); }
.dropdown-menu li a i { width: 16px; color: var(--sky); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-img.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,47,94,0.55) 0%, rgba(10,47,94,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

.hero-tag {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 80px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollPulse 1.5s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.5);} 50%{opacity:1;transform:scaleY(1);} }

/* ─── STATS ─── */
.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--navy);
  padding: 50px 60px;
}
.stat {
  text-align: center;
  padding: 20px 60px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat h3 {
  font-size: 42px;
  color: var(--sky-light);
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}
.stat p { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

/* ─── SERVICES ─── */
.services { padding: 100px 60px; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(10,47,94,0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(10,47,94,0.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(10,47,94,0.12); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--off-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon i { font-size: 22px; color: var(--sky); }
.service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── PACKAGES ─── */
.packages { padding: 100px 60px; background: var(--white); }
.domestic-section { background: var(--off-white); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.pkg-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(10,47,94,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(10,47,94,0.06);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(10,47,94,0.14); }
.pkg-img { position: relative; height: 200px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.07); }
.pkg-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.pkg-body { padding: 24px; }
.pkg-body h3 { font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.pkg-stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; }
.pkg-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.pkg-price { font-size: 14px; color: var(--text-muted); }
.pkg-price strong { font-size: 20px; color: var(--navy); font-family: 'Cormorant Garamond', serif; }
.pkg-meta { display: flex; gap: 16px; border-top: 1px solid var(--off-white); padding-top: 14px; }
.pkg-meta span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.pkg-meta i { color: var(--sky); }

/* ─── ABOUT ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.about-img { overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
}
.about-content .section-tag { text-align: left; margin-bottom: 12px; }
.about-content h2 { font-size: 38px; color: var(--navy); margin-bottom: 24px; }
.about-content p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 16px; }
.about-highlights {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.about-highlights div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(10,47,94,0.08);
}
.about-highlights i { color: var(--sky); }


/* ─── CONTACT ─── */
.contact { padding: 100px 60px; background: var(--navy-light); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
}
.contact-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.contact-card i { font-size: 28px; color: var(--sky-light); margin-bottom: 16px; }
.contact-card h4 { color: var(--white); font-size: 16px; margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.contact-card p a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; display: block; margin: 4px 0; }
.contact-card p a:hover { color: var(--sky-light); }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: rgba(255,255,255,0.65); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 70px 60px 50px;
}
.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.social-links a:hover { background: var(--sky); border-color: var(--sky); color: var(--white); }
.footer-links h4 { color: var(--white); font-size: 15px; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links ul a:hover { color: var(--sky-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: whatsappPulse 2s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #20ba5a; }
@keyframes whatsappPulse {
  0%,100%{ box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%{ box-shadow: 0 6px 36px rgba(37,211,102,0.65); }
}

/* ─── FADE-IN ANIMATION ─── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #navbar { padding: 10px 24px; }
  #navbar.scrolled { padding: 8px 24px; }
  .logo img { height: 70px; }

  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 8px; border-bottom: 1px solid #f0f4ff; }
  .dropdown-menu { position: static; box-shadow: none; padding: 0 0 0 16px; display: none; }
  .dropdown.open .dropdown-menu { display: block; }

  .hero-content h1 { font-size: 48px; }
  .stats { padding: 40px 24px; }
  .stat { padding: 20px 30px; }
  .services { padding: 70px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .packages { padding: 70px 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-img { height: 300px; }
  .about-content { padding: 50px 30px; }
  .enquiry { padding: 70px 24px; }
  .enquiry-form { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact { padding: 70px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 50px 24px 30px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }
}

/* ─── FEEDBACK ─── */
.feedback { padding: 100px 60px; background: var(--off-white); }
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.feedback-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(10,47,94,0.07);
  border: 1px solid rgba(10,47,94,0.06);
  transition: all 0.3s ease;
}
.feedback-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(10,47,94,0.12); }
.feedback-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.feedback-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.feedback-author { display: flex; align-items: center; gap: 14px; }
.feedback-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sky-light);
}
.feedback-author h4 { font-size: 15px; color: var(--navy); font-family: 'DM Sans', sans-serif; font-weight: 600; }
.feedback-author span { font-size: 12px; color: var(--text-muted); }

@media (max-width: 768px) {
  .feedback { padding: 70px 24px; }
  .feedback-grid { grid-template-columns: 1fr; }
}

/* ─── PLAN MY TRIP FORM ─── */
.enquiry { padding: 100px 60px; background: var(--navy); }
.enquiry .section-tag { color: var(--sky-light); }
.enquiry h2 { color: var(--white); }
.enquiry-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { margin-bottom: 24px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--navy); letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #dde8f5;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border 0.2s;
  background: #fafcff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sky); }
.form-group textarea { resize: vertical; }
.submit-btn { width: 100%; font-size: 16px; padding: 16px; border-radius: 12px; }
.form-success { text-align: center; color: #2e7d32; font-size: 15px; font-weight: 500; margin-top: 16px; }

@media (max-width: 768px) {
  .enquiry { padding: 70px 24px; }
  .enquiry-form { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FEEDBACK FORM ─── */
.feedback-form-wrap {
  max-width: 700px;
  margin: 0 auto 70px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(10,47,94,0.1);
  border: 1px solid rgba(10,47,94,0.06);
}
.feedback-form-wrap h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}

/* Star Rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  justify-content: center;
}
.star-rating span {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.stars i {
  font-size: 28px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.stars i:hover,
.stars i.active { color: var(--gold); transform: scale(1.15); }

/* Form grid */
.feedback-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* Photo upload */
.photo-upload {
  border: 2px dashed #d0e4f7;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  color: var(--text-muted);
}
.photo-upload:hover { border-color: var(--sky); background: #f0f8ff; }
.photo-upload i { font-size: 28px; color: var(--sky); display: block; margin-bottom: 8px; }
.photo-upload span { font-size: 14px; }
.photo-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.photo-preview {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.photo-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--sky-light);
}
.submit-fb-btn { width: 100%; margin-top: 24px; font-size: 15px; padding: 15px; }

@media (max-width: 768px) {
  .feedback-form-wrap { padding: 28px 20px; }
  .feedback-form-grid { grid-template-columns: 1fr; }
  .star-rating { flex-direction: column; gap: 8px; }
}

/* ─── OTHER DESTINATION INPUT ─── */
#enquiryOther, #fbOther {
  border: 1.5px solid #dde8f5;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border 0.2s;
  background: #fafcff;
}
#enquiryOther:focus, #fbOther:focus { border-color: var(--sky); }