:root {
    --primary-blue: #5d5fef;
    --dark-bg: #1a1a4b;
    --pink-accent: #ff2d6c;
    --text-dark: #333;
    --border-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
}

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

/* NAVBAR */
.navbar {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    padding: 8px 0;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    min-width: 230px;
    display: none;
    z-index: 999;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

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

/* Hover show (Desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Arrow animation */
.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}



/*modal*/
/* Wrapper */
.passenger-wrapper {
    position: relative;
    display: inline-block;
}

/* ❌ Default hidden */
.passenger-modal {
    position: absolute;
    top: 110%;
    left: 0;
    width: 360px;
    background: transparent;
    display: none;
    /* 🔥 by default hide */
    z-index: 9999;
}

/* ✅ Hover pe show */
.passenger-wrapper:hover .passenger-modal {
    display: block;
}

/* Modal box */
.passenger-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Header */
.passenger-header {
    margin-bottom: 12px;
}

/* Class grid */
.class-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.class-btn {
    padding: 8px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.class-btn.active {
    background: #5b5ef7;
    color: #fff;
    border-color: #5b5ef7;
}

/* Rows */
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.counter {
    display: flex;
    gap: 10px;
}

.counter button {
    width: 28px;
    height: 28px;
    border: none;
    background: #f3f4f6;
    border-radius: 4px;
    cursor: pointer;
}

/*booking Modal*/
.deal-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.deal-modal.active {
    display: flex;
}

.deal-modal-box {
    background: #fff;
    width: 620px;
    border-radius: 8px;
    padding: 20px;
}

.deal-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.deal-close {
    font-size: 22px;
    cursor: pointer;
}

.modal-input-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.modal-input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px;
    font-weight: 500;
}

.modal-input.full {
    width: 100%;
    margin-bottom: 16px;
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-find {
    background: #ffc107;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-whatsapp {
    background: #198754;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
}

.or-text {
    font-weight: 600;
}

/*hold section*/
.hold-deal-section {
    position: relative;
    padding: 90px 20px 70px;
    background: #fff;
    overflow: hidden;
    text-align: center;
}

.hold-bg {
    position: absolute;
    inset: 0;
    background: url("images/world-dots.png") center/contain no-repeat;
    opacity: 0.15;
}

.hold-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.hold-container h2 {
    font-size: 44px;
    font-weight: 800;
    color: #e11d48;
    margin-bottom: 10px;
}

.hold-container h2 span {
    color: #e11d48;
}

.sub-text {
    font-size: 20px;
    color: #333;
    margin-bottom: 50px;
}

.sub-text .highlight {
    background: #6366f1;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Route */
.route-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.route-point strong {
    font-size: 28px;
    color: #6366f1;
}

.route-point span {
    display: block;
    font-size: 14px;
    color: #555;
}

.route-line {
    position: relative;
    width: 280px;
    height: 2px;
}

.route-line .dots {
    position: absolute;
    inset: 0;
    border-bottom: 2px dotted #6366f1;
}

.route-line .plane {
    position: absolute;
    left: -20px;
    top: -12px;
    font-size: 24px;
    color: #6366f1;
}

.route-line .circle {
    position: absolute;
    right: -10px;
    top: -6px;
    width: 12px;
    height: 12px;
    border: 2px solid #6366f1;
    border-radius: 50%;
}

/* Trust */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 35px;
    font-size: 15px;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .hold-container h2 {
        font-size: 30px;
    }

    .route-wrap {
        flex-direction: column;
        gap: 20px;
    }
}

/* 🔒 hidden by default */
#holdDealScreen {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: none;
}

/* when active */
#holdDealScreen.active {
    display: block;
}

/* optional: prevent scroll */
body.no-scroll {
    overflow: hidden;
}



.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    background: var(--primary-blue);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    margin-right: 10px;
}

.logo-text {
    font-size: 22px;
    color: var(--text-dark);
}

.logo-text .u {
    color: var(--pink-accent);
    font-weight: 700;
}

