:root {
    --primary-color: #b69858;

    /* Full HD (1920px) baseline — scales down on smaller screens */
    --section-px: clamp(48px, 10.417vw, 200px);
    --section-py: clamp(30px, 2.604vw, 50px);
    --header-px: clamp(48px, 10.417vw, 200px);
    --header-py: clamp(16px, 1.563vw, 30px);
    --space-100: clamp(32px, 5.208vw, 100px);
    --space-150: clamp(48px, 7.813vw, 150px);
    --space-200: clamp(48px, 10.417vw, 200px);

    --primary-border-radius: clamp(8px, 0.521vw, 10px);
    --second-border-radius: clamp(20px, 1.563vw, 30px);
    --primary-gap: clamp(16px, 1.563vw, 30px);

    --fs-hero-badge: clamp(9px, 0.5vw, 10px);
    --fs-hero-h1: clamp(2.25rem, 4.1vw, 4.875rem);
    --fs-hero-p: clamp(0.95rem, 1.3vw, 1.5625rem);
    --fs-section-title: clamp(1.75rem, 2.604vw, 2.5rem);
    --fs-card-title: clamp(0.85rem, 1.5vw, 1.5rem);
    --fs-card-text: clamp(0.75rem, 0.9vw, 0.95rem);
}

html {
    font-size: clamp(14px, 0.833vw, 16px);
    overflow-x: hidden;
}

/* AR Fonts */
@font-face {
    font-family: 'Swissra-Medium';
    src: url('fonts/ar/Swissra-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'Swissra-Light';
    src: url('fonts/ar/Swissra Light.otf') format('opentype');
}

@font-face {
    font-family: 'Almarai-Light';
    src: url('fonts/ar/Almarai-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Almarai-Medium';
    src: url('fonts/ar/Almarai-Light.ttf') format('truetype');
}

/* EN Fonts */
@font-face {
    font-family: 'Poppins-Light';
    src: url('fonts/eng/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('fonts/eng/Poppins-Medium.ttf') format('truetype');
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background-color: #f2f2f2;
}


* {
    text-decoration: none;
    list-style: none;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Swissra-Light;
    text-align: justify;
}

section {
    padding: var(--section-py) var(--section-px);
}

img {
    object-fit: contain;
}

.d-flex {
    display: flex;
}

.d-column {
    flex-direction: column;
}

.g20 {
    gap: 20px;
}

.justify-between {
    justify-content: space-between;
}

/* Header */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--header-py) var(--header-px);
}

header ul {
    display: flex;
    gap: 20px;
}

html[dir="ltr"] header ul img.nav-arrow,
html[dir="ltr"] #nav-mobile ul img.nav-arrow,
[dir="ltr"] .nav-arrow {
    transform: scaleX(-1);
}

header .icons {
    display: flex;
    gap: 30px;
    align-items: center;
}

header .icons button {
    cursor: pointer;
    transition: ease 0.5s;
}

header .icons button:hover {
    transform: scale(1.1);
}

header ul i {
    font-size: 8px;
}

header ul li a {
    color: #373737;
    font-family: 'Swissra-Light', sans-serif;
    transition: ease 0.5s;
    font-size: 14px;
    font-weight: bolder;
}

header ul li a:hover {
    color: var(--primary-color);
}

header ul li {
    transition: ease 0.5s;
}

header ul li:hover {
    transform: translateY(-3px);
}

header ul li a.is-active {
    color: var(--primary-color);
    font-weight: bolder;
}

#lang_button {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
}

#mod_button {
    width: 50px;
    height: 25px;
    border-radius: 100px;
    border: none;
    border: 2px solid var(--primary-color);
    box-shadow: inset 0px 0px 30px rgba(0, 0, 0, 0.171);
    background-color: var(--primary-color);
}

#mod_button div {
    aspect-ratio: 1/1;
    height: 90%;
    background-color: #1a1a1a;
    border-radius: 50%;
    transition: ease 0.5s;
}

#mod_button .active {
    transform: translateX(calc(50px - 100% - 5px));
    background-color: white;
}

#header-mobile {
    display: none;
}

#nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

body.no-scroll {
    overflow: hidden;
}

#nav-mobile {
    display: none;
}

@media (max-width: 992px) {
    .d_header {
        display: none !important;
    }

    #header-mobile {
        z-index: 1000;
        background: none;
        transition: all 0.3s ease;
        padding: 0px;
    }

    .header-mobile-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 30px;
    }

    #header-mobile .menu-btn {
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #header-mobile .menu-btn:hover {
        transform: scale(1.05);
        color: #fff;
        background: var(--primary-color);
    }

    #nav-mobile {
        position: fixed;
        height: 100vh;
        top: 0;
        right: 0;
        bottom: 0;
        width: 320px;
        max-width: 85%;
        background: #ffffff1a;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        padding: 90px 30px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #nav-mobile.open {
        transform: translateX(0);
    }

    #nav-mobile .close-btn {
        position: absolute;
        top: 25px;
        left: 25px;
        border: none;
        background: rgba(0, 0, 0, 0.05);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        color: #373737;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #nav-mobile .close-btn:hover {
        background: rgba(182, 152, 88, 0.1);
        color: var(--primary-color);
        transform: rotate(90deg);
    }

    #nav-mobile ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    #nav-mobile ul li {
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 12px;
        transition: all 0.3s ease;
    }

    #nav-mobile ul li:hover {
        transform: translateX(-5px);
    }

    #nav-mobile ul li img {
        opacity: 0.5;
        transition: all 0.3s ease;
    }

    #nav-mobile ul li:hover img {
        opacity: 1;
        transform: scale(1.2);
    }

    #nav-mobile ul li a {
        color: #373737;
        font-family: 'Swissra-Light', sans-serif;
        font-size: 16px;
        font-weight: bold;
        transition: color 0.3s ease;
        display: block;
        width: 100%;
        text-align: right;
    }

    #nav-mobile ul li a.is-active,
    #nav-mobile ul li a:hover {
        color: var(--primary-color);
    }

    .mobile-actions {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-actions .icons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    .mobile-actions .icons button {
        background: none;
        border: none;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .mobile-actions .icons button:hover {
        transform: scale(1.1);
    }

    #lang_button_mobile {
        font-size: 1.8rem;
        color: var(--primary-color);
    }

    #mod_button_mobile {
        width: 50px;
        height: 25px;
        border-radius: 100px;
        border: 2px solid var(--primary-color);
        box-shadow: inset 0px 0px 30px rgba(0, 0, 0, 0.171);
        background-color: var(--primary-color);
        position: relative;
        display: flex;
        align-items: center;
        padding: 0 2px;
    }

    #mod_circle_mobile {
        width: 17px;
        height: 17px;
        background-color: #1a1a1a;
        border-radius: 50%;
        transition: ease 0.5s;
    }

    #mod_button_mobile .active {
        transform: translateX(25px);
        background-color: white;
    }
}


/* Hero */
#hero {
    padding: 0px;

}

#hero .container {
    background-image: url("images/Top-section.png?v2");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Swissra-Light, sans-serif;
    text-align: center;
}

#hero .container .badg {
    color: #959595;
    font-family: Poppins-Light;
    border: 0.5px solid #9595952f;
    border-radius: 18px;
    padding: clamp(8px, 0.521vw, 10px) clamp(16px, 1.563vw, 30px);
    font-size: var(--fs-hero-badge);
    letter-spacing: clamp(2px, 0.26vw, 5px);
}

#hero .container h1 {
    text-align: center;
    font-size: var(--fs-hero-h1);
    font-weight: bolder;
    color: #373737;
    line-height: 1.4;
    margin-bottom: clamp(12px, 1.042vw, 20px);
}

#hero .container p {
    text-align: center;
    font-size: var(--fs-hero-p);
    color: #373737;
}

#hero .buttons {
    display: flex;
    gap: 20px;
}

#hero .buttons ul {
    display: flex;
}

#hero .buttons ul li {
    width: clamp(28px, 2vw, 38px);
    height: clamp(28px, 2vw, 38px);
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.219);
}

