/* Universal Reset & Typography */
/* Styling the date picker for professional look */
input[type="date"] {
    position: relative;
    font-family: inherit;
}

/* On mobile, this ensures the placeholder is visible */
input[type="date"]:before {
    content: attr(placeholder);
    width: 100%;
    margin-right: 0.5em;
    color: #999;
}

input[type="date"]:focus:before,
input[type="date"]:valid:before {
    display: none;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #fdfdfd; color: #333; line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-alt { background: #f4f7f9; }
.text-center { text-align: center; }
.section-title { font-size: 2.2rem; color: #0a4f7a; margin-bottom: 20px; }
.subtitle { margin-top: -15px; margin-bottom: 40px; color: #666; font-weight: 500; }

/* Fixed Navbar */
.navbar { background: #0a4f7a; padding: 12px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; }
.nav-menu a { color: white; text-decoration: none; margin: 0 12px; font-size: 14px; font-weight: 500; transition: 0.3s; }
.nav-menu a:hover { color: #ff5722; }
.nav-call { background: #ff5722; color: white; padding: 10px 18px; border-radius: 5px; text-decoration: none; font-weight: bold; font-size: 14px; }

/* Hero Section */
.hero { text-align: center; padding: 60px 0; background: #fff; }
.hero h1 { font-size: 3rem; color: #0a4f7a; margin-bottom: 10px; }
.hero-lead { font-size: 1.2rem; color: #555; margin-bottom: 30px; }
.hero-image-box { max-width: 800px; margin: 0 auto 40px; }
.hero-image-box img { width: 100%; border-radius: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.hero-cta-area { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.price-badge strong { font-size: 2.5rem; color: #0a4f7a; display: block; line-height: 1; }

/* About Grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.rounded-img { width: 100%; border-radius: 20px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.value-item { background: #eef6fb; padding: 15px; border-radius: 10px; font-size: 14px; border-left: 4px solid #ff5722; }

/* Package Itinerary */
.itinerary-grid { max-width: 700px; margin: 0 auto 40px; }
.itinerary-item { background: white; padding: 15px 25px; margin-bottom: 10px; border-radius: 8px; display: flex; gap: 20px; align-items: center; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.itinerary-item span { color: #ff5722; font-weight: bold; min-width: 100px; }
.dest-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.dest-tags span { background: #0a4f7a; color: white; padding: 6px 15px; border-radius: 20px; font-size: 13px; }

/* Activity Cards Fix */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.activity-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.activity-card:hover { transform: translateY(-5px); }
.img-frame { height: 240px; overflow: hidden; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.card-text { padding: 25px; text-align: center; }

/* Booking Form */
.booking-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
.form-box { background: white; padding: 40px; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.form-box input, .form-box select, .form-box textarea { width: 100%; padding: 14px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; }
.form-box textarea { height: 100px; resize: none; }
.benefit-list { list-style: none; margin: 20px 0; }
.benefit-list li { margin-bottom: 15px; font-weight: 500; color: #444; }
.contact-card { padding: 20px; background: #f0f0f0; border-radius: 10px; font-size: 14px; }

/* Buttons & UI */
.btn { padding: 16px 32px; border-radius: 8px; text-decoration: none; font-weight: bold; cursor: pointer; transition: 0.3s; display: inline-block; border: none; }
.btn-primary { background: #ff5722; color: white; }
.btn-secondary { background: #0a4f7a; color: white; }
.btn-wa { background: #25d366; color: white; width: 100%; text-align: center; margin-top: 10px; }
.wa-sticky { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; z-index: 1001; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.full-width { width: 100%; }

/* Offer Banner */
.offer-banner { background: #ff9800; color: white; text-align: center; padding: 60px 20px; }
.offer-tag { background: white; color: #ff9800; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 12px; margin-bottom: 15px; display: inline-block; }

/* FAQ Grid */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.faq-item { background: white; padding: 25px; border-radius: 12px; border: 1px solid #eee; }
.faq-item h4 { color: #0a4f7a; margin-bottom: 10px; }

/* Map Wrapper */
.map-wrapper { margin-top: 30px; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Footer */
.footer { background: #0a4f7a; color: white; padding: 40px 0; text-align: center; font-size: 14px; }
.footer a { color: #fff; text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
    .about-grid, .booking-split, .faq-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .hero h1 { font-size: 2.2rem; }
}