/* --- 1. GLOBAL VARIABLES & RESET --- */
:root {
    --primary: #003580; /* Booking.com Blue */
    --secondary: #ffb700; /* Vibrant Yellow/Orange */
    --dark: #1a1a1a;
    --light: #f4f7f6;
    --white: #ffffff;
    --gray: #666666;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    display: flex; flex-direction: column; min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- 2. NAVBAR --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    background-color: var(--primary); color: var(--white);
    padding: 1rem 5%; position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--secondary); }

.btn-nav {
    background: var(--secondary); color: var(--primary) !important;
    padding: 8px 20px; border-radius: 50px; font-weight: 600 !important;
}
.btn-nav:hover { background: #e6a500; transform: scale(1.05); }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- 3. HERO SECTION --- */
.hero {
    background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    height: 85vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white; margin-bottom: 50px;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,53,128,0.7));
}

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; }

.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 700; }
.highlight { color: var(--secondary); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

.hero-buttons { display: flex; gap: 15px; justify-content: center; }

.btn-primary {
    background: var(--secondary); color: var(--primary);
    padding: 12px 30px; font-weight: 600; border-radius: 5px; border: none; cursor: pointer;
}
.btn-primary:hover { background: #e6a500; transform: translateY(-3px); }

.btn-secondary {
    background: transparent; border: 2px solid var(--white); color: var(--white);
    padding: 12px 30px; font-weight: 600; border-radius: 5px;
}
.btn-secondary:hover { background: var(--white); color: var(--primary); }

/* --- 4. SEARCH BAR (Floating) --- */
.search-container {
    max-width: 1000px; margin: -80px auto 0; position: relative; z-index: 10; padding: 0 20px;
}
.search-box {
    background: white; padding: 20px; border-radius: 10px;
    box-shadow: var(--shadow); display: flex; align-items: center; gap: 20px;
}
.search-item { flex: 1; display: flex; align-items: center; gap: 15px; border-right: 1px solid #eee; padding-right: 20px; }
.search-item:last-child { border: none; }
.search-item i { font-size: 1.5rem; color: var(--gray); }
.search-item span { display: block; font-size: 0.8rem; font-weight: bold; color: var(--gray); text-transform: uppercase; }
.search-item p { font-weight: 600; color: var(--dark); }
.search-btn {
    background: var(--primary); color: white; border: none;
    padding: 15px 40px; border-radius: 5px; font-weight: bold; cursor: pointer; font-size: 1.1rem;
}

/* --- 5. SECTIONS & CARDS --- */
.section-padding { padding: 80px 5%; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }
.section-header p { color: var(--gray); }

.package-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}

.package-card {
    background: white; border-radius: 15px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s;
}
.package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

.card-img {
    height: 220px; background-size: cover; background-position: center; position: relative;
}
.badge {
    position: absolute; top: 15px; right: 15px;
    background: var(--secondary); color: var(--primary);
    padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold;
}

.card-info { padding: 25px; }
.card-info h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--dark); }
.rating { color: #f39c12; font-size: 0.9rem; margin-bottom: 10px; }
.price-row {
    display: flex; justify-content: space-between; align-items: center; margin-top: 20px; border-top: 1px solid #eee; padding-top: 15px;
}
.price { font-size: 1.3rem; font-weight: bold; color: var(--primary); }
.btn-sm { font-size: 0.9rem; color: var(--primary); font-weight: 600; }

/* --- 6. SERVICES (Icons) --- */
.services-section { background: white; padding: 80px 5%; text-align: center; }
.service-icons-grid { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.service-item { width: 150px; }
.icon-box {
    width: 80px; height: 80px; background: #eef2f5; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 15px;
    color: var(--primary); font-size: 2rem; transition: 0.3s;
}
.service-item:hover .icon-box { background: var(--primary); color: white; }
.service-item h4 { font-weight: 600; }

/* --- 7. WHY CHOOSE US --- */
.why-choose-us { display: flex; align-items: center; gap: 50px; background: #f8f9fa; }
.why-content { flex: 1; }
.why-content h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.why-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.why-list i { color: #27ae60; }
.why-image { flex: 1; }
.why-image img { width: 100%; border-radius: 10px; box-shadow: var(--shadow); }

/* --- 8. FOOTER --- */
footer { background: var(--dark); color: white; text-align: center; padding: 30px; margin-top: auto; }

/* --- 9. ADMIN & BLOG GENERIC FIXES --- */
.admin-container, .single-post-container, .contact-container, .about-container, .blog-container {
    margin-top: 50px !important; margin-bottom: 50px !important;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .search-box { flex-direction: column; align-items: stretch; }
    .search-item { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 15px; }
    .why-choose-us { flex-direction: column; }
    .nav-links { display: none; } /* Mobile Menu implementation pending for simplicity */
    .menu-toggle { display: block; }
}