/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: #002147;
    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 a {
    color: #fff;
    margin-left: 15px;
}

.top-bar .toll-free {
    font-weight: bold;
    color: #ffcc00;
}

/* ===== Header & Navigation ===== */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #002147;
}

.logo span {
    color: #ff6b00;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    position: relative;
    margin-left: 25px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6b00;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    background: none;
    border: none;
    color: #002147;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(0, 33, 71, 0.7), rgba(0, 33, 71, 0.7)),
                url('https://images.unsplash.com/photo-1488085061387-422e29b40080?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== Flight Query Form ===== */
.flight-form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    margin: 0 auto;
    color: #333;
}

.flight-form h2 {
    color: #002147;
    margin-bottom: 20px;
    font-size: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #ff6b00;
}

.btn-search {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-search:hover {
    background: #e55d00;
}

.disclaimer-form {
    font-size: 12px;
    color: #777;
    margin-top: 15px;
    text-align: center;
    line-height: 1.5;
}

/* ===== Section Styles ===== */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #002147;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

/* ===== Deals Cards ===== */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.deal-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.deal-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.deal-card-content {
    padding: 20px;
}

.deal-card h3 {
    color: #002147;
    margin-bottom: 8px;
    font-size: 20px;
}

.deal-card .route {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.deal-card .price {
    color: #ff6b00;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.deal-card .price small {
    font-size: 13px;
    color: #888;
    font-weight: normal;
}

.deal-card .btn-call {
    display: inline-block;
    background: #002147;
    color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.deal-card .btn-call:hover {
    background: #003875;
}

/* ===== Exclusive Deals Banner ===== */
.exclusive-banner {
    background: linear-gradient(135deg, #ff6b00, #ff8e3c);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.exclusive-banner h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.exclusive-banner p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.exclusive-banner .btn-call-large {
    display: inline-block;
    background: #fff;
    color: #ff6b00;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.exclusive-banner .btn-call-large:hover {
    transform: scale(1.05);
}

/* ===== Destinations Grid ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.destination-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 20px;
}

.destination-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.destination-card .price-tag {
    color: #ffcc00;
    font-weight: bold;
}

/* ===== Why Choose Us ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-box .icon {
    font-size: 48px;
    color: #ff6b00;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: #002147;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
}

/* ===== Content Pages ===== */
.page-header {
    background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 33, 71, 0.85)),
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
}

.content-section {
    background: #fff;
    padding: 50px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper h2 {
    color: #002147;
    margin: 25px 0 15px;
    font-size: 26px;
}

.content-wrapper h3 {
    color: #002147;
    margin: 20px 0 10px;
    font-size: 20px;
}

.content-wrapper p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 15px 0 15px 30px;
    color: #444;
}

.content-wrapper li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-wrapper strong {
    color: #002147;
}

.last-updated {
    background: #f0f4f8;
    padding: 12px 20px;
    border-left: 4px solid #ff6b00;
    margin-bottom: 25px;
    font-size: 14px;
    color: #555;
}

/* ===== Disclaimer Box ===== */
.disclaimer-box {
    background: #fff8e1;
    border: 1px solid #ffd54f;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.disclaimer-box h3 {
    color: #b08800;
    margin-bottom: 10px;
}

.disclaimer-box p {
    color: #5d4a00;
    font-size: 14px;
    margin: 0;
}

/* ===== Call to Action Box ===== */
.cta-box {
    background: linear-gradient(135deg, #002147, #003875);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-box p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.cta-box .phone-large {
    font-size: 32px;
    font-weight: bold;
    color: #ffcc00;
    display: inline-block;
    margin-top: 10px;
}

/* ===== Footer ===== */
footer {
    background-color: #001530;
    color: #c0c0c0;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #ff6b00;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #c0c0c0;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #ff6b00;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-disclaimer {
    background: #000a1a;
    padding: 20px 0;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

.footer-bottom {
    background: #000510;
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #1a2a40;
}

.footer-bottom a {
    color: #ff6b00;
}

/* ===== Floating Call Button ===== */
.floating-call {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ff6b00;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
    z-index: 999;
    font-size: 15px;
    transition: transform 0.3s;
}

.floating-call:hover {
    transform: scale(1.05);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f5f5f5;
        padding: 0;
    }
    
    .dropdown-menu a {
        padding-left: 40px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        font-size: 13px;
        text-align: center;
    }
    
    .top-bar a {
        margin: 0 8px;
    }
    
    .hero {
        padding: 50px 0 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .floating-call {
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .deal-card img {
        height: 180px;
    }
    
    .cta-box .phone-large {
        font-size: 24px;
    }
}
