@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;
}

.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: 5rem;
    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: 3.4rem;
        font-weight: 800;
        line-height: 5.5rem;
        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;
    }
}

.booking__container {
    margin: 40px 40px 0px 40px;
    bottom: -5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 3rem 2rem;
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}

.booking__container form {
    width: 100%;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.booking__container .input__group {
    width: 100%;
    position: relative;
}

.booking__container label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    pointer-events: none;
    transition: 0.3s;
}

.booking__container input {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    outline: none;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--primary-color);
    color: var(--text-dark);
}

.booking__container input:focus~label {
    font-size: 0.8rem;
    top: 0;
}

.booking__container .form__group p {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.booking__container .btn {
    padding: 1rem;
    outline: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.booking__container .btn:hover {
    background-color: var(--primary-color-dark);
}

/* =========================
   CONTACT PAGE FORM
========================= */

.contact__single {
    width: 100%;
}

/* Form wrapper */
.contact__form {
    width: 100%;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    display: grid;
    gap: 1.5rem;
}

/* Two-field rows */
.form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Inputs & textarea */
.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 0.6rem;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Textarea behavior */
.contact__form textarea {
    resize: none;
    min-height: 150px;
}

/* Focus states */
.contact__form input:focus,
.contact__form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03);
}

/* Placeholder */
.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: #999;
}

/* Submit button */
.contact__form .btn {
    width: fit-content;
    padding: 0.9rem 2.8rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact__form {
        padding: 1.75rem;
    }

    .form__row {
        grid-template-columns: 1fr;
    }
}




.container {
    border-top: 5px solid #2887ff;
    max-width: 1100px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.container h1 {
    margin-bottom: 0.5rem;
}

.container p {
    color: #666;
    margin-bottom: 2rem;
}

/* Trip type toggle */
.trip__type {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trip__type label {
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid #ddd;
    cursor: pointer;
    user-select: none;
}

.trip__type input {
    display: none;
}

.trip__type input:checked+label {
    background: #2887ff;
    color: #fff;
    border-color: #000;
}

#bookingForm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Make the submit button span both columns */
.submit__btn {
    grid-column: 1 / -1;
    /* This makes it span from the first to the last column */
    justify-self: center;
    /* Center horizontally within the grid cell */
    max-width: 300px;
    /* Optional: Limit button width */
    margin: 0 auto;
    /* Center within the grid cell */
}

.form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

#bookingForm input,
#bookingForm select {
    width: 95%;
    padding: 1rem;
    border-radius: 0.6rem;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

#bookingForm input:focus,
#bookingForm select:focus {
    outline: none;
    border-color: #000;
}

/* Passenger dropdown */
.passenger__wrapper {
    position: relative;
}

.passenger__wrapper input {
    cursor: pointer;
    background: #fff;
}

.passenger__dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: none;
    z-index: 20;
}

.passenger__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.counter {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.counter button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 1rem;
}

.counter span {
    min-width: 20px;
    text-align: center;
}

.submit__btn {
    padding: 1rem 3rem;
    border: none;
    border-radius: 2rem;
    background: #2887ff;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 768px) {
    .form__row {
        grid-template-columns: 1fr;
    }
}

.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;
}