* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.fs-14 {
    font-size: 14px;
}

.fs-13 {
    font-size: 13px;
}

.fs-12 {
    font-size: 12px;
}

.text-orange {
    color: #ff690c;
}

.bg-grd {
    background: linear-gradient(135deg, #923d07, #c5530c) !important;
}

a {
    text-decoration: none !important;
}

.border-rights {
    border-right: 1.5px solid #fff;
}

.custom-nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 10px;
    background: rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-weight: 700;
    font-size: 1.3rem;
}

.logo span {
    font-weight: 400;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

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

/* Mobile Right Section */
.mobile-right {
    display: none;
    align-items: center;
    gap: 1rem;
}

.my-bookings {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.7);
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu .bar {
    height: 2px;
    width: 19px;
    background: white;
    margin: 2px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== MOBILE MENU OVERLAY ===== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    flex-direction: column;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.menu-header {
    background: #2563eb;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-header .close-menu {
    cursor: pointer;
    font-size: 1.5rem;
}

.menu-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
}

.menu-item i {
    font-size: 1.2rem;
    color: #555;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 0.5rem;
}

.hero {
    position: relative;
    padding: 180px 0 30px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 90%;
    max-width: 1100px;
}

@media (max-width: 900px) {
    .hero {
        height: auto;
        background-color: #005f73;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .hero-video {
        display: none !important;
    }

    .overlay h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

.booking-box {
    background: white;
    color: black;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
}

.tabs button {
    background: none;
    border: none;
    font-weight: 700;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: gray;
}

.tabs button.active {
    color: #2563eb;
    border-bottom: 2px solid #2563eb;
}

.trip-type {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.inputs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 1rem;
    padding: 1rem;
}

.inputs label {
    font-size: 0.8rem;
    color: gray;
    display: block;
    margin-bottom: 0.3rem;
}

.input-field {
    border: 1px solid #ccc;
    padding: 0.6rem;
    border-radius: 5px;
}

.search-btn {
    grid-column: span 1;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.7rem;
    cursor: pointer;
    font-weight: 700;
}

.search-btn:hover {
    background: #1e40af;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .custom-nav {
        position: static;
        background-color: #2d728f;
    }

    .nav-links {
        display: none;
    }

    .mobile-right {
        display: flex;
    }

    .hero {
        height: auto;
        background: #005f73;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .overlay h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .inputs {
        grid-template-columns: 1fr;
    }

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

.support-dropdown {
    position: relative;
}

.support-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.support-link:hover {
    text-decoration: underline;
}

/* Hidden dropdown box */
.support-box {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 0;
    background: white;
    color: black;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 260px;
    overflow: hidden;
    z-index: 2000;
}

/* Show dropdown on hover */
.support-dropdown:hover .support-box {
    display: block;
}

/* Header */
.support-header {
    background: #2563eb;
    color: white;
    font-weight: 700;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
}

/* Each country row */
.support-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.3rem;
    border-bottom: 1px solid #eee;
}

.support-item img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

.support-item .number {
    font-weight: 700;
    font-size: 1rem;
    color: black;
}

/* Footer section */
.support-footer {
    background: #e0e7ff;
    color: #111;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}

.support-footer i {
    color: #2563eb;
}

.package-section {
    background: #fff;
}

.info-box {
    background: #6c6c6c;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: #5a5a5a;
}

.info-box .icon i {
    font-size: 2rem;
    color: #fff;
}

.call-box {
    background: #ff751f;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.call-box .call-img {
    width: 80px;
    height: auto;
    /* border-radius: 50%; */
    right: 0;
    bottom: 0;
}

.call-box:hover {
    background: #a00000;
}


.br-10 {
    border-radius: 10px;
}

.flight-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1rem;
    height: 100%;
}

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

/* Popular Destinations  */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}


.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* Hotel Section */
.hotel-img {
    height: 200px;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 70%;
    left: 0;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgb(255 106 0) 0%, rgb(151 67 7) 51%, rgb(171 72 2) 100%);
    color: white;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 10;
    white-space: nowrap;
    padding-right: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
    font-size: 10px;
}

.stars {
    line-height: 1;
}

.btn-book {
    background-color: #ff751f !important;
    border-color: #ff751f !important;
    font-weight: bold;
}

/* CTA Section */
.customersectionbg {
    background-color: #e8e3e0;
    margin-top: 20px;
}

.customersection {
    display: flex;
    justify-content: space-around;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.customersection .customerimg {
    flex: 0 0 240px;
}

.customersection .customerimg img {
    width: 100%;
    height: auto;
    margin-top: -25px;
    float: left;
}

.customersection .customercontent {
    flex: 0 0 calc(100% - 250px);
    text-align: center;
}

.customersection .customercontent p {
    font-size: 3em;
    color: #ffffff;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}


/* Footer  */
.footer-section {
    background-color: #1a1a1a;
}

.subscribe-box {
    background-color: #923d07;
    border-radius: 0;
}

.footer-bottom {
    background-color: #111;
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-section a:hover {
    color: #ff4c4c !important;
}

/* Call Banner Phone */
.call-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #f4f8ff 0%, #eaf0ff 100%);
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    display: flex;
    justify-content: center;
    padding: 6px 8px;

    /* Animation */
    animation: slideUp 0.6s ease-out forwards;
}

.banner-content {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left {
    flex: 0 0 auto;
}

.agent-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.center {
    text-align: center;
    flex: 1;
    line-height: 1.2;
}

.deal-text {
    font-size: 0.78rem;
    font-weight: 500;
    color: #000;
}

.deal-number {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1d4ed8;
}

.right {
    flex: 0 0 auto;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    margin-left: 8px;
}

.close-btn:hover {
    color: #1d4ed8;
}


/* Slide up animation */
@keyframes slideUp {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

/* Policies-page css  */
.rt-bg {
    border: 1px solid #e0e0e0;
    padding: 16px 10px 8px 18px;
}

.mt-5-custom {
    margin-top: 20px;
}

.policy-content {
    border: 1px solid #e0e0e0;
    padding: 16px 20px 8px 18px;
    background: #fff;
}