/*
Theme Name: Miles to Go
Theme URI: 
Author: Sanju
Author URI: 
Description: Custom travel booking theme for Miles to Go
Version: 1.0
Text Domain: milestogo
*/

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-logo {
    font-size: 22px;
    font-weight: bold;
    color: #ff6600;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #ff6600;
}

.auth-links a {
    text-decoration: none;
    color: #333;
    margin-left: 15px;
    font-weight: 500;
}

.register-btn {
    background: #ff6600;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 5px;
}

/* ===== HERO ===== */
.hero-banner {
    background: linear-gradient(rgba(13,27,42,0.75), rgba(13,27,42,0.75)),
                url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?w=1200') center/cover;
    padding: 60px 20px 100px;
    color: #fff;
    text-align: left;
}
.hero-tag {
    background: #ff6b00;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-style: italic;
    margin-bottom: 15px;
}
.hero-title {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 10px;
}
.hero-title span { color: #ff8c00; }
.hero-sub { opacity: 0.8; margin-bottom: 20px; }
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
}
.feature-item { font-size: 14px; }

/* ===== SEARCH CARD ===== */
.search-card-wrapper {
    max-width: 600px;
    margin: -60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}
.search-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.search-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}
.search-tabs .tab.active { color: #ff6b00; font-weight: bold; border-bottom: 2px solid #ff6b00; }
.search-row {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}
.row-sub { font-size: 13px; color: #999; font-weight: normal; }
.search-btn {
    display: block;
    text-align: center;
    background: #ff6b00;
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

/* ===== CATEGORY STRIP ===== */
.category-strip {
    background: #0d1b2a;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    padding: 25px 15px;
    margin-top: 20px;
    color: #fff;
    text-align: center;
}
.cat-item { font-size: 12px; width: 90px; }
.cat-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin: 0 auto 6px;
}
.cat-icon.orange { background: #ff8c00; }
.cat-icon.blue { background: #1b8fd6; }
.cat-icon.green { background: #2ea86e; }
.cat-icon.pink { background: #e84393; }
.cat-icon.purple { background: #8e5fd6; }

/* ===== FEATURED PACKAGES ===== */
.featured-packages { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.section-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
}
.section-header a { color: #ff6b00; text-decoration: none; font-weight: 600; }
.packages-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.pkg-card {
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.pkg-img { height: 130px; background-size: cover; background-position: center; }
.pkg-body { padding: 12px; }
.pkg-body h4 { margin: 0 0 6px; font-size: 15px; }
.pkg-duration { font-size: 12px; color: #888; margin: 0 0 6px; }
.pkg-price { color: #ff6b00; font-weight: bold; margin: 0 0 10px; }
.pkg-btn {
    display: block; text-align: center;
    background: #0d1b2a; color: #fff;
    padding: 8px; border-radius: 20px;
    text-decoration: none; font-size: 13px;
}

/* ===== WHY STRIP ===== */
.why-strip {
    background: #fff3e6;
    text-align: center;
    padding: 30px 20px;
}
.why-strip h3 { margin-bottom: 20px; }
.why-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 25px;
    font-size: 13px;
}

/* ===== HELP BANNER ===== */
.help-banner {
    background: #0d1b2a;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 30px;
}
.help-banner span { font-size: 13px; opacity: 0.8; }
.call-btn {
    background: #ff6b00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        padding: 8px 0;
        z-index: 999;
    }
    .mobile-bottom-nav a {
        text-decoration: none;
        color: #666;
        font-size: 10px;
        text-align: center;
    }
    .mobile-bottom-nav a.active { color: #ff6b00; }
    .mobile-bottom-nav .center-btn {
        background: #ff6b00;
        color: #fff;
        width: 45px; height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin-top: -20px;
    }
    body { padding-bottom: 60px; } /* bottom nav ke liye jagah */
    .hero-title { font-size: 28px; }
}