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

/* ===== Color Variables ===== */
:root {
    --primary: #00a8a8;        /* Teal */
    --primary-dark: #007575;
    --accent: #ff5e62;         /* Coral */
    --accent-dark: #e54852;
    --dark: #1a2b4a;
    --light: #f4f8fb;
    --gray: #7a8896;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--dark);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar .info span { margin-right: 18px; }
.top-bar .toll-free a {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    padding: 6px 16px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255,94,98,0.4);
}

/* ===== Header / Navigation ===== */
header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.logo span { color: var(--primary); }
nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}
nav ul li { position: relative; }
nav ul li a {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s;
    font-size: 15px;
}
nav ul li a:hover { color: var(--primary); }
nav ul li.dropdown > a::after {
    content: ' ▾';
    font-size: 11px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    min-width: 220px;
    border-radius: 8px;
    padding: 10px 0;
    border-top: 3px solid var(--primary);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { display: block; }
.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
}
.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 22px;
}
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--dark);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, rgba(0,168,168,0.85), rgba(26,43,74,0.85)),
                url('https://images.unsplash.com/photo-1530521954074-e64f6810b32d?w=1600') center/cover;
    color: #fff;
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
}
.hero h1 {
    font-size: 46px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.hero p {
    font-size: 19px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== Flight Form ===== */
.flight-form {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    max-width: 1050px;
    margin: 35px auto 0;
    color: var(--dark);
    border-top: 4px solid var(--accent);
}
.flight-form h3 {
    color: var(--dark);
    margin-bottom: 22px;
    text-align: left;
    font-size: 20px;
}
.trip-type {
    margin-bottom: 22px;
    text-align: left;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.trip-type label {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.trip-type input[type="radio"] { accent-color: var(--primary); }
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    text-align: left;
}
.form-grid label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-grid input, .form-grid select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e3e9ef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-grid input:focus, .form-grid select:focus {
    outline: none;
    border-color: var(--primary);
}
.btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255,94,98,0.3);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,94,98,0.5);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 12px rgba(0,168,168,0.3);
}
.btn-primary:hover { box-shadow: 0 6px 20px rgba(0,168,168,0.5); }
.btn-search {
    margin-top: 22px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 8px;
}

/* ===== Sections ===== */
section { padding: 70px 0; }
.section-title {
    text-align: center;
    margin-bottom: 45px;
}
.section-title h2 {
    font-size: 34px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}
.section-title h2 span { color: var(--primary); }
.section-title p {
    color: var(--gray);
    font-size: 16px;
}
.section-light { background: var(--light); }

/* ===== Deal Cards ===== */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.deal-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.4s;
    position: relative;
}
.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.deal-card .img-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
}
.deal-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.deal-card:hover img { transform: scale(1.08); }
.deal-card .badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.deal-info { padding: 22px; }
.deal-info h3 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 20px;
}
.deal-info .route {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.deal-info .price {
    font-size: 24px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 14px;
}
.deal-info .price small {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}
.deal-info .btn {
    font-size: 13px;
    padding: 10px 22px;
    width: 100%;
    text-align: center;
}

/* ===== Exclusive Deals Banner ===== */
.exclusive {
    background: linear-gradient(135deg, var(--primary) 0%, #005f7f 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.exclusive::before {
    content: '✈';
    position: absolute;
    font-size: 280px;
    opacity: 0.05;
    right: -40px;
    top: -60px;
}
.exclusive h2 {
    font-size: 38px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.exclusive p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}
.exclusive .btn {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.exclusive .btn:hover { background: var(--light); }

/* ===== Why Choose Us ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.feature {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-bottom: 3px solid transparent;
}
.feature:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--primary);
}
.feature .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}
.feature h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 18px;
}
.feature p {
    color: var(--gray);
    font-size: 14px;
}

/* ===== Page Banner ===== */
.page-banner {
    background: linear-gradient(135deg, rgba(0,168,168,0.9), rgba(26,43,74,0.9)),
                url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600') center/cover;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.page-banner h1 {
    font-size: 40px;
    margin-bottom: 12px;
    font-weight: 700;
}
.breadcrumb {
    font-size: 14px;
    opacity: 0.95;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--accent); }

/* ===== Content Pages ===== */
.content-page {
    background: #fff;
    padding: 55px 45px;
    margin: 50px auto;
    max-width: 1000px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.content-page h2 {
    color: var(--dark);
    margin-top: 35px;
    margin-bottom: 18px;
    font-size: 26px;
    position: relative;
    padding-left: 18px;
}
.content-page h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 25px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 3px;
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
    color: var(--primary-dark);
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 19px;
}
.content-page p {
    margin-bottom: 16px;
    color: #4a5b6e;
    font-size: 15px;
}
.content-page ul, .content-page ol {
    margin-left: 28px;
    margin-bottom: 18px;
}
.content-page ul li, .content-page ol li {
    margin-bottom: 10px;
    color: #4a5b6e;
}
.content-page a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}
.content-page a:hover { color: var(--accent); }

.disclaimer-box {
    background: linear-gradient(to right, #fff5f5, #fff);
    border-left: 4px solid var(--accent);
    padding: 18px 22px;
    margin: 22px 0;
    border-radius: 6px;
}
.disclaimer-box strong { color: var(--dark); }

/* ===== Footer ===== */
footer {
    background: var(--dark);
    color: #fff;
    padding: 55px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}
.footer-col h4 {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 17px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent);
}
.footer-col ul { list-style: none; }
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #b8c4d4;
    font-size: 14px;
    transition: all 0.3s;
}
.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.footer-col p {
    color: #b8c4d4;
    font-size: 14px;
    line-height: 1.8;
}
.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 22px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #b8c4d4;
    line-height: 1.8;
    border-left: 3px solid var(--accent);
}
.footer-disclaimer strong { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
    text-align: center;
    font-size: 14px;
    color: #b8c4d4;
}

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