#hero .buttons ul li img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

#hero .buttons ul span {
    font-size: 1rem;
    font-weight: bolder;
    color: #373737;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

#hero .buttons a {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    font-size: 1rem;
    margin-right: 20px;
    color: white;
    padding: 5px 20px;
    border-radius: 10px;
    transition: ease 0.5s;
}

#hero .buttons a:hover {
    transform: scale(1.1);
}

#hero .buttons img {
    width: 20px;
}

#hero .lodging {
    margin-top: clamp(-120px, -15vh, -80px);
    padding: 0 var(--section-px);
    display: flex;
    gap: var(--primary-gap);
    justify-content: space-between;
}

#hero .lodging .card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 461px;
    width: clamp(200px, 24vw, 461px);
    height: auto;
    aspect-ratio: 4 / 5;
    background-color: #373737;
    border-radius: 30px;
    transition: ease 0.5s;
}

#hero .lodging .card:hover {
    transform: translateY(-10px);
}

#hero .card .img {
    width: 100%;
    height: 40%;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
}

#hero .desc {
    width: 100%;
    height: 60%;
    font-family: Swissra-Light;
    padding: clamp(12px, 1.042vw, 20px) clamp(20px, 2.083vw, 40px);

    color: rgba(255, 255, 255, 0.637);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#hero .desc h1 {
    color: white;
    margin-bottom: clamp(10px, 1.042vw, 20px);
    font-size: var(--fs-card-title);
}

#hero .desc p {
    font-size: var(--fs-card-text);
}

#hero .card .info {
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;

}

.info li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--fs-card-text);
}

.info li span {
    font-family: "Poppins-Medium";
}

.info li img {
    width: clamp(12px, 1vw, 19px);
}

/* About-US */
#about-us .services {
    display: flex;
    margin: var(--space-150) 0;
}

#about-us .services .service {
    width: 50%;
    height: clamp(320px, 50vh, 540px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(16px, 1.302vw, 25px);
    padding-left: var(--space-100);
}

#about-us .services .icon {
    width: clamp(48px, 5.5vw, 106px);
    height: clamp(48px, 5.5vw, 106px);
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#about-us .services h2 {
    font-weight: lighter;

}

#about-us .services p {

    color: #6f6f6f;
    font-size: 1.7rem;
    font-weight: lighter;
}

#about-us .services a {
    color: var(--primary-color);
    font-weight: bold;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    font-size: 1.3rem;
    font-weight: lighter;
    transition: ease 0.5s;
}

#about-us .services a:hover {
    gap: 20px;
    transform: scale(1.01);
}

#about-us .container {
    display: flex;
    height: clamp(480px, 80vh, 864px);
}

#about-us .right {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-around;
}

#about-us .right h2 {
    font-size: var(--fs-section-title);
    line-height: 1.35;
    color: #373737;
}

#about-us .right .icon {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 10px;
    padding: 10px;
}

#about-us .right ul {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(24px, 3.125vw, 60px);
}

#about-us .right ul li {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #797979;
}

#about-us .right ul li p {
    width: 80%;
    text-align: start;
}

#about-us .right a {
    display: flex;
    gap: 20px;
    color: var(--primary-color);
    font-weight: lighter;
    font-size: 1.5rem;
}

#about-us .we p {
    margin-top: 10px;
    color: #626262;
    width: 70%;
    opacity: 0.7;
}

#about-us .left {
    display: flex;
    gap: clamp(20px, 2.604vw, 50px);
    width: 40%;
}

#about-us .left img {
    border-radius: 10px;
}

#about-us .left ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: #5b5b5b;
}

#about-us .left ul li h2 {
    font-family: Poppins-Light;
    font-size: clamp(2rem, 3.125vw, 3rem);
    font-weight: lighter;
}

#about-us .left ul li span {
    font-weight: bold;
}

/* About-US Tail */
.about-us-tail {
    display: flex;
    height: clamp(420px, 75vh, 810px);
    margin-bottom: var(--space-200);
}

.about-us-tail img {
    border-radius: 10px;
}

.about-us-tail .right {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.about-us-tail .right h2 {
    margin-bottom: clamp(32px, 4.167vw, 80px);
    font-size: var(--fs-section-title);
    color: #373737;
    font-weight: lighter;
}

.about-us-tail .right img {
    width: min(100%, 37.6vw);
    height: auto;
}

.about-us-tail .left {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.about-us-tail .disc {
    width: 80%;
    margin-top: clamp(40px, 5.208vw, 100px);
    float: left;
    color: #626262;
    margin-bottom: clamp(24px, 2.604vw, 50px);
}

.about-us-tail .images {
    display: flex;
    gap: var(--primary-gap);
    margin-top: clamp(24px, 2.604vw, 50px);
}

.about-us-tail .images img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.about-us-footer {
    margin-top: 30px;
}

.about-us-footer h4 {
    color: #373737;
    font-weight: bolder;

}

.about-us-tail p {
    width: 60%;
    color: #626262;
}

.about-us-tail a {
    width: 30%;
    height: fit-content;
    text-align: center;
    color: white;
    background-color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 10px;
}

/* Founder */
#founders {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: clamp(380px, 60vh, 648px);
}

.section-title {
    color: #373737;
    font-size: var(--fs-section-title);
    width: 100%;
    text-align: center;
    margin: clamp(24px, 2.604vw, 50px) 0;
}

#founders div {
    width: 40%;
    height: 90%;
    background-color: #212121;
    border-radius: 10px;
    color: white;
}

#founders .desktop-img {
    display: block;
}

#founders .mobile-img {
    display: none;
}

#founders img {
    position: absolute;
    left: 36.5%;
    width: clamp(160px, 28vw, 28vw);
    justify-self: center;
    box-shadow: 0px 0px 0px black;
}

#founders div h1 {
    color: var(--primary-color);
    font-weight: lighter;
    margin-bottom: 5px;
}

#founders div h3 {
    opacity: 0.63;
    font-size: smaller;
}

#founders .left p {
    margin-top: 30px;
    direction: ltr;
}

#founders .right p {
    margin-top: 30px;

}

#founders .right {
    padding: clamp(24px, 2.604vw, 50px) var(--space-100);
}

#founders .left {
    direction: rtl;
    padding-top: clamp(24px, 2.604vw, 50px);
    padding-right: clamp(24px, 2.604vw, 50px);
    padding-left: clamp(40px, 7.292vw, 140px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: left;
}

/* Parteners */
#parteners {
    width: 100%;
    height: clamp(200px, 40vh, 432px);
    background-image: url("images/Parteners-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px;
    margin-top: 100px;
}

#parteners ul {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-100);
    overflow: hidden;
    gap: clamp(24px, 2.604vw, 50px);
}

#parteners img {
    width: clamp(140px, 13.021vw, 250px);
    object-fit: cover;
}

/* FAQ */
#questions {
    text-align: center;
}

#questions h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #3d3d3d;
    margin-bottom: 40px;
}

#questions .faq-grid {
    display: flex;
    gap: 24px;
    text-align: right;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.faq-column {
    width: 49%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.faq-item {
    background-color: #858585;
    border-radius: 20px;
    color: #fff;
    overflow: hidden;
    transition: background-color 0.3s ease;
    height: fit-content;
    width: 100%;

}

.faq-item.is-active {
    background-color: var(--primary-color);
    min-height: 12vh;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: right;
}

.faq-chevron {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-chevron {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
    min-height: 12vh;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.95;
}

@media (max-width: 768px) {
    #questions .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Us */

#contact-us .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#contact-us h2 {
    font-size: clamp(2.5rem, 4.167vw, 4rem);
    color: #373737;
    margin-bottom: 32px;
    line-height: 1.5;

}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1rem;
    color: #808080;
}

.contact-details img {
    width: 25px;
}

.contact-details a {
    color: #808080;
    font-family: 'Poppins-Light';

}

.contact-details a:hover {
    color: var(--primary-color);
}

#contact-us .social-icons {
    display: flex;
    gap: 18px;
}

