@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

:root {
    --brand-primary: #00216e;
    --brand-accent: #f13b13;
    --card-bg: #fff;
    --card-radius: 16px;
    --card-shadow: 0 2px 12px rgba(0,33,110,0.07);
    --section-bg: #f6f6f6;
    --gray: #e0e0e0;
}
body {
    background: #f6f6f6;
    font-family: 'Lato', Arial, sans-serif;
    color: #222;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
}
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: none;
    pointer-events: none;
    z-index: 0;
}
h1, h2, h3, h4, h5, h6, .display-6, .fw-bold {
    font-family: 'Lato', Arial, sans-serif;
}
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    background: var(--section-bg);
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(0,33,110,0.08);
    position: relative;
    z-index: 1;
}
.header {
    background: #e0e0e0;
    padding: 0.7rem 1rem 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .logo {
    width: 140px;
    height: 38px;
}
.header .header-icons {
    display: flex;
    gap: 1.2rem;
    font-size: 1.5rem;
    color: var(--brand-primary);
}
.nav-tabs {
    display: flex;
    justify-content: space-around;
    background: #fff;
    border-radius: 12px;
    margin: 1rem 0 0.5rem 0;
    padding: 0.5rem 0;
    box-shadow: var(--card-shadow);
    font-size: 1.1rem;
}
.nav-tabs .tab {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-primary);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}
.nav-tabs .tab:hover {
    color: var(--brand-accent);
}
.hero {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .hero-text {
    position: absolute;
    bottom: 18px;
    left: 18px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.7rem 0 0.5rem 0.2rem;
    color: var(--brand-primary);
}
.horizontal-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.card-img {
    min-width: 140px;
    max-width: 160px;
    height: 100px;
    border-radius: var(--card-radius);
    object-fit: cover;
    box-shadow: var(--card-shadow);
}
.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.3rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.open-packages {
    background: #e0e0e0;
    border-radius: 14px;
    padding: 1rem 1rem 0.5rem 1rem;
    margin-bottom: 1.2rem;
}
.package-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.package-meta {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.2rem;
}
.progress {
    height: 8px;
    background: #dbeafe;
    border-radius: 6px;
    margin-bottom: 0.7rem;
}
.progress-bar {
    background: var(--brand-primary);
    height: 100%;
    border-radius: 6px;
}
.hotel-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}
.hotel-card {
    min-width: 140px;
    max-width: 160px;
    background: var(--card-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 0.5rem;
    font-size: 0.97rem;
}
.hotel-card img {
    width: 100%;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}
.hotel-card .hotel-title {
    font-weight: 600;
    margin: 0.3rem 0 0.1rem 0;
}
.hotel-card .hotel-price {
    color: var(--brand-accent);
    font-weight: 500;
    font-size: 1rem;
}
.hotel-card .stars {
    color: #f7b731;
    font-size: 0.9rem;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.grid-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 0.7rem;
    text-align: center;
    font-size: 1rem;
}
.grid-card img {
    width: 100%;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0.3rem;
}
.product-store {
    margin-bottom: 1.2rem;
}
.product-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
}
.product-card {
    min-width: 120px;
    max-width: 140px;
    background: var(--card-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 0.5rem 0.5rem 0.7rem 0.5rem;
    text-align: center;
    position: relative;
}
.product-card img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.2rem;
}
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--brand-accent);
    color: #fff;
    font-size: 0.8rem;
    border-radius: 8px;
    padding: 2px 8px;
    font-weight: 500;
}
.product-title {
    font-size: 0.98rem;
    font-weight: 600;
    margin-top: 0.2rem;
}
.stats-bar {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 1.2rem 0 0.7rem 0;
}
.stat-card {
    flex: 1;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
    padding: 0.7rem 0.2rem 0.5rem 0.2rem;
    font-size: 0.98rem;
}
.stat-card .stat-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-primary);
}
.footer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 1.2rem 0 0.5rem 0;
    text-align: center;
    font-size: 0.97rem;
    color: #888;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.7rem;
    flex-wrap: wrap;
}
.footer-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.7rem 0 0.3rem 0;
    flex-wrap: wrap;
}
.footer-logos img {
    height: 32px;
    object-fit: contain;
}

/* HERO SECTION */
.hero-section {
    min-height: 340px;
    background: linear-gradient(100deg, var(--brand-primary) 60%, var(--brand-accent) 100%);
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 1rem 2rem 1rem;
}
.hero-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}
.brand-accent {
    color: var(--brand-accent);
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #f3f3f3;
}
.btn-cta {
    background: #fff;
    color: var(--brand-primary);
    font-weight: 700;
    border-radius: 2rem;
    padding: 0.7rem 2.2rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(0,33,110,0.08);
    transition: background 0.2s, color 0.2s;
    border: none;
}
.btn-cta:hover {
    background: var(--brand-accent);
    color: #fff;
}

/* QUICK LINKS */
.quick-links {
    margin-bottom: 2rem;
}
.quick-link-card {
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,33,110,0.07);
    background: #fff;
    padding: 1.5rem 0.5rem 1rem 0.5rem;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.quick-link-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,33,110,0.10);
}
.quick-link-icon {
    font-size: 2.2rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}
.quick-link-icon.accent {
    color: var(--brand-accent);
}
.quick-link-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.quick-link-desc {
    color: #888;
    font-size: 0.97rem;
}

/* STATS BAR */
.stats-scroll {
    overflow-x: auto;
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1rem;
}
.stat-card {
    min-width: 160px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,33,110,0.06);
    padding: 1rem;
    text-align: center;
    margin-right: 0.5rem;
}
.stat-num {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.2rem;
}
.stat-label {
    color: #888;
    font-size: 1rem;
}

/* FOOTER */
.footer {
    background: var(--brand-primary);
    color: #fff;
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
    border-radius: 18px 18px 0 0;
    text-align: center;
}
.footer-links {
    margin-bottom: 1rem;
}
.footer-links a {
    color: var(--brand-accent);
    text-decoration: none;
    margin: 0 0.7rem;
    font-weight: 500;
    font-size: 1rem;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-brand {
    margin-bottom: 1rem;
}
.footer-logo {
    height: 38px;
    width: auto;
}
.footer-copy {
    font-size: 0.97rem;
    color: #e0e0e0;
}

@media (max-width: 1200px) {
    .main-container {
        max-width: 100vw;
        padding: 0 8px;
    }
}
@media (max-width: 900px) {
    .main-container {
        padding: 0 8px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .stat-card {
        min-width: 120px;
        padding: 0.7rem;
    }
}
@media (max-width: 600px) {
    .header {
        padding: 0.5rem 0.5rem 0.3rem 0.5rem;
    }
    .nav-tabs {
        font-size: 1rem;
        padding: 0.3rem 0;
    }
    .hero {
        height: 120px;
    }
    .card-img, .hotel-card, .product-card {
        min-width: 110px;
        max-width: 120px;
    }
    .hotel-card img, .grid-card img {
        height: 50px;
    }
    .stats-bar {
        flex-direction: column;
        gap: 0.7rem;
    }
    .hero-content {
        padding: 2rem 0.2rem 1.2rem 0.2rem;
    }
    .footer {
        padding: 1.2rem 0 0.7rem 0;
    }
    .quick-link-card {
        min-height: 120px;
        padding: 1rem 0.2rem 0.7rem 0.2rem;
    }
} 