/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Top Bar ===== */
.top-bar {
    background: #0a3d62;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar .info span { margin-right: 20px; }
.top-bar .toll-free a {
    background: #ff6b35;
    padding: 6px 14px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}

/* ===== Header / Navigation ===== */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    font-size: 26px;
    font-weight: 700;
    color: #0a3d62;
}
.logo span { color: #ff6b35; }
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}
nav ul li { position: relative; }
nav ul li a {
    color: #333;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s;
}
nav ul li a:hover { color: #ff6b35; }
nav ul li.dropdown > a::after {
    content: ' ▾';
    font-size: 12px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    border-radius: 4px;
    padding: 8px 0;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { display: block; }
.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
}
.dropdown-menu li a:hover { background: #f5f5f5; color: #ff6b35; }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; background: none; border: none; }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(rgba(10,61,98,0.7), rgba(10,61,98,0.7)),
                url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600') center/cover;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.hero h1 { font-size: 42px; margin-bottom: 15px; }
.hero p { font-size: 18px; margin-bottom: 30px; }

/* ===== Flight Form ===== */
.flight-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    max-width: 1000px;
    margin: 30px auto 0;
    color: #333;
}
.flight-form h3 {
    color: #0a3d62;
    margin-bottom: 20px;
    text-align: left;
}
.trip-type { margin-bottom: 20px; text-align: left; }
.trip-type label { margin-right: 20px; font-weight: 500; }
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    text-align: left;
}
.form-grid label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}
.form-grid input, .form-grid select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}
.btn:hover { background: #e55a2b; }
.btn-search {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
}
.call-cta {
    background: #28a745;
    margin-left: 10px;
}
.call-cta:hover { background: #218838; }

/* ===== Sections ===== */
section { padding: 60px 0; }
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 32px;
    color: #0a3d62;
    margin-bottom: 10px;
}
.section-title p { color: #666; }

/* ===== Deal Cards ===== */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.deal-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.deal-card img { height: 200px; width: 100%; object-fit: cover; }
.deal-info { padding: 20px; }
.deal-info h3 { color: #0a3d62; margin-bottom: 8px; }
.deal-info .route { color: #666; font-size: 14px; margin-bottom: 12px; }
.deal-info .price {
    font-size: 22px;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 12px;
}
.deal-info .price small { font-size: 12px; color: #999; font-weight: normal; }
.deal-info .btn { font-size: 14px; padding: 8px 18px; }

/* ===== Exclusive Deals Banner ===== */
.exclusive {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}
.exclusive h2 { font-size: 36px; margin-bottom: 10px; }
.exclusive p { font-size: 18px; margin-bottom: 20px; }
.exclusive .btn { background: #fff; color: #ff6b35; }
.exclusive .btn:hover { background: #f0f0f0; }

/* ===== Why Choose Us ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.feature {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.feature .icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.feature h3 { color: #0a3d62; margin-bottom: 10px; font-size: 18px; }
.feature p { color: #666; font-size: 14px; }

/* ===== Page Banner ===== */
.page-banner {
    background: linear-gradient(rgba(10,61,98,0.85), rgba(10,61,98,0.85)),
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600') center/cover;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.page-banner h1 { font-size: 36px; margin-bottom: 10px; }
.breadcrumb { font-size: 14px; opacity: 0.9; }
.breadcrumb a { color: #fff; }

/* ===== Content Pages ===== */
.content-page {
    background: #fff;
    padding: 50px 40px;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.content-page h2 {
    color: #0a3d62;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 8px;
    display: inline-block;
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
    color: #0a3d62;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 18px;
}
.content-page p { margin-bottom: 15px; color: #444; }
.content-page ul, .content-page ol {
    margin-left: 25px;
    margin-bottom: 15px;
}
.content-page ul li, .content-page ol li { margin-bottom: 8px; color: #444; }
.content-page a { color: #ff6b35; text-decoration: underline; }

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #ff6b35;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}
.disclaimer-box strong { color: #0a3d62; }

/* ===== Footer ===== */
footer {
    background: #0a3d62;
    color: #fff;
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h4 {
    margin-bottom: 15px;
    color: #ff6b35;
    font-size: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-col ul li a:hover { color: #ff6b35; }
.footer-col p { color: #ccc; font-size: 14px; line-height: 1.8; }
.footer-disclaimer {
    background: #062a44;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #b8c7d4;
    line-height: 1.7;
}
.footer-disclaimer strong { color: #ff6b35; }
.footer-bottom {
    border-top: 1px solid #1a4d72;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #b8c7d4;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .menu-toggle { display: block; color: #0a3d62; }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    nav ul.active { display: flex; }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 15px;
    }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 16px; }
    .top-bar .container { flex-direction: column; gap: 8px; text-align: center; }
    .content-page { padding: 30px 20px; }
    .section-title h2 { font-size: 24px; }
}
