/* ==============================
   CSS VARIABLES & RESET
   ============================== */
:root {
    --header-blue: #00478F; 
    --primary-blue: #0A2540;
    --action-blue: #0066FF;
    --accent-orange: #F15A22; 
    --green-btn: #34A853; 
    --text-dark: #333333;
    --bg-light: #F4F7F9;
    --border-color: #E2E8F0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--bg-light); color: var(--text-dark); }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }

/* ==============================
   HEADER
   ============================== */
header { background-color: var(--header-blue); color: white; padding: 12px 0; }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo-area { display: flex; align-items: center; gap: 8px; font-size: 1.8rem; font-weight: 800; font-style: italic; letter-spacing: -0.5px; }
.logo-area i { color: var(--accent-orange); font-size: 2rem; transform: rotate(-15deg); }

.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

.top-nav { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; display: flex; align-items: center; gap: 12px; letter-spacing: 0.5px; }
.top-nav a:hover { color: #93C5FD; }
.nav-divider { opacity: 0.4; font-size: 0.8rem; }

.header-cta-block { display: flex; align-items: center; gap: 15px; }
.cta-text { text-align: right; font-size: 0.85rem; line-height: 1.2; }
.cta-text .highlight { color: #FFD700; font-weight: 800; }

.header-call-btn { background-color: var(--green-btn); color: white; padding: 6px 16px; border-radius: 20px; font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; gap: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(52, 168, 83, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 168, 83, 0); } }

/* ==============================
   HERO & SEARCH WIDGET (UPDATED DESIGN)
   ============================== */
.hero { 
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover; 
            padding: 60px 20px 100px; 
            min-height: 450px; 
            display: flex; 
            align-items: center; 
            justify-content: center; /* YEH LINE SEARCH BOX KO CENTER KAREGI */
        }
        
        .search-widget { 
            background-color: rgba(10, 37, 64, 0.85); 
            backdrop-filter: blur(8px); 
            border-radius: 8px; 
            padding: 20px 25px; 
            width: 100%; 
            max-width: 1100px; 
            color: white; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
        }

.trip-types { 
    display: flex; 
    gap: 25px; 
    margin-bottom: 15px; 
    font-size: 0.9rem; 
}

.trip-types label { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    cursor: pointer; 
    font-weight: 600; 
    color: white;
}

.trip-types input[type="radio"] {
    accent-color: var(--action-blue);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.search-inputs-wrapper { 
    display: flex; 
    background: white; 
    border-radius: 6px; 
    height: 60px; 
}

.input-group { 
    flex: 1; 
    padding: 8px 15px; 
    border-right: 1px solid #E2E8F0; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.input-group label { 
    font-size: 0.65rem; 
    color: #64748B; 
    text-transform: uppercase; 
    font-weight: 700; 
    margin-bottom: 2px; 
}

.input-group input, .input-group select { 
    border: none; 
    outline: none; 
    font-size: 0.95rem; 
    font-weight: 600; 
    width: 100%; 
    color: var(--primary-blue); 
    background: transparent; 
    font-family: 'Inter', sans-serif;
}

.search-btn-container { 
    width: 140px; 
}

.btn-search { 
    background-color: var(--accent-orange); 
    color: white; 
    border: none; 
    width: 100%; 
    height: 100%; 
    font-size: 1rem; 
    font-weight: 800; 
    cursor: pointer; 
    border-radius: 0 6px 6px 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    transition: background 0.2s; 
}

.btn-search:hover { 
    background-color: #D94A1A; 
}

.swap-icon { 
    position: absolute; 
    right: -15px; 
    top: 50%; 
    transform: translateY(-50%); 
    background: white; 
    border: 1px solid #E2E8F0; 
    width: 30px; 
    height: 30px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 2; 
    color: var(--action-blue); 
    cursor: pointer; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

.widget-footer { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    margin-top: 15px; 
    font-size: 0.85rem; 
    color: white; 
}

.widget-footer label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.widget-footer input[type="checkbox"] {
    accent-color: var(--action-blue);
    width: 14px;
    height: 14px;
}

/* ==============================
   AIRPORT DROPDOWN STYLES
   ============================== */
.airport-dropdown {
    position: absolute; top: 100%; left: 0; width: 100%; min-width: 300px;
    background: white; border: 1px solid var(--border-color); border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); z-index: 100;
    display: none; max-height: 250px; overflow-y: auto; color: var(--text-dark);
}

.airport-dropdown.active { display: block; }

.airport-item { padding: 12px 15px; cursor: pointer; border-bottom: 1px solid #F1F5F9; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.airport-item:hover { background-color: #EFF6FF; }
.airport-item:last-child { border-bottom: none; }

.airport-city-info strong { display: block; font-size: 0.95rem; color: var(--primary-blue); }
.airport-city-info span { font-size: 0.75rem; color: #64748B; }
.airport-code-badge { background: #F1F5F9; padding: 4px 8px; border-radius: 4px; font-weight: 700; font-size: 0.85rem; color: var(--action-blue); }

/* ==============================
   BANNERS & CARDS
   ============================== */
.trust-banner { background: white; padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 40px; }
.trust-content { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 15px; font-weight: 600; font-size: 1rem; }
.trust-icon { width: 45px; height: 45px; border-radius: 50%; background: #EFF6FF; color: var(--action-blue); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; border: 1px solid #DBEAFE; }

/* EXACT MATCH PROMO BANNER */
.promo-banner { 
    background-color: #1a6acb; 
    border-radius: 16px; 
    padding: 40px 50px; 
    color: white; 
    margin: 0 auto 40px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 40px;
}

.promo-left { flex: 1; max-width: 550px; }
.promo-badge { background: rgba(255, 255, 255, 0.15); padding: 6px 14px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.promo-left h2 { font-size: 2.2rem; font-weight: 500; margin-bottom: 15px; letter-spacing: -0.5px; }
.promo-left p { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }

.btn-promo { background: white; color: #1a6acb; padding: 12px 28px; border-radius: 30px; font-weight: 700; font-size: 0.95rem; display: inline-block; transition: transform 0.2s; }
.btn-promo:hover { transform: translateY(-2px); }

.promo-right { display: flex; flex-direction: column; gap: 12px; width: 320px; }
.feature-pill { background: rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 12px; display: flex; align-items: center; gap: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: background 0.3s; }
.feature-pill:hover { background: rgba(255, 255, 255, 0.15); }
.feature-icon { background: rgba(255, 255, 255, 0.15); width: 45px; height: 45px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); }
.feature-icon.yellow i { color: #FFD700; }
.feature-text { display: flex; flex-direction: column; }
.feature-text strong { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.feature-text span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); }

/* GRID SECTIONS */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.cat-card { background: white; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; transition: transform 0.3s; }
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.cat-card img { width: 100%; height: 160px; object-fit: cover; }
.cat-info { padding: 15px; }
.cat-info h3 { font-size: 1.1rem; margin-bottom: 10px; }
.coupon-box { display: flex; justify-content: space-between; align-items: center; background: #F8FAFC; border: 1px dashed #CBD5E1; padding: 8px; border-radius: 4px; }
.coupon-code { font-weight: 800; color: var(--action-blue); font-size: 1.1rem; }
.coupon-tag { background: white; border: 1px solid #E2E8F0; padding: 4px 8px; font-size: 0.75rem; border-radius: 4px; font-weight: 600; color: #64748B; }

/* EXACT MATCH DESTINATIONS GRID */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 60px; }
.dest-card { position: relative; background: white; padding: 6px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); height: 260px; display: block; transition: transform 0.2s; }
.dest-card:hover { transform: translateY(-3px); }
.dest-card-inner { position: relative; width: 100%; height: 100%; overflow: hidden; }
.dest-card-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dest-card:hover .dest-card-inner img { transform: scale(1.05); }
.dest-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 15px 15px; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%); color: white; line-height: 1.3; }
.dest-overlay .city { font-size: 1.05rem; font-weight: 700; }
.dest-overlay .country { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; }
.span-2 { grid-column: span 2; }

.call-cta-box { background-color: #0E4E86; color: white; padding: 30px 20px; text-align: center; display: flex; flex-direction: column; justify-content: center; height: 260px; }
.call-cta-box h3 { font-size: 1.15rem; font-weight: 400; line-height: 1.5; margin-bottom: 10px; }
.call-cta-separator { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 20px 0; }
.call-cta-separator::before, .call-cta-separator::after { content: ''; height: 1px; background-color: rgba(255,255,255,0.3); flex: 1; }
.call-cta-separator i { color: rgba(255,255,255,0.7); font-size: 1.2rem; transform: scaleX(-1); }
.call-cta-box .phone { font-size: 1.6rem; font-weight: 700; color: white; letter-spacing: 0.5px; }

/* ==============================
   EXACT MATCH FOOTER
   ============================== */
footer { 
    width: 100%;
    font-size: 0.85rem;
    font-family: Arial, Helvetica, sans-serif; 
}

.footer-main {
    background-color: #1462A3; 
    padding: 40px 0 50px;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px; 
}

.footer-col h4 { 
    color: white; 
    font-size: 0.95rem; 
    font-weight: 600; 
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
    display: inline-block;
    min-width: 80%; 
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85); 
    transition: color 0.2s;
}

.footer-col ul li a:hover { 
    color: white; 
    text-decoration: underline; 
}

.footer-disclaimer-wrapper {
    background-color: #ffffff;
    padding: 20px 0;
    color: #333333;
}

.disclaimer-text { 
    font-size: 0.75rem; 
    line-height: 1.5; 
    text-align: justify; 
}

.footer-copyright-wrapper {
    background-color: #F5F5F5;
    padding: 25px 0 35px;
    color: #999999;
}

.copyright { 
    font-size: 0.75rem;
    text-align: left; 
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 1024px) {
    .header-right { align-items: center; }
    .top-nav { display: none; }
    .search-inputs-wrapper { flex-direction: column; height: auto; border-radius: 4px; overflow: hidden; }
    .input-group { border-right: none; border-bottom: 1px solid var(--border-color); padding: 15px; }
    .search-btn-container { width: 100%; height: 60px; }
    .btn-search { border-radius: 0 0 4px 4px; }
    .swap-icon { display: none; }
    .airport-dropdown { top: 100%; z-index: 100; }
    .category-grid, .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .promo-banner { flex-direction: column; text-align: center; gap: 30px; padding: 30px; }
    .promo-right { width: 100%; max-width: 400px; }
}

@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 15px; }
    .header-cta-block { flex-direction: column; text-align: center; gap: 10px; }
    .cta-text { text-align: center; }
    .category-grid, .dest-grid { grid-template-columns: 1fr; }
    .span-2 { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
}
