/* ===============================
   MODERN HERO IMAGE BANNER
================================ */

.hero-banner-new {
    position: relative;
    height: 70vh;
    /* height reduced */
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

/* BACKGROUND IMAGE */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1502920514313-52581002a659?auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: slowZoom 18s ease-in-out infinite alternate;
}

/* DARK OVERLAY */
.hero-banner-new::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(2, 6, 23, 0.85) 0%,
            rgba(2, 6, 23, 0.55) 50%,
            rgba(2, 6, 23, 0.3) 100%);
    z-index: 1;
}

@keyframes slowZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.2);
    }
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: #fff;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* BUTTONS */
.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b3b3b, #919196);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.35s ease;
}

.hero-btn-primary span {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.45);
}

.hero-btn-primary:hover span {
    transform: translateX(6px);
}

.hero-btn-outline {
    padding: 14px 34px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #020617;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-banner-new {
        height: 60vh;
        min-height: 480px;
        border-radius: 0 0 24px 24px;
    }

    .hero-content h1 {
        font-size: 38px;
    }
}


/* ===============================
   OFFER IMAGE SLIDER
================================ */

.offer-slider {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
}

.offer-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

.offer-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.offer-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(2, 6, 23, 0.85) 0%,
            rgba(2, 6, 23, 0.5) 60%,
            rgba(2, 6, 23, 0.25) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #fff;
}

.offer-overlay h2 {
    font-size: 42px;
    font-weight: 900;
    max-width: 600px;
    margin-bottom: 24px;
}

/* Button */
.offer-btn {
    display: inline-block;
    width: fit-content;
    padding: 14px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: 0.35s ease;
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(99, 102, 241, 0.45);
}

/* Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    z-index: 5;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.slider-btn.prev {
    left: 5px;
}

.slider-btn.next {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-slider {
        height: 340px;
    }

    .offer-overlay {
        padding: 30px;
    }

    .offer-overlay h2 {
        font-size: 28px;
    }
}

/* ===============================
   DESTINATION PROMOTION SECTION
================================ */

.promotion-destinations {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.promotion-destinations .media-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.section-headings {
    max-width: 820px;
    margin: 0 auto 60px;
    color: #fff;
}

.heading-xl {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* SLIDER */
.destination-slider-wrap {
    position: relative;
}

.destination-card {
    position: relative;
    display: block;
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.destination-card:hover img {
    transform: scale(1.15);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.55);
}

/* Overlay */
.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(2, 6, 23, 0.1) 40%,
            rgba(2, 6, 23, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.destination-overlay h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

/* NAV BUTTONS */
.swiper-nav-modern .swiper-button-prev,
.swiper-nav-modern .swiper-button-next {
    background: rgba(255, 255, 255, 0.15);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.swiper-nav-modern .swiper-button-prev:hover,
.swiper-nav-modern .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.35);
}

.swiper-nav-modern .swiper-button-prev::after,
.swiper-nav-modern .swiper-button-next::after {
    font-size: 20px;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .heading-xl {
        font-size: 34px;
    }

    .destination-card {
        height: 320px;
    }
}



/* ===============================
   HOTEL AUTO SLIDER
================================ */

.hotel-section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #020617;
}

/* Slider */
.hotel-slider {
    overflow: hidden;
    width: 100%;
}

.hotel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.8s ease;
}

/* Card */
.hotel-card {
    min-width: calc(25% - 18px);
    height: 360px;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.hotel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.hotel-card:hover img {
    transform: scale(1.15);
}

/* Overlay */
.hotel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(2, 6, 23, 0.1) 40%,
            rgba(2, 6, 23, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #fff;
}

.hotel-overlay h3 {
    font-size: 22px;
    font-weight: 800;
}

.hotel-overlay span {
    font-size: 14px;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 1024px) {
    .hotel-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    .hotel-card {
        min-width: 100%;
    }

    .hotel-section-title {
        font-size: 30px;
    }
}


/* ===============================
   ABOUT US – MODERN
================================ */

.about-header {
    max-width: 820px;
    margin: 0 auto 60px;
}

.about-title {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
}

.about-subtitle {
    font-size: 18px;
    opacity: 0.85;
}

/* Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Content */
.about-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.feature-item {
    font-weight: 600;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
}

.stat span {
    font-size: 14px;
    opacity: 0.8;
}

/* Button */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(99, 102, 241, 0.45);
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 32px;
    }
}