#contact-us .social-icons a {
    transition: 0.5s ease;

}

#contact-us .social-icons a:hover {
    transform: scale(1.1);
}

.contact-intro {
    color: #666666;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 2.2;
    margin-bottom: 40px;
    margin-top: 40px;
    width: 90%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 90%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #434343;
    background: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    padding: 12px 48px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
    align-self: start;
}

.contact-form button:hover {
    opacity: 0.9;
}

/* Footer */
#footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: var(--section-py) var(--section-px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-col h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.footer-about .footer-logo {
    width: 120px;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-about>p:not(.footer-copyright) {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.footer-social a {
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul a {
    direction: ltr;
    color: #bbb;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-contact-list i {
    color: var(--primary-color);
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
}

.footer-contact-list a {
    font-family: "Poppins-Medium";
    color: #bbb;
}

.footer-contact-list a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {

    #contact-us .contact-container,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(28px, 3vw, 40px);
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}



/* Project-Page Hero */
#project-hero {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
}

#project-hero .project-desc {
    display: flex;
    flex-direction: column;
    margin-top: -120px;
}

#project-hero .project-desc h1 {
    color: var(--primary-color);
    font-size: clamp(2rem, 3.125vw, 3rem);
}

#project-hero .project-desc span {
    color: #232d39;
    margin-bottom: 40px;
    margin-top: -5px;
}

#project-hero .project-desc p {
    color: #373737;
    font-weight: lighter;
    width: 40%;
}

#project-hero .project-img {
    position: absolute;
    transform: translateX(-25%);
    z-index: -99;
}

/* Project-Page Gallery */
#gallery {
    display: flex;
    gap: var(--primary-gap);
    height: clamp(400px, 75vh, 810px);
}

#gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--second-border-radius) + 10px);
}

#gallery div {
    width: 50%;
    height: 100%;
}

#gallery .right ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--primary-gap);
    width: 100%;
    height: 100%;
}

#gallery .right ul li {
    flex: 0 0 calc(50% - (var(--primary-gap) / 2));
    max-height: 48%;
}

#gallery .left ul {
    width: 100%;
    height: 100%;

}

#gallery .left ul li {
    height: 100%;
    width: 100%;
}

#gallery .left .main-images img {
    width: 100%;
    object-fit: cover;
}

#gallery .next,
.prev {
    position: relative;
    background-color: #ffffff7c;
    color: black;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin: 0px 30px;
    border: none;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.185);
    cursor: pointer;
    transition: ease 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

#gallery .next img {
    width: 20px;
    height: 20px;
}

#gallery .prev img {
    width: 20px;
    height: 20px;
    transform: scale(-1.1);
}

#gallery .next:hover,
.prev:hover {
    transform: scale(1.1);
    background-color: white;
}

#gallery .next {
    top: -50%;
}

#gallery .prev {
    float: left;
    top: -60%;
}

.show {
    animation: fade 0.8s ease;
    display: block;
}

.hide {
    display: none;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* info */
#info ul {
    display: flex;
    justify-content: space-between;
}

#info ul li .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
}

#info ul li h4 {
    margin-top: 10px;
    color: #797979;

}

#info ul li .icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

#info ul li span {
    margin-top: 10px;
    color: #373737;
    font-family: Poppins-Light;
    opacity: 0.7;
}

#info ul li span sup {
    font-family: Poppins-Light;
}

/* desc */
#desc h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

#desc p {
    display: flex;
    font-size: larger;
    word-spacing: 1px;
    color: #6f6f6f;
}

/* Map */
#location {
    display: flex;
    justify-content: space-between;
    height: clamp(420px, 80vh, 864px);
    margin: clamp(32px, 3.646vw, 70px) 0;
}

#location .map {
    width: 40%;
}

#location .map iframe {
    width: 100%;
    height: 100%;
    border-radius: 60px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.096);
}

#location .left {
    padding: clamp(20px, 1.563vw, 30px) var(--space-100);
    width: 60%;
}

#location .icon {
    width: clamp(64px, 5.208vw, 100px);
    height: clamp(64px, 5.208vw, 100px);
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#location h3 {
    margin-top: 30px;
    color: #373737;

}

#location p {
    font-size: 1.5rem;
    width: 90%;
    color: #6f6f6f;
    margin: 30px 0px;
}

#location a {
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    gap: 30px;
}


/* Booking Section */
.booking-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
    box-sizing: border-box;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -100px;
    width: 100%;
    height: 80%;
    background-image: url('images/tour-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    z-index: 1;
}

.nav-btn {
    position: absolute;
    z-index: 20;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, background-color 0.2s;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: #f8f8f8;
}

.prev-btn img {
    transform: scale(-1);
}

.prev-btn {
    left: -22px;
    /* Set outside the edge, but wait, the container might clip it if overflow is hidden */
    /* Let's see the image: They are slightly inset from the edge. Let's use left: 30px */
}

/* Adjustments for button positioning inside container */
.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

.cards-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
    overflow: hidden;
    margin: 0 13%;
    /* Space for buttons */
    height: 100%;
    display: flex;
    align-items: center;
}

.cards-track {
    display: flex;
    gap: 5%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    align-items: center;
    height: auto;
    width: 100%;
}

.date-card {
    background-color: #fdfdfd;
    border-radius: 50px;
    width: 30%;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-family: 'Poppins-Medium';
    gap: 5px;
}

.date-card.active {
    background-color: var(--primary-color);
    transform: scale(1.1);
    /* To simulate being chosen */
    z-index: 5;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.075);
}

.card-day {
    font-family: 'Swissra-Light', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #373737;
    margin-bottom: 5px;
}

.card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 58px;
    font-weight: 700;
    color: #373737;
    line-height: 1.1;
    margin-bottom: 5px;
}

.card-month-year {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #373737;
}

.date-card.active .card-day,
.date-card.active .card-num,
.date-card.active .card-month-year {
    color: white;
}

@media (max-width: 768px) {
    .carousel-container {
        border-radius: 20px;
        height: 250px;
    }

    .carousel-bg {
        border-radius: 20px;
    }

    .cards-wrapper {
        margin: 0 50px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .date-card {
        width: 160px;
        height: 180px;
        border-radius: 20px;
    }

    .card-num {
        font-size: 40px;
    }

    .card-day {
        font-size: 16px;
    }

    .card-month-year {
        font-size: 14px;
    }

    .cards-track {
        gap: 15px;
    }
}

#booking-section .contact-container {
    padding: 0 var(--section-px);
    display: flex;
    margin-top: clamp(48px, 5.208vw, 100px);
}

#booking-section .contact-form-wrap {
    width: 60%;
}

#booking-section .contact-info {
    width: 40%;
    gap: 30px;

}

#booking-section .contact-info a {
    color: #373737;
}

#booking-section .contact-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

#booking-section .contact-info p {
    color: #373737;
    opacity: 0.8;
}


/* About Us Page */
#about-us-hero {
    background-image: url('images/Top-section.png?v2');
    height: 70vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 0px;

}

#about-us-hero .container {
    width: 100%;
    height: 100%;
    background-image: url('images/about-us-top-section-bg.png');
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about-us-hero .container h1 {
    font-size: 6vw;
    color: #373737;
    font-weight: lighter;
}

#cirtifactes {
    width: 100vw;
    height: 80vh;
}

#cirtifactes .container {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    background-image: url('images/sirtificates-bg.png');
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 20%;
}

#cirtifactes .container .cirtificate {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.158);
    width: 25%;
    height: fit-content;
    padding: 35px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    border-radius: 10px;
    transition: ease 0.5s;

}

#cirtifactes .container .cirtificate:hover {
    transform: scale(1.05);
}

#cirtifactes .container .cirtificate img {
    width: 100%;
}

.cirtificate h2 {
    text-align: center;
    color: var(--primary-color);
}

.cirtificate p {
    text-align: center;
    color: #7b7b7b;
    line-height: 25px;
}

.cirtificate a {
    background-color: var(--primary-color);
    padding: 7px 30px;
    border-radius: 7px;
    color: white;
    transition: ease 0.5s;
}

