* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #173027;
    font-family: 'DM Sans', Arial, sans-serif;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.wrap {
    width: min(1160px, 92%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

header {
    position: static;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e7ece7;
}

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

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #123d2c;
}

.logo img {
    width: 55px;
    height: 75px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
}

.logo b {
    font: 700 25px 'Playfair Display', serif;
}

.logo small {
    display: block;
    font: 700 14px 'DM Sans', sans-serif;
    letter-spacing: 4px;
}

.nav nav {
    display: flex;
    gap: 22px;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

.nav nav a:hover {
    color: #a88435;
}

.gold {
    background: #ad8739;
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 4px;
}

.menu {
    display: none;
    background: none;
    border: 0;
    font-size: 25px;
}


/* =========================
   IATA + HEADER RIGHT
========================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.iata-header-logo {
    width: 72px;
    height: 78px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 4px;
}


/* =========================
   RECOGNITION MARQUEE
========================= */

.recognition-bar {
    height: 30px;
    background: #123d2c;
    color: #e7d39b;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #ffffff12;
    border-bottom: 1px solid #ffffff12;
}

.marquee-track {
    display: inline-flex;
    min-width: 200%;
    animation: tekhs-marquee 20s linear infinite;
}

.marquee-track span {
    display: inline-block;
    padding: 7px 70px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 2px;
}

@keyframes tekhs-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================
   HERO SECTION
========================= */

.hero {
    height: 650px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1564769625905-50e93615e769?auto=format&fit=crop&w=2000&q=85')
        center / cover;
}

.shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 28, 20, 0.88),
        rgba(5, 28, 20, 0.34)
    );
}

.heroText {
    position: relative;
    color: #fff;
    padding-top: 120px;
}

.eyebrow {
    font-size: 60px;
    letter-spacing: 3px;
    font-weight: 800;
    color: #b08b3e;
}

.hero h1 {
    font: 700 clamp(45px, 6vw, 74px) / 1.05 'Playfair Display', serif;
    margin: 18px 0;
}

.hero h1 em {
    color: #e0c17b;
    font-style: normal;
}

.heroText > p {
    max-width: 590px;
    font-size: 17px;
    line-height: 1.7;
    color: #e6eee9;
}

.btn {
    display: inline-block;
    border: 0;
    font-weight: 800;
    font-size: 13px;
    margin: 12px 8px 0 0;
    cursor: pointer;
}

.outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 11px 18px;
    border-radius: 4px;
}

.trust {
    display: flex;
    gap: 50px;
    margin-top: 70px;
}

.trust span {
    border-left: 1px solid #ffffff55;
    padding-left: 16px;
    font-size: 11px;
    color: #cbd8d1;
}

.trust b {
    display: block;
    font: 700 20px 'Playfair Display', serif;
    color: #fff;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 88px 0;
}

.light {
    background: #f4f7f3;
}

.head {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
    margin-bottom: 38px;
}

.head h2,
h2 {
    font: 700 42px / 1.12 'Playfair Display', serif;
    margin: 9px 0;
}

.head > p {
    max-width: 430px;
    color: #68766f;
    line-height: 1.7;
}

.center {
    text-align: center;
}

.center > p {
    margin: 12px auto 30px;
}

.cards {
    display: grid;
    gap: 22px;
}

.three {
    grid-template-columns: repeat(3, 1fr);
}


/* =========================
   SERVICES SECTION
========================= */

.services-section {
    background: #fefefe;
}

.services-heading {
    text-align: center;
    margin-bottom: 48px;
}

.services-heading .eyebrow {
    display: block;
    font-size: 50px;
    letter-spacing: 4px;
    font-weight: 1000;
    color: #b08b3e;
    margin-bottom: 20px;
}

.services-heading h2 {
    font: 700 35px / 1.12 'Playfair Display', serif;
    color: #173027;
    margin: 0 0 18px;
}

.services-heading h2 span {
    color: #123d2c;
}

.services-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #68766f;
    line-height: 1.7;
    font-size: 15px;
}


/* =========================
   SERVICE CARDS
========================= */

.service-photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.service-photo {
    min-height: 335px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    box-shadow: 0 12px 34px rgba(18, 61, 44, 0.09);
}