/* ===============================
   OFFER COUNTDOWN BANNER (NEW)
================================ */

.image-banner-new {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 32px;
}

/* Background */
.image-banner-new .media-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

/* Overlay gradient */
.image-banner-new::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(2, 6, 23, 0.85),
            rgba(2, 6, 23, 0.6),
            rgba(2, 6, 23, 0.35));
}

/* Content */
.offer-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
    padding: 80px 0;
}

/* Badge */
.offer-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Heading */
.offer-heading {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 40px;
}

.offer-heading strong {
    color: #22d3ee;
}

/* Countdown */
.countdown-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.count-box {
    min-width: 120px;
    padding: 22px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.count-box span {
    display: block;
    font-size: 40px;
    font-weight: 900;
}

.count-box small {
    font-size: 14px;
    opacity: 0.85;
}

/* Button */
.offer-btn {
    display: inline-block;
    padding: 16px 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b3b3b, #919196);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.35s ease;
}

.offer-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.55);
}

/* Responsive */
@media (max-width: 768px) {
    .offer-heading {
        font-size: 34px;
    }

    .count-box {
        min-width: 90px;
        padding: 16px 12px;
    }
}

.testimonial-center-slider {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    padding: 80px 0;
}

.testimonial-swiper-center {
    max-width: 900px;
    margin: auto;
}

.testimonial-card-center {
    background: #b1b1b7;
    padding: 45px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    opacity: 0.4;
    transform: scale(0.85);
    transition: 0.4s ease;
}

.swiper-slide-active .testimonial-card-center {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card-center p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* User */
.testimonial-card-center .user {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.testimonial-card-center img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.testimonial-card-center strong {
    display: block;
    font-size: 16px;
}

.testimonial-card-center span {
    font-size: 14px;
    opacity: 0.7;
}

/* Pagination */
.testimonial-swiper-center .swiper-pagination-bullet {
    background: #6366f1;
    opacity: 0.3;
}

.testimonial-swiper-center .swiper-pagination-bullet-active {
    opacity: 1;
}



/* footer */


.footer-modern {
    position: relative;
    background: linear-gradient(180deg, #020617, #020617);
    padding: 100px 0 40px;
    color: #94a3b8;
    overflow: hidden;
}

/* Glow Effect */
.footer-glow {
    position: absolute;
    inset: auto auto 0 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(4, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Brand */
.footer-brand .brand-name {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.brand-text {
    font-size: 15px;
    line-height: 1.7;
    max-width: 420px;
}

/* Social */
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: #38bdf8;
    color: #020617;
    transform: translateY(-6px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
}

/* Links */
.footer-links h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, transparent);
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    font-size: 15px;
    color: #cbd5f5;
    position: relative;
    transition: all 0.35s ease;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: -18px;
    opacity: 0;
    transition: 0.35s;
    color: #38bdf8;
}

.footer-links ul li a:hover {
    color: #38bdf8;
    padding-left: 18px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

/* Bottom */
.footer-bottom-modern {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* Flight  */

.page-banner-modern {
    position: relative;
    height: 620px;
    overflow: hidden;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 20s linear infinite;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
            rgba(15, 23, 42, 0.85),
            rgba(15, 23, 42, 0.55));
}

.banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.banner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.banner-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -1px;
    animation: fadeUp 1s ease forwards;
}

.banner-subtitle {
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.85;
}

.banner-breadcrumb {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    justify-content: center;
    font-size: 14px;
}

.banner-breadcrumb li {
    opacity: 0.8;
}

.banner-breadcrumb li a {
    color: #38bdf8;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.flight-journey-card {
    transition: all 0.4s ease;
}

.flight-journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.plane-moving {
    animation: floatPlane 2s ease-in-out infinite;
}

@keyframes floatPlane {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

.input-wrapper input,
.input-wrapper select {
    background: #f8fafc;
}

.input-wrapper input:hover,
.input-wrapper select:hover {
    border-color: #38bdf8;
}

.input-wrapper input:focus {
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.button--primary {
    position: relative;
    overflow: hidden;
}

.button--primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: translateX(-100%);
}

.button--primary:hover::after {
    transform: translateX(100%);
    transition: 0.6s;
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.4);
}

.price-sticky-card {
    transition: 0.4s ease;
}

.price-sticky-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}


