:root {
  --blue: #003264;
  --black: #202124;
  --white: #f8f9fa;
  --red: #8B0000;
}

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

body {
  font-family: 'Comic Neue', cursive;
  background-color: #f4f4f4;
  padding-top: 80px;
}

/* ===== HEADER (same across all pages) ===== */
.main-header {
  position: fixed; top: 0; left: 0;
  width: 100%; background: #fff;
  padding: 12px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000; height: 80px;
  transition: all 0.3s ease;
}
.header-container {
  width: 95%; max-width: 1300px;
  margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.logo { height: 100%; display: flex; align-items: center; }
.logo img { height: 55px; width: auto; }

.hamburger {
  display: none; flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 22px;
  cursor: pointer; z-index: 1001;
}
.hamburger span {
  height: 3px; background: var(--blue);
  border-radius: 2px; transition: all 0.3s ease;
}
.nav-menu {
  display: flex; align-items: center;
  gap: 10px; height: 100%;
}
.nav-menu a {
  color: var(--blue); text-decoration: none;
  font-weight: bold; font-size: 18px;
  padding: 5px; border-radius: 8px;
  transition: all 0.3s ease;
}
.nav-menu a:hover { background: rgba(0,50,100,0.1); }
.nav-menu a.active { background: var(--red); color: #fff; }

.dropdown { position: relative; }
.dropdown > a::after { content: ' ▼'; font-size: 0.6em; }
.dropdown-content {
  display: none; position: absolute;
  background: var(--red); min-width: 200px;
  padding: 10px 0; border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 1000;
}
.dropdown-content a {
  color: #fff; padding: 10px 20px;
  display: block; font-size: 16px; transition: all 0.2s ease;
}
.dropdown-content a:hover { background: var(--blue); }
.dropdown-content.show { display: block; }

@media (max-width: 992px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 80px; left: -100%;
    width: 280px; height: calc(100vh - 80px);
    background: var(--blue); flex-direction: column;
    align-items: flex-start; padding: 20px; gap: 10px;
    transition: left 0.3s ease; overflow-y: auto;
  }
  .nav-menu.show { left: 0; }
  .nav-menu a { color: #fff; width: 100%; }
  .dropdown { width: 100%; flex-direction: column; align-items: flex-start; }
  .dropdown-content { position: static; width: 100%; box-shadow: none; border-radius: 10px; margin-top: 5px; }
  .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* ===== BTN ===== */
.btn {
  background: var(--red); color: #fff;
  padding: 10px 22px; border-radius: 30px;
  text-decoration: none; font-weight: bold;
  font-size: 1rem; border: none; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.btn:hover { background: var(--blue); transform: translateY(-3px); }

/* ===== HERO ===== */
.pkg-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: url('../images/honeymoon_hero.jpg') center/cover no-repeat;
}
.pkg-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,50,100,0.6) 100%);
}
.pkg-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 40px 20px;
}
.pkg-hero-content h1 {
  font-size: 3rem; font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin-bottom: 12px;
}
.pkg-hero-content h1 span { color: #ffcc00; }
.pkg-hero-content p {
  font-size: 1.3rem; margin-bottom: 8px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.pkg-hero-content .price-tag {
  display: inline-block;
  background: var(--red); color: #fff;
  padding: 8px 24px; border-radius: 30px;
  font-size: 1.2rem; font-weight: bold;
  margin-top: 10px; margin-bottom: 20px;
}
.pkg-hero-content .price-tag span {
  text-decoration: line-through; opacity: 0.75; margin-right: 6px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--blue), #8B0000);
  padding: 40px 20px;
}
.stats-grid {
  max-width: 900px; margin: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-size: 2.5rem; font-weight: bold;
  color: #ffcc00; line-height: 1;
}
.stat-label { font-size: 0.9rem; margin-top: 6px; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2rem; }
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center; font-size: 2rem;
  color: var(--red); margin-bottom: 50px;
}
.section-title span { color: var(--blue); }
.section-title-pill {
  display: inline-block;
  background: #fff; border-radius: 30px;
  padding: 10px 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
  background: linear-gradient(to right, #8b0000, #003264);
  padding: 80px 20px;
  text-align: center;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px; max-width: 1200px; margin: auto;
}

.pkg-card {
  background: #fff; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
  text-align: left;
}
.pkg-card:hover { transform: translateY(-6px); }

.pkg-card-header {
  background: linear-gradient(135deg, var(--blue), #005499);
  padding: 18px 20px 14px;
  color: #fff;
}
.pkg-card-header-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 6px;
}
.pkg-card-header h3 { font-size: 1.15rem; flex: 1; }
.emi-badge {
  background: #ffcc00; color: #333;
  font-size: 0.7rem; font-weight: bold;
  padding: 3px 10px; border-radius: 20px;
  white-space: nowrap;
}
.pkg-duration {
  margin-top: 8px; font-size: 0.95rem;
  background: rgba(255,255,255,0.18);
  display: inline-block; padding: 3px 12px;
  border-radius: 20px;
}
.pkg-features {
  display: flex; gap: 16px; padding: 12px 20px;
  background: #f0f4ff; flex-wrap: wrap;
}
.pkg-feature {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--blue); font-weight: bold;
}
.pkg-feature i { color: var(--red); }

