body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8fafc;
    padding-top: 110px;
}

/* Navbar */
.navbar-modern {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 1rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ff7a18, #af002d 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-modern .nav-link {
    position: relative;
    color: #0f172a;
    margin: 0 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-modern .nav-link:hover {
    color: #af002d;
}

.navbar-modern .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff7a18, #ffb347);
    transition: all 0.4s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

.navbar-modern .nav-link:hover::after,
.navbar-modern .nav-link.active::after {
    width: 70%;
}

.navbar-modern .nav-link.active {
    color: #ff7a18 !important;
    font-weight: 600;
}

.btn-live {
    background: linear-gradient(45deg, #ff7a18, #ffb347);
    border: none;
    border-radius: 30px;
    padding: 0.4rem 1rem;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.btn-live:hover {
    transform: scale(1.05);
}

.call-box {
    background: #fff6f2;
    border-radius: 25px;
    padding: 0.4rem 0.9rem;
    margin-left: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #af002d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.call-box i {
    color: #ff7a18;
    margin-right: 6px;
}

/* Booking Form Card */
.booking-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-width: 950px;
    margin: auto;
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-3px);
}

.form-label {
    font-weight: 600;
}

.btn-search {
    background: linear-gradient(45deg, #ff7a18, #ffb347);
    color: #fff;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-search:hover {
    transform: scale(1.05);
}

.nav-pills .nav-link {
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    transition: 0.3s;
}

.nav-pills .nav-link.active {
    background: linear-gradient(45deg, #ff7a18, #ffb347);
    color: #fff;
}

.remove-flight {
    cursor: pointer;
    color: #af002d;
    font-size: 1.2rem;
}

/* About Us Section */
.about-container {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.about-container h2 {
    text-align: center;
    color: #072142;
    font-size: 36px;
    margin-bottom: 30px;
}

.about-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-container h4 {
    color: #072142;
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-container ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-container li {
    margin-bottom: 10px;
}

@media(max-width:768px) {
    .banner h1 {
        font-size: 36px;
    }
}

.swap-btn {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: #ff7a18;
    border-radius: 50%;
    color: #fff;
    width: 32px;
    height: 32px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.swap-btn:hover {
    background: #ffb347;
}

@media (max-width: 576px) {
    .booking-card {
        padding: 1rem;
    }

    .swap-btn {
        right: 0;
        top: 100%;
        transform: translateY(-50%);
    }
}

.flight-deals {
    background: #f9fafb;
}

.deal-heading {
    background: #0f5f5c;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.deal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deal-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.deal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.airline-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.deal-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff7a18;
}

.deals-section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0f3d3e;
}

.deal-header {
    background: #0f3d3e;
    color: #fff;
    padding: 10px 20px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

.deal-box {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.deal-box:hover {
    border-color: #ff7a18;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.deal-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.deal-left img {
    height: 30px;
    max-width: 80px;
    object-fit: contain;
}

.route {
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
}

.dates {
    font-size: 0.9rem;
    color: #64748b;
}

.deal-price {
    text-align: right;
    font-weight: 700;
    color: #f97316;
    font-size: 1.1rem;
}

.per-person {
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 767.98px) {
    .deal-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .deal-price {
        margin-top: 10px;
        text-align: left;
    }
}

.callnow_act:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.assistcard_mn a:hover {
    opacity: 0.85;
}

.flight-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.flight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.flight-card-bottom a.btn-outline-primary {
    border-radius: 25px;
    transition: all 0.3s;
}

.flight-card-bottom a.btn-outline-primary:hover {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    border: none;
    transform: scale(1.05);
}

.flight-card-top h4 {
    font-size: 1.25rem;
}

.flight-card-top p {
    font-size: 0.95rem;
}

/* Event Card Styles */
.event-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.event-img {
    position: relative;
    overflow: hidden;
}

.event-img img {
    transition: transform 0.3s;
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff7a18;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
    transition: background 0.3s;
}

.event-card:hover .event-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
}

/* Book Flight Button with Phone Icon */
.btn-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    border: 2px solid #ff7a18;
    color: #ff7a18;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-call .btn-icon {
    position: absolute;
    right: -40px;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    border: none;
}

.btn-call:hover .btn-icon {
    right: 10px;
    opacity: 1;
}

.faq-section h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.faq-section p {
    font-size: 1rem;
    line-height: 1.6;
}

.accordion-button {
    font-size: 1.05rem;
    color: #0f172a;
    background: #fff;
    border-radius: 8px;
}

.accordion-button:not(.collapsed) {
    background: #fffbf7;
    color: #ff7a18;
    font-weight: 600;
}

.accordion-body {
    font-size: 0.95rem;
    color: #475569;
    background: #fff;
}

.accordion-item {
    border: none;
}

.terms-section h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.terms-section h4 {
    font-size: 1.25rem;
    color: #0f172a;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.6;
}

.terms-card ul li {
    margin-bottom: 8px;
}