.service-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 34, 24, 0.04),
        rgba(7, 34, 24, 0.9)
    );
}

.service-photo-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    color: white;
}

.service-photo-content > span {
    color: #e0c17b;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
}

.service-photo-content h3 {
    font: 700 22px 'Playfair Display', serif;
    margin: 8px 0;
}

.service-photo-content p {
    font-size: 12px;
    line-height: 1.55;
    color: #e5ede7;
    min-height: 58px;
}

.service-photo-content a {
    font-size: 11px;
    font-weight: 800;
    color: #e0c17b;
}


/* =========================
   SERVICE IMAGES
========================= */

.air {
    background-image: url(
        'https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=80'
    );
}

.visa {
    background-image: url(
        'assets/VISA.JPG.avif'
    );
}

.umrah-service {
    background-image: url(
        'https://images.unsplash.com/photo-1565552645632-d725f8bfc19a?auto=format&fit=crop&w=900&q=80'
    );
}

.haj-service {
    background-image: url(
        'assets/img6.jpg'
    );
}

.ziyarat-service {
    background-image: url(
        'assets/baghdad.jpg'
    );
}


/* =========================
   PACKAGE CARDS
========================= */

.package {
    background: #fff;
    border: 1px solid #e0e7e1;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.photo {
    height: 240px;
    background: center / cover;
}

.p1 {
    background-image: url(
        'assets/img5.jpg'
    );
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.p2 {
    background-image: url(
        'https://images.unsplash.com/photo-1580418827493-f2b22c0a76cb?auto=format&fit=crop&w=1000&q=80'
    );
}
.p2 {
    background-position:center bottom 150%;
}

.p3 {
    background-image: url(
        'https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?auto=format&fit=crop&w=1000&q=80'
    );
}

.body {
    padding: 18px;
}

.body > small {
    font-size: 9px;
    letter-spacing: 2px;
    color: #a17b31;
    font-weight: 800;
    text-align: center;
}

.body h3 {
    font: 700 24px 'Playfair Display', serif;
    margin: 9px 0;
    text-align: center;
}

.body p {
    color: #68766f;
}

.body ul {
    padding-left: 18px;
    color: #68766f;
    font-size: 13px;
    line-height: 2;
}

.bottom {
    border-top: 1px solid #edf0ed;
    padding-top: 14px;
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.bottom a {
    background: #123d2c;
    color: #fff;
    padding: 8px 12px;
    border-radius: 3px;
}

.dark {
    background: #123d2c;
    color: #fff;
    padding: 12px 18px;
    border-radius: 4px;
}


/* =========================
   HAJJ SECTION
========================= */

.haj {
    background: #123d2c;
    color: #fff;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hajPhoto {
    min-height: 460px;
    border-radius: 8px;
    background: url(
        'assets/img8.jpg'
    ) center / cover;
}

.hajj h2 {
    font-size: 47px;
}

.hajj p {
    color: #cbd9d1;
    line-height: 1.7;
}

.features {
    margin: 28px 0;
}

.features div {
    padding: 15px 0;
    border-top: 1px solid #ffffff22;
}

.features b,
.features span {
    display: block;
}

.features span {
    font-size: 12px;
    color: #aebfb6;
    margin-top: 4px;
}


/* =========================
   ZIYARAT
========================= */

.zcard {
    background: #fff;
    padding-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.zphoto {
    height: 210px;
    background: center / cover;
}

.z1 {
    background-image: url(
        'https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1000&q=80'
    );
}

.z2 {
    background-image: url(
        'https://images.unsplash.com/photo-1580418827493-f2b22c0a76cb?auto=format&fit=crop&w=1000&q=80'
    );
}

.z3 {
    background-image: url(
        'https://source.unsplash.com/1000x700/?baghdad,iraq,mosque'
    );
}

.zcard h3,
.zcard p,
.zcard a {
    margin-left: 22px;
    margin-right: 22px;
}

.zcard h3 {
    font: 700 100px 'Playfair Display', serif;
}

.zcard p,
.about p {
    color: #68766f;
    line-height: 1.65;
    font-size: 13px;
}

.zcard a {
    color: #98752e;
    font-weight: 800;
    font-size: 13px;
}


/* =========================
   ABOUT 
========================= */

.about h2 {
    font-size: 52px;
}
.about .eyebrow {
    font-size: 35px;
}
.why div {
    padding: 22px;
    border: 1px solid #e0e7e1;
    border-radius: 7px;
    margin-bottom: 12px;
}

.why b {
    color: #b08b3e;
    font-size: 11px;
}

.why h3 {
    font: 700 22px 'Playfair Display', serif;
}

.why p {
    margin: 0;
}


/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
    background: #123d2c;
    color: #fff;
    text-align: center;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 38px;
}

.testimonials-heading .testimonial-label {
    display: block;
    color: #e0c17b;
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.testimonials-heading h2 {
    color: #fff;
}

.testimonials-section .head > p {
    color: #c6d4cc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 28px;
    border-radius: 8px;
    text-align:center;
}

.stars {
    color: #e0c17b;
    letter-spacing: 3px;
}

.testimonial > p {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    line-height: 1.65;
    color: #f0f5f2;
}

.reviewer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 15px;
}

.reviewer b,
.reviewer span {
    display: block;
}

.reviewer span {
    font-size: 11px;
    color: #aebfb6;
    margin-top: 3px;
}


/* =========================
   ENQUIRY
========================= */

.enquiry {
    background: #eef2ed;
}

.enquiry h2 {
    font-size: 60px !important;
}
.contact {
    margin-top: 22px;
}

.contact b {
    margin-left: 8px;
}

form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #dfe6df;
}

label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 14px;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

input,
select,
textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border: 1px solid #d5ddd6;
    border-radius: 4px;
    font: inherit;
}