/* Card Image */
.pkg-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pkg-card:hover .pkg-card-img { transform: scale(1.04); }
.pkg-card-img-wrap { overflow: hidden; }

/* Dual Action Buttons */
.pkg-actions {
  display: flex; gap: 10px; margin-top: 12px;
}
.btn-details {
  flex: 1; text-align: center;
  padding: 10px 14px; border-radius: 30px;
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
  font-weight: bold; font-size: 0.88rem;
  text-decoration: none; transition: all 0.3s ease;
  display: inline-block;
}
.btn-details:hover { background: var(--blue); color: #fff; }
.btn-enquire-sm {
  flex: 1; text-align: center;
  padding: 10px 14px; border-radius: 30px;
  background: var(--red); color: #fff;
  border: none; font-weight: bold; font-size: 0.88rem;
  text-decoration: none; transition: all 0.3s ease;
  display: inline-block; cursor: pointer;
  font-family: 'Comic Neue', cursive;
}
.btn-enquire-sm:hover { background: var(--blue); }

/* Star Tabs */
.star-tabs {
  display: flex; border-bottom: 2px solid #eee;
  background: #fafafa;
}
.star-tab {
  flex: 1; padding: 10px 5px;
  text-align: center; cursor: pointer;
  font-weight: bold; font-size: 0.9rem;
  color: #666; border: none; background: none;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}
.star-tab.active {
  color: var(--blue);
  border-bottom: 3px solid var(--red);
  background: #fff;
}
.star-tab:hover { background: #f0f4ff; }

.star-panels { padding: 18px 20px 20px; }
.star-panel { display: none; }
.star-panel.active { display: block; }

.price-display { margin-bottom: 14px; }
.original-price {
  font-size: 1.1rem; color: #999;
  text-decoration: line-through; margin-right: 8px;
}
.discounted-price {
  font-size: 1.8rem; font-weight: bold;
  color: var(--red);
}
.per-person {
  display: block; font-size: 0.8rem;
  color: #666; margin-top: 2px;
}
.tc-note {
  font-size: 0.75rem; color: #999;
  margin-bottom: 12px; display: block;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(270deg, #890303, #230c88);
  background-size: 600% 600%;
  animation: bgShift 15s ease infinite;
}
@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.contact-wrap {
  max-width: 700px; margin: auto;
  background: rgba(255,255,255,0.97);
  border-radius: 20px; padding: 40px 36px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.contact-wrap h2 {
  text-align: center; font-size: 1.8rem;
  color: var(--blue); margin-bottom: 8px;
}
.contact-wrap .sub {
  text-align: center; color: #666;
  margin-bottom: 28px; font-size: 1rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem; font-weight: bold;
  color: var(--blue); margin-bottom: 5px;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 10px 14px; border: 2px solid #ddd;
  border-radius: 10px; font-family: 'Comic Neue', cursive;
  font-size: 0.95rem; transition: border-color 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.submit-btn {
  width: 100%; padding: 14px;
  background: var(--red); color: #fff;
  border: none; border-radius: 30px;
  font-size: 1.1rem; font-weight: bold;
  font-family: 'Comic Neue', cursive;
  cursor: pointer; transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 8px;
}
.submit-btn:hover { background: var(--blue); transform: translateY(-2px); }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-wrap { padding: 28px 20px; }
}

/* ===== WHY BOOK WITH US ===== */
.why-section {
  padding: 80px 20px;
  background: #fff;
}
.why-grid {
  max-width: 900px; margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.why-card {
  background: linear-gradient(135deg, #f0f4ff, #fff);
  border: 2px solid #e0e8ff; border-radius: 16px;
  padding: 24px 20px; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,50,100,0.15); }
.why-card i {
  font-size: 2rem; color: var(--red); margin-bottom: 12px;
}
.why-card h4 { color: var(--blue); font-size: 1rem; margin-bottom: 6px; }
.why-card p { color: #555; font-size: 0.88rem; line-height: 1.5; }

/* ===== HOW TO REACH / BEST MONTHS ===== */
.reach-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #003264, #8b0000);
}
.reach-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.reach-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px; padding: 28px 24px;
  color: #fff; backdrop-filter: blur(4px);
}
.reach-card i {
  font-size: 2.2rem; color: #ffcc00; margin-bottom: 14px;
}
.reach-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.reach-card p { font-size: 0.9rem; line-height: 1.6; opacity: 0.9; }

/* ===== ITINERARY ===== */
.itinerary-section {
  padding: 80px 20px;
  background: #f4f4f4;
}
.itinerary-tabs {
  display: flex; justify-content: center;
  gap: 14px; margin-bottom: 36px; flex-wrap: wrap;
}
.itin-tab {
  padding: 10px 28px; border-radius: 30px;
  border: 2px solid var(--blue); background: #fff;
  color: var(--blue); font-weight: bold; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s ease;
}
.itin-tab.active, .itin-tab:hover {
  background: var(--blue); color: #fff;
}
.itin-panel { display: none; max-width: 800px; margin: auto; }
.itin-panel.active { display: block; }

.itin-day {
  display: flex; gap: 20px; margin-bottom: 20px;
  align-items: flex-start;
}
.day-num {
  background: var(--red); color: #fff;
  min-width: 52px; height: 52px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-weight: bold; font-size: 0.85rem;
  flex-shrink: 0; text-align: center;
}
.day-content {
  background: #fff; border-radius: 12px;
  padding: 14px 18px; flex: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.day-content h4 { color: var(--blue); margin-bottom: 4px; }
.day-content p { color: #555; font-size: 0.9rem; line-height: 1.5; }

/* ===== TYPES OF PACKAGES ===== */
.types-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8b0000, #003264);
  text-align: center;
}
.types-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.type-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px; padding: 22px 20px;
  color: #fff; text-align: left;
  transition: background 0.3s ease;
}
.type-card:hover { background: rgba(255,255,255,0.2); }
.type-card i { color: #ffcc00; font-size: 1.6rem; margin-bottom: 10px; }
.type-card h4 { font-size: 1rem; margin-bottom: 6px; }
.type-card p { font-size: 0.85rem; opacity: 0.85; line-height: 1.5; }

/* ===== POPULAR PLACES ===== */
.places-section {
  padding: 80px 20px;
  background: #fff;
}
.places-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.place-chip {
  background: linear-gradient(135deg, #f0f4ff, #e8eeff);
  border: 2px solid #c8d8ff;
  border-radius: 12px; padding: 14px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.place-chip:hover {
  background: linear-gradient(135deg, var(--blue), #005499);
  color: #fff; border-color: var(--blue);
  transform: translateY(-3px);
}
.place-chip i { color: var(--red); font-size: 1.2rem; display: block; margin-bottom: 6px; }
.place-chip:hover i { color: #ffcc00; }
.place-chip span { font-size: 0.85rem; font-weight: bold; color: var(--blue); }
.place-chip:hover span { color: #fff; }

/* ===== SEO CONTENT ===== */
.seo-section {
  padding: 80px 20px;
  background: #f4f4f4;
}
.seo-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.seo-block {
  background: #fff; border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border-left: 4px solid var(--red);
}
.seo-block h3 { color: var(--blue); font-size: 1.1rem; margin-bottom: 10px; }
.seo-block p { color: #555; font-size: 0.9rem; line-height: 1.7; }

/* ===== SEARCH TAGS ===== */
.tags-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #003264, #8b0000);
  text-align: center;
}
.tags-section h3 {
  color: #fff; font-size: 1.3rem; margin-bottom: 24px;
}
.tags-cloud {
  max-width: 1000px; margin: auto;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px;
}
.tag {
  background: rgba(255,255,255,0.15);
  color: #fff; border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px; border-radius: 20px;
  font-size: 0.85rem; transition: all 0.3s ease;
  cursor: default;
}
.tag:hover { background: rgba(255,255,255,0.3); }

/* ===== FOOTER ===== */
.main-footer {
  background: #003264; color: #fff;
  padding: 40px 20px 20px;
}
.footer-container {
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px; margin: 0 auto; gap: 40px;
}
.footer-logo, .footer-links, .footer-contact { flex: 1 1 300px; }
.footer-logo img { height: 60px; margin-bottom: 15px; }
.footer-logo p { font-size: 1rem; color: #fff; }
.footer-links h3, .footer-contact h3 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a, .footer-contact a { color: #fff; text-decoration: none; }
.footer-contact p { margin-bottom: 8px; font-size: 1rem; color: #fff; }
.social-media-wrapper { display: flex; justify-content: center; margin-top: 30px; }
.social-media { display: flex; gap: 20px; }
.social-media a { color: #fff; font-size: 1.5rem; transition: color 0.3s ease; }
.social-media a:hover { color: #8B0000; }
.footer-bottom { text-align: center; margin-top: 30px; font-size: 0.9rem; color: #fff; }

@media (max-width: 768px) {
  .footer-container { flex-direction: column; align-items: center; text-align: center; }
  .footer-logo, .footer-links, .footer-contact { flex: 1 1 100%; }
  .pkg-hero-content h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .itinerary-tabs { gap: 8px; }
  .itin-tab { padding: 8px 18px; font-size: 0.85rem; }
}