.cirtificate a:hover {
    transform: translateY(-5px);
}


#us-in-numbers {
    margin-top: 100px;
    background-image: url('images/us-in-numbers-bg.png');
    background-position: center;
    background-size: cover;

    height: 40vh;
}

#us-in-numbers .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    height: 100%;
    text-align: center;
}

.number {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#us-in-numbers .content h4 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: lighter;
    text-align: center;
}

#us-in-numbers .content h1 {
    font-size: 3rem;
    font-family: 'Poppins-Light';
    direction: ltr;
    font-weight: lighter;
}

/* CONTACT US PAGE   */
#contact-us .contact-pages ul li a {
    width: 2vw;
}

#contact-us .contact-pages ul li img {
    width: 100%;
    filter: drop-shadow(-100vw 0 0 var(--primary-color));
    transform: translateX(100vw);
}

#contact-us-page-info ul li {
    width: fit-content;
    font-size: larger;
}

#contact-us-page-info ul li img {
    filter: drop-shadow(-100vw 0 0 var(--primary-color));
    transform: translateX(100vw);
}

#contact-us-page-info ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#contact-us-page-map {
    margin-bottom: 150px;
}

#contact-us-page-map .map-icon {
    width: 212px;
    height: 212px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 44%;
}

#contact-us-page-map .map-icon img {
    width: 50%;
}

#contact-us-page-map iframe {
    margin-top: 106px;
    width: 100%;
    height: 70vh;
    border-radius: 30px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.082);
}


/* BLOG Page */
#blog-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-image: url("images/blog_hero_bg.png");
    background-size: cover;
    background-position: top;
    box-shadow: inset 0px -120px 100px 20px #f2f2f2;
}

#blog-hero h1 {
    font-size: 4rem;
    font-weight: bolder;
}

#blog-hero p {
    margin-top: 15px;
    width: 30%;
    color: #6f6f6f;
    font-weight: bold;
    line-height: 30px;
    font-size: large;
}

#blog-hero .line {
    margin-top: 40px;
    width: 5%;
    height: 5px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

/* Blog featured carousel */
#sugestion {
    padding-top: clamp(24px, 3vw, 48px);
}

.blog-carousel {
    width: 100%;
}

.blog-carousel-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.blog-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-slide {
    flex: 0 0 100%;
    display: flex;
    min-height: clamp(360px, 32vw, 460px);
    background-color: #ffffff;
}

.blog-slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
    padding-bottom: clamp(56px, 5vw, 72px);
    background-color: #eeeeee;
    direction: rtl;
}

.blog-slide-media {
    position: relative;
    flex: 0 0 58%;
    overflow: hidden;
}

.blog-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-badge {
    position: absolute;
    font-family: 'Almarai-medium';
    font-weight: bold;
    top: 24px;
    left: 24px;
    z-index: 2;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 1rem;
    padding: 8px 18px;
    border-radius: 8px;
    line-height: 1;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.253);
}

.blog-slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
    background-color: #f7f7f7;
}

.blog-slide-body {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 20px);
}

.blog-category {
    color: var(--primary-color);
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-family: 'Swissra-Medium', sans-serif;
}

.blog-slide-body h2 {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-family: 'Almarai-Medium', sans-serif;
    width: 85%;
    color: #1a1a1a;
    line-height: 1.45;
    font-size: 2.5rem;
    text-align: start;
}

.blog-slide-body p {
    color: #6f6f6f;
    font-size: clamp(1.15rem, 2vw, 1.25rem);
    line-height: 1.8;
    max-width: 95%;
    font-weight: bold;
    text-align: start;
    margin-top: 20px;
}

.blog-slide-footer {
    direction: ltr;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 32px);
    margin-top: clamp(24px, 3vw, 40px);
}

.blog-slide-footer a {
    color: var(--primary-color);
    font-weight: bold;
    font-size: larger;
    gap: 10px;
    display: flex;
    align-items: center;
}

.blog-slide-footer a img {
    height: 60%;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: clamp(0.95rem, 1.05vw, 1.1rem);
    font-family: 'Swissra-Medium', sans-serif;
    width: fit-content;
}

.blog-read-more img {
    width: 18px;
    height: auto;
}

.blog-slide-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
    color: #9a9a9a;
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: larger;
    white-space: nowrap;
    font-family: 'Almarai-Medium';
    font-weight: bold;
}

.blog-meta svg {
    flex-shrink: 0;
    opacity: 1;
    color: var(--primary-color);
}

.blog-dots {
    position: absolute;
    bottom: clamp(28px, 3.5vw, 48px);
    left: calc(58% + clamp(28px, 3.5vw, 48px));
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background-color: #d4d4d4;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.blog-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.15);
}

.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: clamp(44px, 3.5vw, 56px);
    height: clamp(44px, 3.5vw, 56px);
    border-radius: 50%;
    border: none;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-nav:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.blog-nav img {
    width: 14px;
    height: auto;
}

.blog-nav-prev {
    left: clamp(16px, 2vw, 28px);
}

.blog-nav-prev img {
    transform: scaleX(-1);
}

.blog-nav-next {
    left: calc(58% - clamp(36px, 3vw, 48px));
}

@media (max-width: 900px) {
    .blog-slide {
        flex-direction: column;
        min-height: auto;
    }

    .blog-slide-media {
        flex: none;
        height: clamp(220px, 40vw, 320px);
    }

    .blog-nav-next {
        left: auto;
        right: clamp(16px, 2vw, 28px);
    }

    .blog-dots {
        left: clamp(28px, 3.5vw, 48px);
        bottom: clamp(20px, 3vw, 28px);
    }

    .blog-slide-bottom {
        justify-content: flex-start;
    }

    .blog-meta {
        flex-wrap: wrap;
    }
}

/* Blog articles section */
#articals {
    padding-top: clamp(16px, 2vw, 32px);
}

.banner {
    width: 100%;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.082);
    background-image: url("images/banner.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    padding: 50px;
}

.banner-content {
    width: 50%;
    height: 100%;
}

.banner-content h2 {
    font-size: 2rem;
    font-weight: bolder;
    color: #373737;
}

.banner-content p {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #4d4d4dcc;
    font-weight: bold;
}

.banner a {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 50px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    transition: ease 0.5s;
    margin-left: 70px;
}

.banner a:hover {
    transform: translateY(-5px);
}

.articles-layout {
    display: flex;
    gap: clamp(28px, 3.5vw, 56px);
    align-items: start;
}

.articles-main {
    flex: 1;
    min-width: 0;
}

.articles-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(24px, 2.5vw, 36px);
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #d8d8d8;
    background-color: #ffffff;
    color: #373737;
    font-family: 'Swissra-Light', sans-serif;
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
    cursor: pointer;
    transition: background-color 0.25s, color 0.25s, border-color 0.25s;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.is-active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.articles-title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-family: 'Swissra-Medium', sans-serif;
    font-weight: bolder;
    color: #1a1a1a;
    margin-bottom: clamp(24px, 2.5vw, 36px);
    text-align: right;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 32px);
}

.article-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

.article-card.is-hidden {
    display: none;
}

.article-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.article-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.article-card:hover .article-card-img img {
    transform: scale(1.04);
}

.article-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: rgba(182, 152, 88, 0.92);
    color: #ffffff;
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 6px;
    line-height: 1.2;
}

.article-card-body {
    padding: clamp(16px, 1.5vw, 22px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 1.5vw, 20px);
    color: #9a9a9a;
    font-size: clamp(0.72rem, 0.8vw, 0.85rem);
}

.article-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-family: 'Poppins-Medium';
}

.article-card-meta svg {
    flex-shrink: 0;
    opacity: 0.75;
}

.article-card-body h3 {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    font-family: 'Swissra-Medium', sans-serif;
    font-weight: bolder;
    color: #1a1a1a;
    line-height: 1.55;
    text-align: right;
}

.article-card-body p {
    font-size: clamp(0.78rem, 0.85vw, 0.9rem);
    color: #7a7a7a;
    line-height: 1.75;
    text-align: right;
    flex: 1;
}

