/* ===== VacationPe Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #1a3c5e;
  --accent: #e8873a;
  --accent2: #2a9d8f;
  --light: #f8f5f0;
  --white: #ffffff;
  --dark: #0f1f30;
  --text: #3a3a3a;
  --text-light: #777;
  --shadow: 0 4px 24px rgba(26,60,94,0.10);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
}

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

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

/* ===== TOPBAR ===== */
.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  padding: 7px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: #e8d5bb; transition: color .2s; }
.topbar a:hover { color: var(--accent); }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ===== NAVBAR ===== */
nav {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,60,94,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.logo small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--light); }
.nav-links .btn-nav {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-links .btn-nav:hover { background: #c96e28; }

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

/* ===== BLOG DROPDOWN ===== */
.nav-item-dropdown {
  position: relative;
}
.nav-item-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item-dropdown > a::after {
  content: '▾';
  font-size: 11px;
  color: var(--text-light);
  transition: transform 0.22s;
  line-height: 1;
}
.nav-item-dropdown:hover > a::after,
.nav-item-dropdown:focus-within > a::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(26,60,94,0.14);
  border: 1px solid rgba(26,60,94,0.08);
  min-width: 210px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
/* small arrow tip pointing up */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 22px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(26,60,94,0.08);
  border-top: 1px solid rgba(26,60,94,0.08);
  transform: rotate(45deg);
}
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  margin: 2px 6px;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  background: transparent;
}
.dropdown-menu li a:hover {
  background: var(--light);
  color: var(--accent);
  padding-left: 22px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 7%;
  max-width: 750px;
  animation: fadeUp .9s ease both;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,135,58,.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero-content p {
  color: rgba(255,255,255,.80);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: #c96e28; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  transition: all .2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ===== STATS ===== */
.stats-bar {
  background: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  padding: 28px 44px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
  flex: 1;
  min-width: 130px;
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-item .label { font-size: 12px; opacity: .8; margin-top: 4px; letter-spacing: .5px; }

/* ===== SERVICES STRIP ===== */
.services-strip {
  background: var(--accent2);
  color: #fff;
  padding: 14px 5%;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  font-size: 13px;
  font-weight: 500;
  scrollbar-width: none;
  white-space: nowrap;
}
.services-strip::-webkit-scrollbar { display: none; }
.service-tag { display: flex; align-items: center; gap: 6px; flex-shrink: 0; opacity: .9; }

/* ===== SECTIONS ===== */
.section { padding: 80px 6%; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}
.section-header p { color: var(--text-light); margin-top: 10px; font-size: 1rem; }

/* ===== TABS ===== */
.tab-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 26px;
  border-radius: 30px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: all .2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== DESTINATION GRID ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(26,60,94,.16); }
.dest-card-img {
  height: 170px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.dest-card-body { padding: 16px 18px 20px; }
.dest-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.dest-card-body p { font-size: 13px; color: var(--text-light); }

/* ===== REVIEWS ===== */
.rating-summary {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow);
}
.rating-badge .platform { font-size: 22px; }
.rating-badge .score {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}
.rating-badge .sub { font-size: 12px; color: var(--text-light); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.reviewer-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 14px; color: var(--primary); }
.reviewer-date { font-size: 12px; color: var(--text-light); }
.stars { color: #f5a623; font-size: 13px; margin-bottom: 8px; }
.review-text { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* ===== VIDEO TESTIMONIALS ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.video-thumb {
  background: var(--primary);
  border-radius: var(--radius);
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform .2s;
}
.video-thumb:hover { transform: scale(1.03); }
.play-btn {
  width: 48px; height: 48px;
  background: rgba(232,135,58,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 2;
  transition: transform .2s;
}
.video-thumb:hover .play-btn { transform: scale(1.15); }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  text-align: center;
  padding: 80px 6%;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
.cta-section p { opacity: .8; max-width: 500px; margin: 0 auto 34px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  background: #fff;
  color: var(--primary);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: .2s;
}
.btn-cta-white:hover { background: var(--accent); color: #fff; }
.btn-cta-outline {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  transition: .2s;
}
.btn-cta-outline:hover { border-color: #fff; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 60px 6% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; }
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .2s;
}
.social-link:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  opacity: .65;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ===== PAGE HERO (sub pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: #fff;
  padding: 80px 6% 60px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}
.page-hero p { opacity: .75; font-size: 1.05rem; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 20px;
}
.about-text p { color: var(--text); margin-bottom: 16px; }
.founder-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.founder-card-img {
  height: 300px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.6);
}
.founder-card-body { padding: 28px; }
.founder-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
}
.founder-card-body .role { color: var(--accent); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-info-card .icon { font-size: 2rem; margin-bottom: 12px; }
.contact-info-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--text); }
.contact-info-card a:hover { color: var(--primary); }

/* ===== PAYMENT PAGE ===== */
.payment-form-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 42px 40px;
}
.payment-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 28px;
  text-align: center;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .2s;
  background: var(--light);
  color: var(--text);
}
.form-group input:focus { outline: none; border-color: var(--primary); background: #fff; }
.btn-pay {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
  margin-top: 8px;
}
.btn-pay:hover { background: #c96e28; }
.payment-note { text-align: center; margin-top: 16px; font-size: 12px; color: var(--text-light); }
.upi-grid { display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.upi-tag {
  background: var(--light);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .2s;
  background: var(--light);
  color: var(--text);
  resize: vertical;
  min-height: 120px;
}
.form-group textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}
.btn-submit:hover { background: var(--accent); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp .7s ease both; }

/* ===== HIDDEN (tabs) ===== */
.tab-content { display: none; }
.tab-content.active { display: grid; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 20px 5%; box-shadow: 0 8px 24px rgba(0,0,0,.1); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); min-width: 45%; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { font-size: 11px; }

  /* Mobile dropdown: show inline under Blog */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    margin: 4px 0 4px 14px;
    padding: 4px 0;
    display: none;
  }
  .dropdown-menu::before { display: none; }
  .nav-item-dropdown.open .dropdown-menu { display: block; }
  .nav-item-dropdown > a::after { margin-left: auto; }
}
