@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
    --primary-color: #2887ff;
    --primary-color-dark: #2476da;
    --text-dark: #0a0a0a;
    --text-light: #737373;
    --extra-light: #f3f4f6;
    --white: #ffffff;
    --max-width: 1200px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem 5rem 1rem;
}

.section__header {
    margin-bottom: 5px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.section__description {
    /* max-width: 600px; */
    margin-inline: auto;
    color: var(--text-light);
    text-align: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 5rem;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color-dark);
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
}

img {
    display: flex;
    width: 100%;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
}

header {
    margin-top: 7rem;
    padding-inline: 1rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* header::before {
    position: absolute;
    content: "";
    height: 100%;
    width: calc(100% - 2rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("k.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 3rem;
    z-index: -1;
} */

.header__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px;
    color: white;
}

.header__content {
    padding: 4rem 1rem;
}

.header__content p {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

.header__content h1 {
    margin-bottom: 2rem;
    font-size: 4.5rem;
    font-weight: 600;
    color: white;
    line-height: 5.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .header__content h1 {
        margin-bottom: 2rem;
        font-size: 3rem;
        font-weight: 800;
        line-height: 60px;
        text-align: center;
    }

    .header__content p {
        margin-bottom: 30px;
        font-size: 1.2rem;
        font-weight: 700;
        text-align: center;
    }
}

.header__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.header__btns .btn {
    padding: 1rem 2rem;
}

.header__btns a {
    padding: 9px 13px;
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: var(--white);
    border-radius: 100%;
}

.header__btns a:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

.destination__container :is(.section__header, .section__description) {
    text-align: left;
    margin-inline-start: unset;
}

.destination__grid {
    margin-top: 4rem;
    display: grid;
    gap: 2rem 1rem;
}

.destination__card img {
    border-radius: 1.5rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.destination__card__details {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.destination__card__details h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    columns: var(--text-dark);
}

.destination__card__details p {
    columns: var(--text-light);
}

.destination__rating {
    padding: 5px 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 1rem;
    transition: 0.3s;
}

.destination__card:hover .destination__rating {
    background-color: var(--primary-color-dark);
}

.journey__grid {
    margin-top: 2rem;
    display: grid;
    gap: 0 1rem;
}

.journey__card {
    position: relative;
    isolation: isolate;
    padding-top: 4rem;
    overflow: hidden;
}

.journey__card__bg {
    padding: 2rem;
    background-color: var(--extra-light);
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
}

.journey__card__bg span {
    display: inline-block;
    margin-bottom: 4rem;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.journey__card__bg h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.journey__card__content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background-color: var(--primary-color);
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    transition: 0.3s;
}

.journey__card:hover .journey__card__content {
    top: 0;
}

.journey__card__content span {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 7px 9px;
    font-size: 1rem;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 100%;
}

.journey__card__content h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.journey__card__content p {
    color: var(--extra-light);
}

.showcase__container {
    display: grid;
    gap: 2rem;
    overflow: hidden;
}

.showcase__image img {
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.showcase__content h4 {
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .showcase__content h4 {
        margin-bottom: 2rem;
        font-size: 3rem;
        font-weight: 600;
        color: var(--text-dark);
        text-align: center;
    }

    .showcase__content p {
        margin-bottom: 1rem;
        color: var(--text-light);
        text-align: center;
    }
}

.showcase__content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.showcase__content .btn {
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background-image: url("assets/header-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.banner__container {
    display: grid;
    gap: 2rem;
}

.banner__card {
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--extra-light);
    border-radius: 2rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card h4 {
    font-size: 5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.banner__card p {
    color: var(--text-light);
}

.discover__grid {
    margin-top: 4rem;
    display: grid;
    gap: 2rem;
}

.discover__card {
    padding: 2rem 1rem;
    text-align: center;
    transition: 0.3s;
    border-radius: 1rem;
}

.discover__card:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 10px 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(40, 135, 255, 0.1);
    border-radius: 100%;
}

.discover__card h4 {
    max-width: 150px;
    margin-inline: auto;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.destination__card p {
    color: var(--text-light);
}

.swiper {
    margin-top: 4rem;
    width: 100%;
}

.swiper-slide {
    min-width: 375px;
}

.client__card {
    padding: 5px;
    background-color: var(--extra-light);
    border-radius: 1rem;
    transition: 0.3s;
}

.client__card:hover {
    background-color: var(--primary-color);
}

.client__content {
    padding: 1rem;
    background-color: var(--white);
    border-radius: calc(1rem - 5px);
}

.client__rating {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.client__content p {
    color: var(--text-dark);
}

.client__details {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client__details img {
    max-width: 50px;
    border-radius: 100%;
}

.client__details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: 0.3s;
}

.client__card:hover h4 {
    color: var(--white);
}

.client__details h5 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: 0.3s;
}

.client__card:hover h5 {
    color: var(--extra-light);
}

footer {
    background-color: var(--extra-light);
}

.footer__container {
    display: grid;
    gap: 4rem 2rem;
}

.footer__col p {
    max-width: 300px;
    margin-block: 2rem;
    color: var(--text-light);
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__socials a {
    display: inline-block;
    padding: 7px 10px;
    font-size: 1.25rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 100%;
}

.footer__socials a:hover {
    background-color: var(--primary-color-dark);
}

.footer__col h4 {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer__links {
    display: grid;
    gap: 1rem;
}

.footer__links a {
    display: flex;
    /* align-items: center; */
    gap: 10px;
    color: var(--text-light);
}

.footer__links a:hover {
    color: var(--primary-color);
}

.footer__links a span {
    font-size: 1.25rem;
}

.footer__col form {
    display: grid;
    gap: 1rem;
}

.footer__col input {
    padding: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    border: 1px solid var(--text-light);
    border-radius: 5px;
}

.footer__col input::placeholder {
    color: var(--text-light);
}

.footer__col .btn {
    border-radius: 5px;
}

.footer__bar {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

@media (width > 540px) {
    .destination__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .banner__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .discover__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__col:last-child {
        grid-area: 2/1/3/2;
    }
}

@media (width > 768px) {

    header {
        margin-top: 120px;
    }

    .header__container {
        grid-template-columns:
            minmax(0, 1fr) repeat(5, minmax(0, calc(var(--max-width) / 5))) minmax(0, 1fr);
    }

    .header__content {
        grid-column: 2/4;
        padding-block: 8rem;
    }

    .header__content :is(p, h1) {
        text-align: center;
    }

    .header__btns {
        justify-content: flex-start;
    }

    .header__image {
        grid-column: 4/8;
        position: relative;
        isolation: isolate;
        height: 100%;
    }

    .header__image img {
        position: absolute;
        top: 2rem;
        left: 0;
        height: 100%;
        width: unset;
    }

    .destination__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase__content {
        grid-column: 2/4;
    }

    .banner__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .discover__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__container {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .footer__col:last-child {
        grid-area: unset;
    }
}

@media (width > 1200px) {
    .header__content {
        padding-inline: 1rem 0;
    }

    .destination__grid {
        gap: 2rem;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-badge {
    position: absolute;
    top: 155px;
    right: 0;
    background: var(--accent-color, #26a269);
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 20px 0 0 20px;
    font-size: 0.9rem;
}

.one {
    padding: 25px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("one.webp") center center / cover no-repeat;
    color: white;
    text-align: center;
}

.three {
    padding: 25px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("three.webp") center center / cover no-repeat;
    color: white;
    text-align: center;
}

.two {
    padding: 25px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("two.jpg") center center / cover no-repeat;
    color: white;
    text-align: center;
}

/* .package-header {
    padding: 25px;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("one.webp") center center / cover no-repeat;
    color: white;
    text-align: center;
} */


.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.package-tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.package-details {
    padding: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--accent-color, #26a269);
    margin-right: 10px;
    font-size: 1.1rem;
}

.duration-options {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.duration-option {
    text-align: center;
    flex: 1;
}

.duration-nights {
    font-weight: 600;
    color: var(--primary-color, #1a5fb4);
}

.duration-price {
    font-size: 0.9rem;
    color: #666;
}

.package-cta {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    background: var(--primary-color, #1a5fb4);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.package-cta:hover {
    background: var(--secondary-color, #0d4a8a);
}

.package-cta.luxury {
    background: var(--accent-color, #26a269);
}

.package-cta.luxury:hover {
    background: #1e8a5e;
}

.trust-indicators-umrah {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    border-radius: 20px;
}

.trust-item-umrah {
    text-align: center;
    padding: 20px;
}

.trust-icon-umrah {
    font-size: 2.5rem;
    color: var(--primary-color, #1a5fb4);
    margin-bottom: 15px;
}

.trustspan-umrah {
    font-weight: 600;
    color: #333;
    display: block;
    margin-top: 10px;
}

.trust-item-umrah p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .trust-indicators-umrah {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

.bismillah {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
#whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Callout (text + arrow) */
.whatsapp-callout {
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #25d366;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    padding: 6px 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: bounce 2.5s infinite;
    cursor: default;
}

/* Arrow shape */
.arrow-right {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #ffffff;
    margin-left: 6px;
    position: relative;
}

/* WhatsApp Icon */
.whatsapp-icon {
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    padding: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    background: #1ebe57;
}

/* Simple bounce to attract attention */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Mobile adjustments */
@media (max-width: 600px) {
    #whatsapp-container {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .whatsapp-icon {
        width: 45px;
        height: 45px;
        padding: 8px;
    }

    .whatsapp-callout {
        font-size: 13px;
        padding: 5px 10px;
    }

    .arrow-right {
        border-top-width: 5px;
        border-bottom-width: 5px;
        border-left-width: 8px;
    }
}

/* Floating Call Button Container */

.call-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

/* Icon */
.call-icon {
    width: 50px;
    height: 50px;
    background: #2887ff;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Tag */
.call-tag {
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #2887ff;
    color: #fff;
    padding: 6px 10px;
    font-size: 15px;
    border-radius: 14px;
    white-space: nowrap;
}

/* Popup */
.call-popup {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 260px;
    background: #2887ff;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: none;
}

.call-popup p {
    font-size: 13px;
    margin-bottom: 10px;
}

.call-popup input {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 15px;
    border: 1px solid #ccc;
}

.call-popup button {
    margin-top: 1px;
    width: 100%;
    padding: 8px;
    background: #fff;
    color: #2887ff;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

.wtd {
    margin: 8rem 0rem;
}

/* Airline Logos Slider */
.airlines-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.airlines-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.airlines-title span {
    color: #2887FF;
}

.logos-slider-container {
    /* position: relative; */
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logos-slider-track {
    display: flex;
    animation: slide 40s linear infinite;
    will-change: transform;
}

.logos-slider-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex: 0 0 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.logo-item {
    width: 160px;
    height: 80px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2887FF, #00d4ff, #2887FF);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(40, 135, 255, 0.15);
    border: 2px solid #2887FF;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

.logo-fallback {
    font-size: 14px;
    font-weight: 600;
    color: #2887FF;
    text-align: center;
    padding: 10px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 7));
        /* Move by number of logos */
    }
}

/* Gradient overlay for smooth edges */
.logos-slider-container::before,
.logos-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #f8faff, transparent);
}

.logos-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #f8faff, transparent);
}

/* Partner stats */
.partner-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 15px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #2887FF;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .logo-slide {
        flex: 0 0 160px;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-160px * 7));
        }
    }
}

@media (max-width: 768px) {
    .airlines-section {
        padding: 40px 0;
    }

    .airlines-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .logo-slide {
        flex: 0 0 140px;
    }

    .logo-item {
        width: 130px;
        height: 70px;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-140px * 7));
        }
    }

    .logos-slider-container::before,
    .logos-slider-container::after {
        width: 60px;
    }

    .partner-stats {
        gap: 20px;
    }

    .stat-box {
        padding: 12px 20px;
    }

    .stat-number {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .airlines-title {
        font-size: 22px;
    }

    .logo-slide {
        flex: 0 0 120px;
    }

    .logo-item {
        width: 110px;
        height: 60px;
        padding: 10px;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-120px * 7));
        }
    }

    .logos-slider-container::before,
    .logos-slider-container::after {
        width: 40px;
    }
}

/* ----- GOOGLE REVIEWS MODULE – FRESH & ISOLATED ----- */
/* inline-style friendly, but we add a unique reset wrapper with low specificity */
.grev_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.grev_unique__header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.grev_unique__title_group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.grev_unique__google_badge {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 18px;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid #e8edf1;
}

.grev_unique__google_icon {
    font-size: 1.8rem;
    color: #4285F4;
    margin-right: 8px;
}

.grev_unique__rating_summary {
    display: flex;
    flex-direction: column;
}

.grev_unique__stars {
    color: #fbbc04;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.grev_unique__based {
    font-size: 0.8rem;
    color: #5e6f7d;
}

.grev_unique__heading {
    font-size: 1.9rem;
    font-weight: 600;
    color: #0b2b40;
    margin: 0;
    line-height: 1.2;
}

.grev_unique__sub {
    color: #54738f;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* slider container */
.grev_swiper {
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0.25rem;
}

.grev_swiper .swiper-wrapper {
    display: flex;
}

/* Small phones (old + compact phones) */
@media (max-width: 480px) {
    .grev_swiper .swiper-wrapper {
        gap: 20px;
    }
}

/* Standard smartphones (most modern phones) */
@media (max-width: 768px) {
    .grev_swiper .swiper-wrapper {
        gap: 20px;
    }
}

/* Large phones & small tablets */
@media (max-width: 992px) {
    .grev_swiper .swiper-wrapper {
        gap: 20px;
    }
}


/* review card – clean google style */
.grev_review_card {
    background: white;
    border-radius: 24px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 20, 40, 0.04);
    border: 1px solid #edf2f6;
    height: auto;
    transition: all 0.15s;
    display: flex;
    flex-direction: column;
}

/* top row: avatar circle + name + google logo */
.grev_review_row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.grev_profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.grev_avatar_circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, #eef5ff, #e1e9f2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.3rem;
    color: #1a4c6e;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 60, 130, 0.08);
    flex-shrink: 0;
    border: 2px solid white;
    outline: 1px solid #dae2ed;
}

.grev_name_wrap {
    display: flex;
    flex-direction: column;
}

.grev_name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0c2e3f;
    margin: 0;
    line-height: 1.3;
}

.grev_meta {
    font-size: 0.8rem;
    color: #6a7f8f;
    display: flex;
    align-items: center;
    gap: 4px;
}

.grev_google_mini {
    display: flex;
    align-items: center;
    background: #f6f9fe;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid #eaedf0;
}

.grev_google_mini i {
    color: #4285F4;
    font-size: 1.3rem;
    margin-right: 5px;
}

.grev_google_mini span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3c4043;
    letter-spacing: 0.3px;
}

/* rating stars row */
.grev_stars_row {
    display: flex;
    gap: 5px;
    margin: 1rem 0 0.7rem 0;
    color: #fbbc04;
    font-size: 1.1rem;
}

/* main review text */
.grev_review_text {
    color: #2a404e;
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0;
    word-break: break-word;
    border-top: 1px solid #f0f4fa;
    padding-top: 0.9rem;
}

/* responsive breakpoints: desktop 3 slides, mobile 1 slide */
@media (min-width: 1024px) {
    .grev_swiper .swiper-slide {
        width: calc(33.33% - 16px) !important;
        margin-right: 20px;
    }
}

@media (max-width: 1023px) and (min-width: 640px) {
    .grev_swiper .swiper-slide {
        width: calc(50% - 15px) !important;
        margin-right: 18px;
    }
}

@media (max-width: 639px) {
    .grev_swiper .swiper-slide {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .grev_unique__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .grev_unique__heading {
        font-size: 1.6rem;
    }
}

/* hide default swiper styles that might interfere, keep only navigation */
.grev_swiper .swiper-pagination-bullet {
    background: #b6cbd7;
    opacity: 0.7;
}

.grev_swiper .swiper-pagination-bullet-active {
    background: #0e5c7a;
}

.grev_nav_flex {
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
    gap: 1rem;
}

/* extra spacer */
.grev_unique__divider {
    margin: 0.5rem 0 0 0;
}

/* Booking Form Section */
.booking-section {
    position: relative;
    z-index: 10;
}

.booking-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {

    /* Desktop styles here */
    .booking-card {
        margin: 60px;
    }
}


.booking-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: #2887ff;
}

.booking-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.booking-header h2 {
    color: var(--dark);
    font-size: 2rem;
}

.booking-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.form-group {
    position: relative;
}

/* .form-group.full-width {
            grid-column: 1 / -1;
        } */

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1.5px solid rgb(88, 88, 88);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper:after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.duration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.duration-option {
    padding: 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.duration-option:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.duration-option.selected {
    border-color: var(--primary);
    background: rgba(0, 102, 204, 0.05);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
}

.duration-option .duration-days {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.duration-option .duration-price {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

.custom-duration {
    display: none;
    grid-column: 1 / -1;
}

.custom-duration.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.booking-submit .btn {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .booking-form {
        grid-template-columns: 1fr;
    }

    .custom-duration.active {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }

    .booking-card {
        padding: 2rem;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .callback-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .booking-section {
        margin-top: -40px;
    }

    .duration-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .duration-options {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .entertainment-card {
        flex-direction: column;
        text-align: center;
    }

    .floating-whatsapp,
    .floating-call {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .floating-call {
        bottom: 80px;
    }
}

/* ========================================= */
/* NEW SECTION: At a Glance */
/* ========================================= */
.sv-glance-section {
    padding: 90px 20px;
    background: #fff;
}

.sv-glance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.sv-glance-card {
    background: linear-gradient(135deg, #f8faff, #eef2ff);
    border-radius: 22px;
    padding: 38px 32px;
    border: 1px solid #e0e7ff;
    transition: .35s ease;
    text-align: center;
}

.sv-glance-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(40, 135, 255, .1);
    border-color: #2887ff;
}

.sv-glance-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    display: inline-block;
}

.sv-glance-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b1f44;
    margin-bottom: 12px;
}

.sv-glance-card p {
    color: #475569;
    font-size: .95rem;
    line-height: 1.65;
}

/* ========================================= */
/* NEW SECTION: Cheap Flights Intro */
/* ========================================= */
.sv-cheap-flights-intro {
    padding: 0px 20px 90px 20px;
    background: #fff;
}

.sv-intro-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.sv-intro-content p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ========================================= */
/* NEW SECTION: Attractions / Best Places */
/* ========================================= */
.sv-attractions-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f8faff, #f0f4ff);
}

.sv-attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.sv-attraction-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    transition: .35s ease;
}

.sv-attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(40, 135, 255, .12);
}

.sv-attraction-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.sv-attraction-content {
    padding: 24px;
}

.sv-attraction-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b1f44;
    margin-bottom: 12px;
}

.sv-attraction-content p {
    color: #475569;
    font-size: .95rem;
    line-height: 1.65;
}

/* ========================================= */
/* NEW SECTION: Useful Links */
/* ========================================= */
.sv-useful-links-section {
    padding: 90px 20px;
    background: #fff;
}

.sv-useful-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.sv-useful-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b1f44;
    margin-bottom: 20px;
    border-bottom: 2px solid #2887ff;
    padding-bottom: 10px;
    display: inline-block;
}

.sv-useful-col ul {
    list-style: none;
    padding: 0;
}

.sv-useful-col ul li {
    margin-bottom: 12px;
}

.sv-useful-col ul li a {
    color: #475569;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.sv-useful-col ul li a:hover {
    color: #2887ff;
    transform: translateX(5px);
    font-weight: 600;
}

.sv-link-list-k9 li a {
    text-decoration: none;
    color: black;
}