.article-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: clamp(0.82rem, 0.9vw, 0.95rem);
    font-family: 'Swissra-Medium', sans-serif;
    margin-top: auto;
    width: fit-content;
}

.article-more img {
    width: 16px;
    height: auto;
}

.articles-load-more {
    display: block;
    margin: auto;
    margin-top: clamp(32px, 3.5vw, 48px);
    padding: 16px 32px;
    border-radius: 50px;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Swissra-Medium', sans-serif;
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    cursor: pointer;
    transition: background-color 0.25s, color 0.25s;
}

.articles-load-more:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Sidebar */
.articles-sidebar {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2vw, 28px);
}

.sidebar-widget {
    background-color: #ffffff;
    border-radius: 16px;
    padding: clamp(20px, 2vw, 28px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-family: 'Swissra-Medium', sans-serif;
    font-weight: bolder;
    color: #1a1a1a;
    margin-bottom: clamp(16px, 1.5vw, 22px);
    text-align: right;
}

.sidebar-categories li+li {
    border-top: 1px solid #f0f0f0;
}

.sidebar-categories a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: #373737;
    transition: color 0.2s;
}

.sidebar-categories a:hover {
    color: var(--primary-color);
}

.cat-count {
    font-size: 0.85rem;
    color: #9a9a9a;
    min-width: 24px;
    text-align: center;
}

.cat-name {
    flex: 1;
    font-size: clamp(0.82rem, 0.9vw, 0.95rem);
    text-align: right;
}

.cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: rgba(182, 152, 88, 0.12);
    color: var(--primary-color);
    flex-shrink: 0;
}

.sidebar-newsletter p {
    font-size: clamp(0.8rem, 0.85vw, 0.9rem);
    color: #7a7a7a;
    line-height: 1.7;
    text-align: right;
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Swissra-Light', sans-serif;
    font-size: 0.9rem;
    color: #373737;
    background-color: #fafafa;
    text-align: right;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

.newsletter-form input::placeholder {
    color: #b0b0b0;
}

.newsletter-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: 'Swissra-Medium', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.sidebar-popular li+li {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.sidebar-popular a {
    display: grid;
    grid-template-columns: 36px 1fr 56px;
    align-items: center;
    gap: 12px;
    color: #373737;
    transition: color 0.2s;
}

.sidebar-popular a:hover {
    color: var(--primary-color);
}

.popular-num {
    font-size: clamp(1.1rem, 1.3vw, 1.35rem);
    font-family: 'Swissra-Medium', sans-serif;
    color: #d4d4d4;
    text-align: center;
    line-height: 1;
}

.popular-title {
    font-size: clamp(0.78rem, 0.85vw, 0.9rem);
    line-height: 1.55;
    text-align: right;
}

.sidebar-popular img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .articles-layout {
        grid-template-columns: 1fr;
    }

    .articles-sidebar {
        order: 2;
    }

    .articles-main {
        order: 1;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .articles-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.78rem;
    }
}

/* Article page */
#article-hero {
    padding: clamp(32px, 4vw, 64px) var(--section-px) clamp(24px, 3vw, 40px);
    background-color: #ffffff;
}

.article-breadcrumb {
    margin-top: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(20px, 2.5vw, 32px);
    font-size: clamp(0.78rem, 0.85vw, 0.9rem);
    color: #9a9a9a;
}

.article-breadcrumb a {
    color: #7a7a7a;
    transition: color 0.2s;
}

.article-breadcrumb a:hover {
    color: var(--primary-color);
}

.article-breadcrumb span {
    color: var(--primary-color);
}

.article-breadcrumb img {
    opacity: 0.5;
}

#article-hero .article-category {
    display: inline-block;
    color: var(--primary-color);
    font-family: 'Swissra-Medium', sans-serif;
    font-size: clamp(0.85rem, 1vw, 1rem);
    margin-bottom: 14px;
}

#article-hero h1 {
    font-size: clamp(1.6rem, 3vw, 2.75rem);
    font-family: 'Almarai-Medium', sans-serif;
    font-weight: bolder;
    color: #1a1a1a;
    line-height: 1.45;
    max-width: 900px;
    text-align: right;
    margin-bottom: clamp(20px, 2vw, 28px);
}

.article-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(16px, 2vw, 28px);
    color: #9a9a9a;
    font-size: clamp(0.82rem, 0.9vw, 0.95rem);
    margin-bottom: clamp(28px, 3vw, 40px);
}

.article-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-hero-meta svg {
    opacity: 0.75;
}

.article-hero-img {
    border-radius: 20px;
    overflow: hidden;
    max-height: clamp(280px, 40vw, 520px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    object-position: center;
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;
}

#article-page {
    padding-top: clamp(24px, 3vw, 40px);
    padding-bottom: clamp(24px, 3vw, 40px);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr clamp(280px, 22vw, 340px);
    gap: clamp(28px, 3.5vw, 56px);
    align-items: start;
}

.article-body {
    background-color: #ffffff;
    border-radius: 16px;
    padding: clamp(28px, 3.5vw, 48px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.article-lead {
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    color: #4a4a4a;
    line-height: 1.9;
    font-family: 'Swissra-Medium', sans-serif;
    margin-bottom: clamp(24px, 2.5vw, 36px);
    padding-bottom: clamp(20px, 2vw, 28px);
    border-bottom: 1px solid #f0f0f0;
    text-align: right;
}

.article-body h2 {
    font-size: clamp(1.15rem, 1.5vw, 1.45rem);
    font-family: 'Swissra-Medium', sans-serif;
    font-weight: bolder;
    color: #1a1a1a;
    margin: clamp(28px, 3vw, 40px) 0 clamp(14px, 1.5vw, 20px);
    text-align: right;
}

.article-body p {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: #5a5a5a;
    line-height: 1.95;
    margin-bottom: clamp(14px, 1.5vw, 20px);
    text-align: right;
}

.article-quote {
    margin: clamp(24px, 3vw, 36px) 0;
    padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 36px);
    background-color: rgba(182, 152, 88, 0.08);
    border-right: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
}

.article-quote p {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    color: #373737;
    font-family: 'Swissra-Medium', sans-serif;
    line-height: 1.8;
    margin: 0;
    text-align: right;
}

.article-list {
    margin: clamp(12px, 1.5vw, 20px) 0 clamp(20px, 2vw, 28px);
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-list li {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: #5a5a5a;
    line-height: 1.85;
    text-align: right;
    list-style: disc;
}

.article-list strong {
    color: #373737;
    font-family: 'Swissra-Medium', sans-serif;
}

.article-figure {
    margin: clamp(24px, 3vw, 36px) 0;
}

.article-figure img {
    width: 100%;
    border-radius: 14px;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.article-figure figcaption {
    margin-top: 12px;
    font-size: clamp(0.78rem, 0.85vw, 0.9rem);
    color: #9a9a9a;
    text-align: center;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: clamp(32px, 3.5vw, 48px);
    padding-top: clamp(24px, 2.5vw, 32px);
    border-top: 1px solid #f0f0f0;
}

.article-tags span {
    color: #7a7a7a;
    font-size: 0.9rem;
}

.article-tags a {
    padding: 6px 16px;
    border-radius: 50px;
    background-color: rgba(182, 152, 88, 0.1);
    color: var(--primary-color);
    font-size: 0.82rem;
    transition: background-color 0.2s;
}

.article-tags a:hover {
    background-color: rgba(182, 152, 88, 0.2);
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: clamp(28px, 3vw, 40px);
    color: var(--primary-color);
    font-family: 'Swissra-Medium', sans-serif;
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    transition: gap 0.2s;
}

.article-back img {
    width: 14px;
    transform: scaleX(-1);
}

.article-back:hover {
    gap: 14px;
}

#related-articles {
    padding-top: 0;
    padding-bottom: clamp(48px, 5vw, 80px);
}

#related-articles h2 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-family: 'Swissra-Medium', sans-serif;
    font-weight: bolder;
    color: #1a1a1a;
    margin-bottom: clamp(24px, 2.5vw, 36px);
    text-align: right;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 32px);
}