.logo-text .k {
    color: var(--primary-blue);
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 13.5px;
    font-weight: 500;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-box {
    font-weight: 800;
    font-size: 17px;
    color: #000;
}

.phone-icon {
    color: var(--pink-accent);
    margin-right: 5px;
}

.signin-btn {
    text-decoration: none;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 7px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* HERO SECTION */
.hero {
    padding: 60px 0;
    color: #fff;
    background-image: radial-gradient(#ffffff15 1px, transparent 1px);
    background-size: 25px 25px;
}

.hero-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.main-heading {
    font-size: 42.5px;
    font-weight: 700;
}

.main-heading span {
    font-weight: 300;
}

.accreditations {
    display: flex;
    gap: 20px;
    align-items: center;
}

.atol {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.abta strong {
    font-size: 24px;
    letter-spacing: 2px;
}

/* SEARCH SECTION */
.search-tabs {
    display: flex;
    gap: 5px;
}

.tab {
    padding: 10px 30px;
    border: none;
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.tab.active {
    background: #fff;
    color: var(--dark-bg);
}

.search-white-box {
    background: #fff;
    padding: 25px;
    border-radius: 0 15px 15px 15px;
    color: var(--text-dark);
}

.passenger-selector {
    font-size: 13px;
    margin-bottom: 15px;
    color: #555;
    font-weight: 500;
}

.search-inputs-grid {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 15px;
    min-width: 0;
    /* Prevents overflow */
}

.input-wrap input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 13px;
    font-family: 'Poppins';
    margin-left: 8px;
}

.swap-btn {
    color: #999;
    font-size: 18px;
    cursor: pointer;
}

.main-search-btn {
    background: var(--pink-accent);
    color: #fff;
    border: none;
    padding: 13px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.trust-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 18px;
}

.star {
    color: #00b67a;
    font-size: 22px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .search-inputs-grid {
        flex-wrap: wrap;
    }

    .input-wrap {
        min-width: 45%;
    }

    .main-search-btn {
        width: 100%;
    }
}


/* Section Container */
.info-cards-section {
    background-color: #ffffff;
    padding: 20px 0 60px;
    font-family: 'Poppins', sans-serif;
    /* Aapki preferred font */
}

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

/* Breadcrumb Styling (Inside Section) */
.breadcrumb-nav {
    padding-bottom: 25px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-nav a {
    text-decoration: none;
    color: #007bff;
    /* Web blue color */
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    color: #ccc;
}

.breadcrumb-nav .current-page {
    color: #888;
}

/* Cards Grid */
.cards-grid {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

/* Base Card Style */
.info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Fare Card Specific */
.fare-card {
    text-align: left;
    min-width: 250px;
}

.fare-card .card-title {
    font-size: 15px;
    color: #444;
    font-weight: 400;
}

.fare-card .price {
    font-size: 46px;
    font-weight: 700;
    margin: 10px 0;
    color: #222;
}

.fare-card .price span {
    font-size: 22px;
    vertical-align: super;
    margin-left: 2px;
}

.fare-card .card-footer {
    background: #f4f6f8;
    padding: 12px;
    font-size: 12px;
    border-radius: 5px;
    color: #555;
    line-height: 1.5;
}

/* Promo Card (Red Box) */
.promo-card {
    flex: 2.5;
    /* Image ke mutabiq wider box */
    background: #e00021;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hold My Fare Overlay */
.promo-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
}

.hold-fare-badge {
    background: #fff;
    color: #222;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hold-fare-badge strong {
    font-size: 15px;
    display: block;
}

.hold-fare-badge .close-icon {
    color: #007bff;
    margin-right: 5px;
}

/* Rating Cards */
.rating-card {
    min-width: 175px;
}

.rating-header {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.tp-star {
    color: #00b67a;
    font-size: 20px;
}

.rating-number {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.rating-label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.stars-visual {
    color: #00b67a;
    font-size: 18px;
    margin: 5px 0;
}

.stars-visual.yellow {
    color: #fab915;
}

.reviews-sub {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.verified-tag {
    font-size: 10px;
    font-weight: 700;
    color: #00b67a;
    background: #e6f7f1;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

/* Google Brand Colors */
.google-brand span {
    color: #4285F4;
    /* Google Blue */
}

/* =========================
   RESPONSIVE CARD ORDER (MOBILE)
   ========================= */

@media (max-width: 1024px) {

    .cards-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* 🔹 ROW 1: Promo Image (Full Width) */
    .promo-card {
        order: 1;
        flex: 0 0 100%;
        height: 240px;
    }

    /* 🔹 ROW 2: Trustpilot + Google */
    .trustpilot-card {
        order: 2;
        flex: 0 0 calc(50% - 8px);
    }

    .google-card {
        order: 3;
        flex: 0 0 calc(50% - 8px);
    }

    /* 🔹 ROW 3: Lowest Fare (Full Width) */
    .fare-card {
        order: 4;
        flex: 0 0 100%;
    }
}

/* =========================
   EXTRA SMALL SCREENS
   ========================= */
@media (max-width: 600px) {

    /* Trust + Google stack vertically */
    .trustpilot-card,
    .google-card {
        flex: 0 0 100%;
    }
}



/* Deals Section */
.deals-section {
    padding: 60px 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two equal columns */
    column-gap: 25px;
    /* Side-by-side gap */
    row-gap: 45px;
    /* Top-to-bottom gap for cards */
}

.deal-card {
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px 25px 25px 25px;
    position: relative;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Badges styling */
.badge-row {
    position: absolute;
    top: -15px;
    /* Card border ke upar overlap */
    left: 25px;
    display: flex;
    gap: 8px;
}

.trip-type {
    background: #444;
    color: white;
    padding: 5px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.deal-date {
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px 18px;
    border-radius: 10px;
    font-size: 12px;
    color: #666;
}

/* Layout within the card */
.deal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.airline-info {
    text-align: center;
    flex: 0 0 100px;
}

.airline-info img {
    width: 50px;
    height: auto;
    margin-bottom: 8px;
}

.airline-info p {
    font-size: 11px;
    color: #888;
    line-height: 1.2;
}

.flight-details {
    flex: 1;
}

.flight-details .route {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    display: flex;
    flex-direction: column;
}

.flight-details .route small {
    font-size: 13px;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}

.flight-details .date-text {
    margin-top: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.price-action {
    text-align: right;
    flex: 0 0 130px;
}

.deal-price {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.deal-price span {
    font-size: 16px;
    vertical-align: super;
    margin-left: 2px;
}

.book-now {
    display: inline-block;
    background: #ffcc00;
    color: #222;
    text-decoration: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: background 0.2s;
}

.book-now:hover {
    background: #f0c000;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .deals-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .deal-content {
        flex-direction: column;
        text-align: center;
    }

    .price-action {
        text-align: center;
        width: 100%;
    }
}

.australia-info-section {
    background: #ffffff;
    padding: 70px 0;
}

.australia-info-section .container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

.info-heading {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin: 45px 0 15px;
    line-height: 1.3;
}

.info-text {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 20px;
}

.airline-list {
    margin-top: 15px;
    padding-left: 22px;
}

.airline-list li {
    font-size: 16px;
    line-height: 1.9;
    color: #222;
    list-style: square;
}

/* Responsive */
@media (max-width: 768px) {
    .info-heading {
        font-size: 22px;
    }

    .info-text,
    .airline-list li {
        font-size: 15px;
    }
}

.flight-links-section {
    background: #fff;
    padding: 80px 0;
}

.links-block {
    margin-bottom: 70px;
}

.links-heading {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.links-heading .icon {
    font-size: 28px;
    opacity: 0.8;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.links-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-grid li {
    margin-bottom: 14px;
}

.links-grid a {
    font-size: 16px;
    color: #0b63ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.links-grid a:hover {
    color: #003bbd;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .links-grid {
        grid-template-columns: 1fr;
    }

    .links-heading {
        font-size: 22px;
    }
}

.newsletter-section {
    padding: 60px 0;
    background: #ffffff;
}

/* Wrapper */
.newsletter-wrapper {
    background: #2e3346;
    border-radius: 6px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
    overflow: visible;
    /* ❗ image ko bahar dikhane ke liye */
}

/* Envelope IMAGE (uپر se nikli hui) */
.newsletter-envelope {
    position: absolute;
    top: -55px;
    /* upar lift */
    left: 20px;
    transform: rotate(-5deg);
    z-index: 5;
    /* sab se upar */
    pointer-events: none;
}

.newsletter-envelope img {
    width: 120px;
    /* screenshot ke close */
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

/* Left text */
.newsletter-left {
    color: #ffffff;
    min-width: 280px;
    position: relative;
    z-index: 2;
}

.newsletter-left h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 6px;
}

.newsletter-left p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}

/* Right form */
.newsletter-right {
    display: flex;
    gap: 20px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.newsletter-right input {
    width: 260px;
    padding: 14px 18px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
}

.newsletter-right button {
    background: #ffc21c;
    color: #111;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .newsletter-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .newsletter-right {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-right input {
        width: 100%;
    }

    .newsletter-envelope {
        top: -40px;
        left: 15px;
        transform: rotate(-10deg);
    }
}

.atol-info-section {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
}

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

.atol-text {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

.atol-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.atol-text a:hover {
    text-decoration: underline;
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0 25px;
    font-size: 14px;
    color: #374151;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

/* Contact */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list a {
    color: #111827;
    text-decoration: none;
}

.company-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Certificates logos */
.cert-logos {
    display: flex;
    gap: 25px;
}

.cert {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #374151;
}

.cert img {
    width: 45px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #2563eb;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Social */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.footer-bottom a {
    color: #2563eb;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* =========================
   MOBILE CENTER FIX (INFO CARDS)
   ========================= */

@media (max-width: 1024px) {

    .cards-grid {
        justify-content: center;
        /* 🔥 CENTER ROW */
    }

    .promo-card,
    .fare-card,
    .trustpilot-card,
    .google-card {
        margin-left: auto;
        margin-right: auto;
        /* 🔥 CENTER EACH CARD */
    }
}

/* Extra safety for small screens */
@media (max-width: 600px) {

    .cards-grid {
        padding-left: 0;
        padding-right: 0;
    }

    .info-card,
    .promo-card {
        width: 100%;
        max-width: 100%;
    }
}

/* =========================
   MOBILE RESPONSIVE FIX (ALL CARDS CENTER)
   ========================= */

@media (max-width: 1024px) {

    /* 1. INFO CARDS SECTION */
    .cards-grid {
        display: flex;
        flex-direction: column;
        /* Cards ko stack karne ke liye */
        align-items: center;
        /* Horizontal Center */
        gap: 20px;
    }

    .info-card,
    .promo-card,
    .fare-card {
        width: 100%;
        max-width: 500px;
        /* Mobile par card bohot zyada wide na ho jaye */
        flex: none;
        /* Flex grow/shrink ko disable kiya center alignment ke liye */
        margin: 0 auto;
        /* Perfect centering */
    }

    /* 2. DEALS SECTION */
    .deals-grid {
        grid-template-columns: 1fr;
        /* Single column layout */
        justify-items: center;
        /* Grid items ko center karne ke liye */
        gap: 30px;
    }

    .deal-card {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }

    .deal-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .price-action {
        text-align: center;
        width: 100%;
    }

    /* 3. NEWSLETTER SECTION */
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .newsletter-right {
        width: 100%;
        justify-content: center;
    }

    .newsletter-envelope {
        position: relative;
        /* Mobile par overlap issues se bachne ke liye */
        top: 0;
        left: 0;
        margin-bottom: 20px;
        transform: none;
    }
}

/* =========================
   EXTRA SMALL SCREENS (MOBILE)
   ========================= */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    /* Heading sizes choti karne ke liye taake center mein achi lagein */
    .main-heading {
        font-size: 20px;
        text-align: center;
    }

    .hold-container h2 {
        font-size: 26px;
    }

    /* Form inputs ko full width aur center karna */
    .search-inputs-grid {
        flex-direction: column;
        gap: 12px;
    }

    .input-wrap {
        width: 100%;
    }

    .main-search-btn {
        width: 100%;
    }

    /* Route/Plane animation section */
    .route-wrap {
        flex-direction: column;
        gap: 15px;
    }

    .route-line {
        width: 100%;
        max-width: 200px;
        margin: 10px auto;
    }

    /* Footer links center */
    .footer-grid {
        text-align: center;
    }

    .cert-logos,
    .social-icons {
        justify-content: center;
    }
}



.date-pill {
    width: 100%;
    min-width: 180px;
    /* 👈 IMPORTANT */
    max-width: 180px;
    /* 👈 SAME SIZE */
}


.search-inputs-grid .date-pill {
    flex: 0 0 200px;
    /* fixed width */
    max-width: 200px;
    min-width: 200px;
}

#return-date-container {
    transition: opacity 0.2s ease;
}
