:root {
  --blue: #003264;
  --black: #202124;
  --white: #f8f9fa;
  --red: #8B0000;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Comic Neue', cursive; background: #f2f4f8; padding-top: 80px; }

/* ===== HEADER ===== */
.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;
}
.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%; }
  .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); }
}

/* ===== BUTTONS ===== */
.btn { background: var(--red); color: #fff; padding: 10px 24px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 1rem; border: none; cursor: pointer; transition: background 0.3s, transform 0.3s; display: inline-block; font-family: 'Comic Neue', cursive; }
.btn:hover { background: var(--blue); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; padding: 10px 24px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 1rem; transition: all 0.3s; display: inline-block; }
.btn-outline:hover { background: #fff; color: var(--blue); }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: #fff; padding: 10px 20px; border-bottom: 1px solid #e0e0e0; font-size: 0.85rem; color: #666; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #bbb; margin: 0 6px; }

/* ===== DETAIL HERO ===== */
.detail-hero { position: relative; min-height: 52vh; display: flex; align-items: flex-end; overflow: hidden; background: center/cover no-repeat; }
.detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 60%, transparent 100%); }
.detail-hero-content { position: relative; z-index: 2; padding: 36px 32px; color: #fff; width: 100%; max-width: 1300px; margin: 0 auto; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.badge { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4); padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; }
.badge.highlight { background: var(--red); border-color: var(--red); font-weight: bold; }
.detail-hero-content h1 { font-size: 2.5rem; margin-bottom: 6px; text-shadow: 2px 2px 6px rgba(0,0,0,0.7); }
.hero-nights { font-size: 1rem; opacity: 0.85; margin-bottom: 10px; }
.hero-price { display: inline-block; background: rgba(255,255,255,0.15); border: 2px solid #ffcc00; border-radius: 12px; padding: 10px 20px; margin-bottom: 18px; }
.hero-price .from { font-size: 0.85rem; opacity: 0.8; }
.hero-price .amount { font-size: 1.8rem; font-weight: bold; color: #ffcc00; }
.hero-price .pp { font-size: 0.8rem; }
.hero-features { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-feature { display: flex; align-items: center; gap: 7px; font-size: 0.9rem; }
.hero-feature i { color: #ffcc00; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== TWO-COLUMN LAYOUT ===== */
.detail-body { max-width: 1300px; margin: 30px auto; padding: 0 20px 40px; display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
@media (max-width: 1024px) { .detail-body { grid-template-columns: 1fr; } }

/* ===== SECTION CARD ===== */
.section-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); margin-bottom: 24px; overflow: hidden; }
.section-card-head { background: linear-gradient(135deg, var(--blue), #005499); color: #fff; padding: 14px 22px; display: flex; align-items: center; gap: 10px; }
.section-card-head h2 { font-size: 1.1rem; }
.section-card-head i { font-size: 1.1rem; color: #ffcc00; }
.section-card-body { padding: 22px; }

/* ===== PKG OVERVIEW ===== */
.pkg-overview { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; padding: 20px 22px; background: #fff8f0; border-bottom: 1px solid #ffe0b2; }
.overview-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--blue); font-weight: bold; }
.overview-item i { color: var(--red); font-size: 1rem; }
.price-highlight { background: var(--red); color: #fff; border-radius: 12px; padding: 8px 18px; text-align: center; margin-left: auto; }
.price-highlight .ph-label { font-size: 0.75rem; opacity: 0.85; }
.price-highlight .ph-price { font-size: 1.4rem; font-weight: bold; }
.price-highlight .ph-pp { font-size: 0.75rem; }

/* ===== IMAGE GALLERY ===== */
.img-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 16px 22px; background: #fff; }
.img-gallery img { width: 100%; height: 140px; object-fit: cover; border-radius: 10px; transition: transform 0.3s; cursor: pointer; }
.img-gallery img:hover { transform: scale(1.04); }
@media (max-width: 600px) { .img-gallery { grid-template-columns: repeat(2, 1fr); } }

/* ===== ITINERARY ===== */
.itin-day { border-bottom: 1px solid #f0f0f0; }
.itin-day:last-child { border-bottom: none; }
.itin-day-head { display: flex; align-items: center; gap: 14px; padding: 16px 22px; cursor: pointer; user-select: none; transition: background 0.2s; }
.itin-day-head:hover { background: #f8faff; }
.day-badge { background: var(--red); color: #fff; min-width: 52px; height: 52px; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
.day-badge .day-num { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; }
.day-badge .day-val { font-size: 1.1rem; }
.itin-day-head h3 { font-size: 0.95rem; color: var(--blue); flex: 1; text-transform: uppercase; letter-spacing: 0.5px; }
.itin-day-head .toggle-icon { color: var(--blue); transition: transform 0.3s; font-size: 0.85rem; }
.itin-day-body { padding: 0 22px 18px 88px; display: none; }
.itin-day-body.open { display: block; }
.itin-day-img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
.itin-day-body p { font-size: 0.9rem; color: #444; line-height: 1.75; }

/* ===== INCLUSIVE / EXCLUSIVE ===== */
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .inc-exc-grid { grid-template-columns: 1fr; } }
.inc-box h3 { color: #1a6b1a; font-size: 0.95rem; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.exc-box h3 { color: var(--red); font-size: 0.95rem; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.inc-box ul, .exc-box ul { list-style: none; }
.inc-box ul li, .exc-box ul li { padding: 5px 0; font-size: 0.85rem; color: #444; border-bottom: 1px dashed #eee; display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
.inc-box ul li:last-child, .exc-box ul li:last-child { border-bottom: none; }
.inc-box ul li::before { content: '✓'; color: #1a6b1a; font-weight: bold; flex-shrink: 0; margin-top: 1px; }
.exc-box ul li::before { content: '✗'; color: var(--red); font-weight: bold; flex-shrink: 0; margin-top: 1px; }

/* ===== INFO CARDS (Accommodation / Meals / Optional) ===== */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.info-item { background: #f8faff; border: 1px solid #dde8ff; border-radius: 12px; padding: 14px; }
.info-item .info-icon { font-size: 1.4rem; color: var(--red); margin-bottom: 6px; }
.info-item h4 { font-size: 0.85rem; color: var(--blue); margin-bottom: 4px; }
.info-item p { font-size: 0.8rem; color: #555; line-height: 1.5; }

/* ===== OPTIONAL CHARGES TABLE ===== */
.opt-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.opt-table th { background: var(--blue); color: #fff; padding: 10px 14px; text-align: left; }
.opt-table td { padding: 9px 14px; border-bottom: 1px solid #eee; color: #444; }
.opt-table tr:nth-child(even) td { background: #f8faff; }

/* ===== FEATURES LIST ===== */
.features-list { list-style: none; }
.features-list li { padding: 7px 0; font-size: 0.9rem; color: #333; border-bottom: 1px dashed #eee; display: flex; gap: 10px; align-items: flex-start; }
.features-list li:last-child { border-bottom: none; }
.features-list li::before { content: '✔'; color: var(--blue); font-weight: bold; flex-shrink: 0; }

/* ===== TRAVEL TIPS ===== */
.tips-list { list-style: none; }
.tips-list li { padding: 7px 0; font-size: 0.88rem; color: #444; border-bottom: 1px dashed #eee; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.tips-list li:last-child { border-bottom: none; }
.tips-list li::before { content: '📌'; flex-shrink: 0; }

/* ===== SIDEBAR ===== */
.detail-sidebar { }
.sidebar-sticky { position: sticky; top: 96px; }

/* Sidebar Enquiry Form */
.sidebar-form-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); overflow: hidden; margin-bottom: 20px; }
.sidebar-form-head { background: linear-gradient(135deg, var(--red), #5a0000); color: #fff; padding: 16px 20px; text-align: center; }
.sidebar-form-head h3 { font-size: 1.1rem; margin-bottom: 4px; }
.sidebar-form-head p { font-size: 0.8rem; opacity: 0.85; }
.sidebar-form-body { padding: 18px; }
.sf-group { margin-bottom: 12px; }
.sf-group input, .sf-group select { width: 100%; padding: 9px 12px; border: 2px solid #e0e0e0; border-radius: 8px; font-family: 'Comic Neue', cursive; font-size: 0.88rem; outline: none; transition: border-color 0.3s; }
.sf-group input:focus, .sf-group select:focus { border-color: var(--blue); }
.sf-submit { width: 100%; padding: 12px; background: var(--red); color: #fff; border: none; border-radius: 30px; font-family: 'Comic Neue', cursive; font-size: 1rem; font-weight: bold; cursor: pointer; transition: background 0.3s; }
.sf-submit:hover { background: var(--blue); }
.sf-call { display: block; text-align: center; margin-top: 10px; color: var(--blue); font-weight: bold; font-size: 0.9rem; text-decoration: none; }
.sf-call:hover { text-decoration: underline; }

/* Sidebar Popular Packages */
.sidebar-popular { background: #fff; border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); overflow: hidden; }
.sidebar-popular-head { background: linear-gradient(135deg, var(--blue), #005499); color: #fff; padding: 14px 18px; }
.sidebar-popular-head h3 { font-size: 1rem; }
.popular-pkg-list { list-style: none; padding: 8px 0; }
.popular-pkg-list li { border-bottom: 1px solid #f0f0f0; }
.popular-pkg-list li:last-child { border-bottom: none; }
.popular-pkg-list li a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; text-decoration: none; color: #333; font-size: 0.88rem; transition: background 0.2s; }
.popular-pkg-list li a:hover { background: #f0f4ff; color: var(--blue); }
.popular-pkg-list li a i { color: var(--red); font-size: 0.75rem; }
.popular-pkg-list li a .pkg-price { margin-left: auto; color: var(--red); font-weight: bold; font-size: 0.85rem; }

/* ===== PRICING CARDS ===== */
.pricing-section { background: linear-gradient(135deg, var(--blue), #8B0000); padding: 60px 20px; text-align: center; }
.pricing-section h2 { color: #fff; font-size: 1.7rem; margin-bottom: 6px; }
.pricing-section .sub { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 0.9rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 860px; margin: auto; }
.pricing-card { background: #fff; border-radius: 16px; padding: 26px 20px; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.18); transition: transform 0.3s; }
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.popular { border: 3px solid #ffcc00; position: relative; }
.pricing-card.popular::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #ffcc00; color: #333; font-size: 0.72rem; font-weight: bold; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }
.star-rating { font-size: 1.2rem; color: #ffc107; margin-bottom: 8px; }
.pricing-card h3 { color: var(--blue); font-size: 1rem; margin-bottom: 14px; }
.price-old { font-size: 1rem; color: #999; text-decoration: line-through; }
.price-new { font-size: 2rem; font-weight: bold; color: var(--red); line-height: 1.1; }
.price-pp { font-size: 0.78rem; color: #666; margin-bottom: 14px; }
.pricing-card .btn { width: 100%; text-align: center; display: block; margin-top: 12px; }

/* ===== SECTION TITLE (shared) ===== */
.section-title { text-align: center; font-size: 1.8rem; color: var(--red); margin-bottom: 40px; }
.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.1); }

/* ===== 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 260px; }
.footer-logo img { height: 60px; margin-bottom: 12px; }
.footer-logo p { font-size: 0.95rem; }
.footer-links h3, .footer-contact h3 { font-size: 1.1rem; margin-bottom: 10px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 7px; }
.footer-links ul li a, .footer-contact a { color: #fff; text-decoration: none; }
.footer-contact p { margin-bottom: 7px; font-size: 0.95rem; }
.social-media-wrapper { display: flex; justify-content: center; margin-top: 28px; }
.social-media { display: flex; gap: 18px; }
.social-media a { color: #fff; font-size: 1.4rem; transition: color 0.3s; }
.social-media a:hover { color: #8B0000; }
.footer-bottom { text-align: center; margin-top: 26px; font-size: 0.88rem; }
@media (max-width: 768px) {
  .footer-container { flex-direction: column; align-items: center; text-align: center; }
  .detail-hero-content h1 { font-size: 1.7rem; }
  .itin-day-body { padding-left: 22px; }
}