@media (max-width: 1100px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    #article-page .articles-sidebar {
        order: 2;
    }

    .article-body {
        order: 1;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .related-grid {
        grid-template-columns: 1fr;
    }

    .article-hero-meta {
        gap: 12px;
    }
}

/* --- Projects Grid and Cards Listing --- */
.projects-hero {}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 32px);
    direction: rtl;
}

.projects-grid .card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5.2;
    background-color: #373737;
    border-radius: 30px;
    transition: ease 0.5s;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.projects-grid .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.projects-grid .card .img {
    width: 100%;
    height: 45%;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.projects-grid .card:hover .img {
    transform: scale(1.03);
}

.projects-grid .card .desc {
    width: 100%;
    height: 55%;
    font-family: Swissra-Light, sans-serif;
    padding: clamp(12px, 1.042vw, 20px) clamp(16px, 1.8vw, 32px);
    color: rgba(255, 255, 255, 0.637);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.projects-grid .card .desc h1 {
    color: white;
    margin-bottom: clamp(6px, 0.8vw, 12px);
    font-size: var(--fs-card-title);
    font-family: 'Swissra-Light', sans-serif;
    text-align: right;
}

.projects-grid .card .desc p {
    font-size: var(--fs-card-text);
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 8px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.projects-grid .card .info {
    padding: 12px 0px 0px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projects-grid .card .info li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-card-text);
    color: rgba(255, 255, 255, 0.7);
}

.projects-grid .card .info li img {
    width: clamp(12px, 1vw, 19px);
    object-fit: contain;
}





/* =============================================
   Dark Mode — body.dark-mode
   Colors extracted from Top-section-Dark.png:
   Background: #111111 / #1a1a1a / #212121
   Gold accent: #b69858 (--primary-color)
   Text light: #e0e0e0 / #c8c0aa
   Cards: #212121 / #2a2a2a
   ============================================= */

body.dark-mode {
    background-color: #111111;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* ── Transition on all key elements ── */
body.dark-mode *,
body.dark-mode section,
body.dark-mode header {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* ── Header ── */
body.dark-mode header ul li a {
    color: #c8c0aa;
}

body.dark-mode header ul li a:hover,
body.dark-mode header ul li a.is-active {
    color: var(--primary-color);
}

/* ── Desktop Header background (when scrolled or on inner pages) ── */
body.dark-mode #about-us-hero .container h1 {
    color: #e0e0e0;
}

body.dark-mode #hero .container .badg {
    color: #e0e0e0;
    border-color: #d9d9d9b3;
}

/* ── Mobile header & nav ── */
body.dark-mode #header-mobile {
    background: transparent;
}

body.dark-mode #header-mobile .menu-btn {
    background: rgba(30, 30, 30, 0.92);
    color: #c8c0aa;
    border-color: rgba(182, 152, 88, 0.3);
}

body.dark-mode #header-mobile .menu-btn:hover {
    background: #2a2a2a;
    color: var(--primary-color);
}

body.dark-mode #nav-mobile {
    background: rgba(18, 18, 18, 0.97);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

body.dark-mode #nav-mobile .close-btn {
    background: rgba(255, 255, 255, 0.06);
    color: #c8c0aa;
}

body.dark-mode #nav-mobile .close-btn:hover {
    background: rgba(182, 152, 88, 0.15);
    color: var(--primary-color);
}

body.dark-mode #nav-mobile ul li {
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

body.dark-mode #nav-mobile ul li a {
    color: #c8c0aa;
}

body.dark-mode #nav-mobile ul li a.is-active,
body.dark-mode #nav-mobile ul li a:hover {
    color: var(--primary-color);
}

body.dark-mode #nav-mobile .icons {
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* ── Hero section — swap background image ── */
body.dark-mode #hero .container {
    background-image: url("images/Top-section-Dark.png");
}

body.dark-mode #lang_button {
    color: #e0e0e0;
}

body.dark-mode #hero .container h1,
body.dark-mode #hero .container p {
    color: #e0e0e0;
}

body.dark-mode #hero .buttons ul span {
    color: #e0e0e0;
}

body.dark-mode #hero .lodging .card {
    background-color: #1e1e1e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ── About-us hero (other pages) ── */
body.dark-mode #about-us-hero {
    background-image: url("images/Top-section-Dark.png");
}

/* ── General body / section backgrounds ── */
body.dark-mode section {
    /* background-color: #111111;*/
}

/* ── Section titles & headings ── */
body.dark-mode .section-title,
body.dark-mode #about-us .right h2,
body.dark-mode .about-us-tail .right h2,
body.dark-mode #contact-us h2,
body.dark-mode #location h3,
body.dark-mode .about-us-footer h4,
body.dark-mode #questions h2 {
    color: #e0e0e0;
}

/* ── Body text / paragraphs ── */
body.dark-mode #about-us .services p,
body.dark-mode #about-us .we p,
body.dark-mode #about-us .right ul li,
body.dark-mode .about-us-tail .disc,
body.dark-mode .about-us-tail p,
body.dark-mode .contact-intro,
body.dark-mode #location p,
body.dark-mode #desc p,
body.dark-mode #info ul li h4,
body.dark-mode #project-hero .project-desc p,
body.dark-mode #project-hero .project-desc span {
    color: #9a9080;
}

/* ── Founders section ── */
body.dark-mode #founders div {
    background-color: #1e1e1e;
    border: 1px solid rgba(182, 152, 88, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ── Partners section ── */
body.dark-mode #parteners {
    filter: brightness(0.75) contrast(1.1);
}

/* ── FAQ items ── */
body.dark-mode .faq-item {
    background-color: #2a2a2a;
}

body.dark-mode .faq-item.is-active {
    background-color: var(--primary-color);
}

/* ── Contact form ── */
body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background-color: #1e1e1e;
    border-color: #3a3a3a;
    color: #e0e0e0;
}

body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder {
    color: #666666;
}

body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus {
    border-color: var(--primary-color);
}

body.dark-mode .contact-details li,
body.dark-mode .contact-details a {
    color: #9a9080;
}

body.dark-mode .contact-details a:hover {
    color: var(--primary-color);
}

/* ── Footer (already dark, minor tweak) ── */
body.dark-mode #footer {
    background-color: #080808;
    border-top: 1px solid rgba(182, 152, 88, 0.12);
}

/* ── Project cards / lodging cards ── */
body.dark-mode .date-card {
    background-color: #1e1e1e;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

body.dark-mode .card-day,
body.dark-mode .card-num,
body.dark-mode .card-month-year {
    color: #c8c0aa;
}

body.dark-mode .date-card.active {
    background-color: var(--primary-color);
}

body.dark-mode .date-card.active .card-day,
body.dark-mode .date-card.active .card-num,
body.dark-mode .date-card.active .card-month-year {
    color: #fff;
}

/* ── Booking section info ── */
body.dark-mode #booking-section .contact-info a,
body.dark-mode #booking-section .contact-info p {
    color: #9a9080;
}

/* ── Gallery buttons ── */
body.dark-mode #gallery .next,
body.dark-mode .prev {
    background-color: rgba(30, 30, 30, 0.85);
    color: #c8c0aa;
}

body.dark-mode #gallery .next:hover,
body.dark-mode .prev:hover {
    background-color: #2a2a2a;
}

/* ── Projects page cards ── */
body.dark-mode .project-card {
    background-color: #1e1e1e;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

body.dark-mode .project-card h3,
body.dark-mode .project-card .card-title {
    color: #e0e0e0;
}

body.dark-mode .project-card p,
body.dark-mode .project-card .card-desc {
    color: #9a9080;
}

/* ── Filter buttons (projects page) ── */
body.dark-mode .filter-btn {
    background-color: #2a2a2a;
    color: #c8c0aa;
    border-color: #3a3a3a;
}

body.dark-mode .filter-btn.is-active,
body.dark-mode .filter-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ── Banner ── */
body.dark-mode .banner {
    background-color: #1a1a1a;
    border: 1px solid rgba(182, 152, 88, 0.18);
}

/* ── Blog cards ── */
body.dark-mode .article-card,
body.dark-mode .blog-slide {
    background-color: #1e1e1e;
}

body.dark-mode .article-card h3,
body.dark-mode .blog-slide h3 {
    color: #e0e0e0;
}

body.dark-mode .article-card p,
body.dark-mode .blog-slide p {
    color: #9a9080;
}

/* ── Info section (project page) ── */
body.dark-mode #info ul li span {
    color: #c8c0aa;
}