form .btn {
    width: 100%;
}

form > small {
    display: block;
    text-align: center;
    color: #8b958f;
    margin-top: 8px;
    font-size: 10px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #09271d;
    color: #d5e0d9;
    padding: 55px 0 20px;
}

.foot {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.foot .logo {
    color: #fff;
}

.foot h4 {
    color: #e0c17b;
}

.foot a,
.foot p {
    display: block;
    font-size: 13px;
    line-height: 1.9;
    color: #aebdb5;
}

.copy {
    width: 92%;
    margin: 35px auto 0;
    padding-top: 17px;
    border-top: 1px solid #ffffff18;
    text-align: center;
    font-size: 10px;
    color: #80938a;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #1c8a54;
    color: #fff;
    padding: 13px 17px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 12px;
    z-index: 40;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    .service-photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================
   MOBILE / TABLET
========================= */

@media (max-width: 850px) {

    .header-right {
        gap: 10px;
    }

    .header-right .iata-header-logo {
        width: 62px;
        height: 40px;
    }

    .nav nav {
        display: none;
    }

    .nav nav.open {
        display: flex;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 22px;
        flex-direction: column;
    }

    .menu {
        display: block;
    }

    .hero {
        height: 620px;
    }

    .heroText {
        padding-top: 90px;
    }

    .trust {
        gap: 15px;
    }

    .three,
    .split,
    .foot,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .service-photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .head {
        display: block;
    }

    .head > p {
        margin-top: 20px;
    }

    .section {
        padding: 65px 0;
    }

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

    .hajjPhoto {
        margin-bottom: 35px;
    }

    .hajj h2,
    .about h2 {
        font-size: 38px;
    }


    /* SERVICES MOBILE */

    .services-heading {
        margin-bottom: 38px;
    }

    .services-heading h2 {
        font-size: 38px;
    }

    .services-heading p {
        font-size: 14px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 560px) {

    .service-photo-grid {
        grid-template-columns: 1fr;
    }

    .service-photo {
        min-height: 300px;
    }

    .services-heading h2 {
        font-size: 34px;
    }

    .logo b {
        font-size: 16px;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .iata-header-logo {
        width: 55px;
        height: 38px;
    }

}
/* FLYER POPUP */

.flyer-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.flyer-box {
    position: relative;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
}

.flyer-box img {
    display: block;
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.close-flyer {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #ad8739;
    color: white;
    font-size: 25px;
    line-height: 38px;
    cursor: pointer;
    z-index: 2;
}

@media (max-width: 560px) {
    .flyer-box {
        max-width: 95%;
    }

    .close-flyer {
        top: -10px;
        right: -10px;
    }
}