/* ── Location section ── */
body.dark-mode #location .map iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(0.85) contrast(0.9);
}

/* ── Scrollbar in dark mode ── */
body.dark-mode::-webkit-scrollbar {
    width: 8px;
}

body.dark-mode::-webkit-scrollbar-track {
    background: #1a1a1a;
}

body.dark-mode::-webkit-scrollbar-thumb {
    background: #b69858;
    border-radius: 4px;
}



/* =============================================
   Responsive — Tablet & Small Laptop (no mobile)
   Layout adjustments; spacing scales via :root
   ============================================= */

@media (max-width: 1400px) {
    #about-us .services p {
        font-size: clamp(1.2rem, 1.8vw, 1.7rem);
    }

    #founders div {
        height: 110%;
    }

    #founders div h1 {
        font-size: clamp(1.25rem, 2vw, 1.5rem);
    }

    #founders div p {
        font-size: clamp(0.85rem, 1.1vw, 1rem);
    }

    .about-us-tail {
        margin: 100px 0px;
    }

    #blog-hero {
        height: 80vh;
    }

}

@media (max-width: 1400px) {
    header ul li a {
        font-size: clamp(12px, 1.15vw, 14px);
    }

    header>img {
        width: clamp(60px, 4.167vw, 80px);
    }

    #hero .lodging .card {
        border-radius: clamp(20px, 1.563vw, 30px);
    }

    #hero .card .img {
        border-radius: clamp(14px, 1.042vw, 20px);
    }

    #about-us .container {
        gap: var(--primary-gap);
    }

    #about-us .left img {
        max-width: 45%;
        height: auto;
        object-fit: cover;
    }

    .about-us-tail .right,
    .about-us-tail .left {
        padding: clamp(12px, 1.042vw, 20px);
    }

    #founders img {
        left: 36.5%;
    }

    #contact-us .contact-container {
        gap: clamp(32px, 3.125vw, 60px);
    }

    .footer-grid {
        gap: clamp(28px, 2.5vw, 48px);
    }

    #gallery .next,
    #gallery .prev {
        width: clamp(50px, 3.646vw, 70px);
        height: clamp(50px, 3.646vw, 70px);
    }

    #project-hero .project-desc {
        margin-top: clamp(50px, -6.25vw, -120px);
    }


    .carousel-container {
        height: clamp(260px, 16.667vw, 320px);
    }


    .card-num {
        font-size: clamp(40px, 3.021vw, 58px);
    }

    .card-day,
    .card-month-year {
        font-size: clamp(20px, 1.563vw, 30px);
    }
}

@media (max-width: 1024px) {
    header ul {
        gap: clamp(8px, 1.2vw, 16px);
    }

    #hero .lodging {
        flex-wrap: nowrap;
        gap: clamp(12px, 1.2vw, 20px);
    }

    #hero .lodging .card {
        width: auto;
        flex: 1 1 0;
        min-width: 0;
    }

    #hero .desc {
        padding: clamp(10px, 1vw, 16px) clamp(12px, 1.5vw, 24px);
    }

    #about-us .services .service {
        padding-left: clamp(16px, 4vw, 48px);
    }

    .about-us-tail .disc {
        width: 90%;
    }

    #founders {
        height: clamp(340px, 55vh, 560px);
        padding: 0 var(--section-px);
    }

    #founders div {
        width: 38%;
        min-height: 300px;
        height: 90%;
    }

    #founders img {
        left: 50%;
        transform: translateX(-50%);
        width: clamp(120px, 14vw, 200px);
    }

    #founders .right {
        padding: clamp(16px, 2vw, 40px) clamp(16px, 3vw, 48px);
    }

    #founders .left {
        align-items: center;
        padding-right: clamp(24px, 4vw, 80px);
        padding-left: clamp(16px, 2vw, 40px);
    }

    #parteners {
        margin-top: clamp(48px, 5.208vw, 100px);
    }

    #questions h2 {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .faq-column {
        width: 48%;
    }

    #contact-us h2 {
        font-size: clamp(3rem, 5vw, 3rem);
    }
}



@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(16px, 2vw, 24px);
    }
}

@media (max-width: 992px) {
    #about-us .services .service {
        gap: 20px;
        justify-content: center;
        height: 40vh;
    }

    #about-us .services .icon {
        width: 20vw;
        height: 20vw;
    }

    #about-us .container {
        flex-direction: column;
        height: auto;
        gap: 40px;
    }

    #about-us .right {
        display: contents;
    }

    #about-us .right>h2 {
        order: 1;
    }

    #about-us .right>ul {
        order: 2;
        flex-direction: column;
        gap: 70px;
    }

    #about-us .right>ul>li {
        width: 100%;
    }

    #about-us .right>ul>li p {
        width: 100%;
    }

    #about-us .left {
        order: 3;
        width: 100vw;
        margin-left: calc(-1 * var(--section-px));
        margin-right: calc(-1 * var(--section-px));
        position: relative;
        height: 200px;
        display: none;
        align-items: center;
        justify-content: center;
    }

    #about-us .left img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        border-radius: 0;
        max-width: 100%;
    }

    #about-us .left ul {
        position: relative;
        z-index: 2;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 10px;
        background: rgba(0, 0, 0, 0.4);
    }

    #about-us .left ul li {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 4px;
        color: white;
    }

    #about-us .left ul li h2 {
        color: white;
        font-size: clamp(1.4rem, 20vw, 3rem);
        margin: 0;
    }

    #about-us .left ul li span {
        color: white;
        font-size: clamp(0.7rem, 2.5vw, 1rem);
        font-weight: bold;
        line-height: 1.4;
        text-align: center;
    }

    #about-us .we {
        order: 4;
        width: 100%;
        margin-top: 10px;
    }

    #about-us .we p {
        width: 100%;
    }
}

/* --- Articles Layout (flex container) --- */
@media (max-width: 900px) {
    .articles-layout {
        flex-direction: column;
    }

    .articles-main {
        width: 100%;
    }
}

/* --- Banner mobile --- */
@media (max-width: 768px) {
    .banner {
        height: auto;
        padding: 32px 24px;
        align-items: flex-start;
        border-radius: 20px;
    }

    .banner-content {
        width: 100%;
        height: auto;
    }

    .banner-content h2 {
        font-size: 1.4rem;
    }

    .banner-content p {
        font-size: 0.95rem;
        margin-top: 12px;
    }

    .banner a {
        margin-left: 0;
        margin-top: 20px;
        padding: 10px 30px;
        font-size: 1rem;
        display: inline-block;
    }
}

/* --- Filter Buttons --- */
@media (max-width: 768px) {
    .articles-filters {
        gap: 8px;
        justify-content: flex-end;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* --- Section (#articals) padding on mobile --- */
@media (max-width: 768px) {
    #articals {
        padding: 32px 20px;
    }
}

/* --- Hero Section (#blog-hero) for projects page --- */
@media (max-width: 768px) {
    #blog-hero {
        height: auto;
        min-height: 45vh;
        padding: 100px 24px 48px;
        align-items: flex-start;
    }

    #blog-hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        line-height: 1.3;
    }

    #blog-hero p {
        width: 100%;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-top: 12px;
    }

    #blog-hero .line {
        width: 15%;
        margin-top: 24px;
    }
}

/* Mobile — unchanged */
@media (max-width: 768px) {

    #about-us .container {
        flex-direction: column;
        padding: 20px;
    }

    #about-us .right {
        width: 100%;
    }

    #about-us .right ul {
        width: 100%;
        gap: 50px;
    }

    #about-us .right ul li {
        width: 100%;
    }

    #about-us .right ul li p {
        width: 100%;
    }

    #questions .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-us-tail {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .about-us-tail .right,
    .about-us-tail .left {
        display: contents;
    }

    .about-us-tail .right h2 {
        order: 1;
        font-size: 2rem;
        margin-bottom: 10px;
        text-align: right;
    }

    .about-us-tail .left>div:first-child {
        order: 2;
    }

    .about-us-tail .disc {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 20px;
        text-align: right;
        font-size: 1rem;
    }

    .about-us-tail .right img {
        order: 3;
        width: 100% !important;
        height: auto;
        margin-bottom: 15px;
    }

    .about-us-tail .images {
        order: 4;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 0;
    }

    .about-us-tail .images img {
        width: 100%;
        height: auto;
    }

    .about-us-tail .about-us-footer {
        order: 5;
        margin-top: 40px;
        align-items: center;
        text-align: center;
    }

    .about-us-tail .about-us-footer h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .about-us-tail .about-us-footer .d-flex.justify-between {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .about-us-tail .about-us-footer p {
        width: 100%;
        text-align: center;
    }

    .about-us-tail .about-us-footer a {
        width: 80%;
        padding: 12px 0;
        margin: 0 auto;
        display: block;
    }

    .about-us-tail br {
        display: none;
    }

    #founders {
        height: fit-content;
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
        gap: 30vw;
        margin-top: 130px;

    }

    #founders div {
        width: 90%;
        background-color: #1a1a1a;
        border-radius: 25px;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 25px 40px !important;
        text-align: center;
        position: relative;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        text-align: center;
    }

    #founders .desktop-img {
        display: none;
    }

    #founders .mobile-img {
        display: block;
    }

    #founders img {
        position: relative;
        width: 100%;
        max-width: 340px;
        margin-top: -140px;
        margin-bottom: 10px;
        filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.25));
    }

    #founders div h1 {
        color: #c4a159;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    #founders div h3 {
        font-size: 15px;
        color: #ffffff;
        font-weight: 700;
        line-height: 1.6;
    }

    #founders div .span {
        margin-bottom: 25px;
    }

    #founders div p {
        text-align: center;
        margin-top: 0px;
        font-size: 13px;
        line-height: 1.9;
        color: #cccccc;
        font-weight: 600;
    }

    #parteners {
        height: fit-content;
        background-image: url('images/Parteners-bg-mobile.png');
    }

    #parteners ul {
        flex-direction: column;
        padding: 150px var(--space-100);
        gap: 150px;
    }

    #parteners img {
        width: 60vw;
        opacity: 0.8;
    }
}


@media (max-width: 768px) {

    #project-hero {
        width: 100%;
        flex-direction: column-reverse;
        margin-top: 100px;
    }

    #project-hero .project-desc h1 {
        font-weight: lighter;
        font-size: 3rem;
        width: 50vw;
        text-align: right;
    }

    #project-hero .project-img {
        width: 100vw;
        transform: translateX(35%);
        position: unset;
    }

    #project-hero .project-img img {
        width: 180%;
    }

    #project-hero .project-desc p {
        width: 100%;
    }

    #gallery {
        flex-direction: column-reverse;
    }

    #gallery div {
        width: 100%;
    }

    #gallery .right {
        display: none;
    }

    #info ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    #location {
        margin-top: 450px;
        flex-direction: column-reverse;
    }

    #location h3 {
        font-size: larger;
    }

    #location p {
        width: 100%;
        text-align: right;
    }

    #location .icon {
        width: 120px;
        height: 120px;
    }

    #location .map {
        width: 100%;
    }

    #location .map iframe {
        height: 60vh;
    }

    #location .left {
        width: 100%;
    }

    #booking-section .contact-container {
        flex-direction: column-reverse;
    }

    #booking-section .contact-info {
        width: 100%;
    }

    #booking-section .contact-form-wrap {
        width: 100%;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .date-card {
        width: 90%;
    }

    .cards-track {
        gap: 30px;
    }

    .cards-wrapper {
        margin: 0px;
    }

    section,
    #contact-us,
    #footer {
        padding: 50px 24px;
    }

    #contact-us .contact-container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    #contact-us h2 {
        font-size: 1.8rem;
    }

    .contact-form button {
        width: 100%;
        align-self: stretch;
    }

    #cirtifactes {
        height: fit-content;
        padding: 0px;
    }

    #cirtifactes .container {
        flex-direction: column;
        gap: 30px;
    }

    #cirtifactes .container .cirtificate {
        width: 90%;
        gap: 10px;
    }

    #cirtifactes .container .cirtificate img {
        width: 100%;
    }

    .cirtificate p {
        font-size: smaller;
    }

    #cirtifactes .container {
        background-size: cover;
        width: 100vw;
    }

    #about-us .container .right ul li h4 {
        font-size: large;
    }

    #about-us {
        margin-top: 0px;
    }

    .about-us-page {
        margin-bottom: 0px;
        margin-top: 0px
    }


    #us-in-numbers .content {
        flex-direction: column;
        gap: 50px;
    }

    #us-in-numbers {
        height: fit-content;
    }

    #about-us-hero {
        height: 40vh;
        margin-bottom: 0px;
    }

    #about-us-hero .container h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 680px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Projects Grid --- */


@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .projects-grid .card {
        aspect-ratio: 3 / 3.8;
        border-radius: 20px;
    }

    .projects-grid .card .img {
        height: 48%;
        border-radius: 16px 16px 0 0;
    }

    .projects-grid .card .desc {
        height: 52%;
        padding: 14px 18px;
    }

    .projects-grid .card .desc h1 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .projects-grid .card .desc p {
        font-size: 0.78rem;
        -webkit-line-clamp: 3;
    }

    .projects-grid .card .info {
        padding-top: 10px;
    }

    .projects-grid .card .info li {
        font-size: 0.78rem;
        gap: 4px;
    }


}


@media (max-width: 500px) {

    #cirtifactes {
        height: fit-content;
    }

    #cirtifactes .container {
        flex-direction: column;
        gap: 30px;
    }

    #cirtifactes .container .cirtificate {
        width: 90%;
        gap: 10px;
    }

    #cirtifactes .container .cirtificate img {
        width: 100%;
    }

    .cirtificate p {
        font-size: smaller;
    }


    #header-mobile {
        margin-top: 30px;
        display: flex;
    }

    .d_header {
        display: none
    }

    #hero .buttons {

        flex-direction: column-reverse;
        align-items: center;
    }

    #hero .buttons a {
        margin: 0px;
    }

    #hero .buttons ul span {
        margin-right: -20px;
    }

    #hero .container {
        padding: 30px;
    }

    #hero .container h1 {
        font-size: 13vw;
    }

    #hero .container p {
        font-weight: bold;
    }

    #hero .container .badg {
        color: #373737;
        margin-top: -80px;
        margin-bottom: 30px;
        border-color: #3737374f;
    }

    #hero .lodging {
        flex-direction: column;
        padding: 70px;
        gap: 20px;
    }

    .contact-form {
        width: 100%;
    }

    .contact-intro {
        width: 100%;
    }

    .faq-column {
        width: 100%;
    }

    #about-us .services {
        flex-direction: column;
    }

    #about-us .services .service {
        width: 100%;
        gap: 0px;
        padding: 0px;
    }
}


@media (max-width: 480px) {
    #blog-hero {
        padding: 90px 20px 40px;
        min-height: 40vh;
    }

    #blog-hero h1 {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }

    #blog-hero p {
        font-size: 0.88rem;
    }

    #contact-us-page-info ul {
        flex-direction: column;
    }

    .contact-details a {
        text-align: right;
    }

    #contact-us .contact-pages ul li a {
        width: unset;
    }

    #contact-us-page-info {
        padding-top: 0px;
    }

    .contact-form button {
        text-align: center;
    }
}


@media (max-width: 480px) {
    #articals {
        padding: 24px 16px;
    }

    .projects-grid .card {
        border-radius: 18px;
    }
}