    /*===== General Styles =======*/
    :root{
        --lightgreen:#6E704A;
        --darkgreen:#423D24;
        --cream:#F8F4E3;
    }
    h1, h2 {
        font-family: 'K2D';
    }
    h3, h4, h5, h6,p, span, a, li, div, label, input::placeholder, textarea::placeholder{
        font-family: 'K2D';
    }

    body{
        margin:0;
        padding: 0;
        box-sizing: border-box;
        overflow-x: hidden;
        padding-top: 90px; /* adjust to your header height */

    }
    html {
    scroll-behavior: smooth;
    }
    html[dir="ltr"] .main-page,
    html[dir="ltr"] * {
    text-align: left;
    }

    html[dir="rtl"] .main-page,
    html[dir="rtl"] * {
    text-align: right;
    }

/*==== Main Page =====*/
/* ==========================
HERO BASE
========================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center container */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 1200px;
    color: #423D24;
}

/* ==========================
GLASS BOX PARENT
========================== */
.glass-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 6% 8%;
    gap: 60px;
    border-radius: 25px;
    margin: 10% 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(61, 68, 60, 0.37);
}

/* ==========================
LEFT SIDE — LOGO CENTERED
========================== */
.glass-box-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 100%;
}

.glass-box-left .logo {
    width: 130px;
    height: auto;
}

/* ==========================
RIGHT SIDE (NAV + TEXT)
========================== */
.glass-box-right {
    flex: 1;                /* <-- MAKE IT TAKE FULL REMAINING WIDTH */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    text-align: left;
}

.main-hero-nav ul {
    display: flex;
    gap: 85px;
    list-style: none;
    padding: 0;
}

.main-hero-nav ul li a {
    font-size: 18px;
    font-family: "K2D", sans-serif;
    text-decoration: none;
    color: black;
    position: relative;
}

.main-hero-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: var(--darkgreen);
    transition: width 0.3s ease;
}

.main-hero-nav ul li a:hover::after {
    width: 100%;
}

/* Title & paragraph */
.hero-text h1 {
    font-size: 40px;
    font-family: "K2D", sans-serif;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
}

/* Buttons */
.buttons-hero {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-hero {
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-family: "K2D", sans-serif;
    font-size: 16px;
    color: var(--darkgreen);
    background-color: rgba(216, 216, 216, 0.592);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    color: var(--cream);
    background-color: var(--darkgreen);
}

    /* ===== MAIN COLLECTION SECTION ===== */
    .main-collection {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 0px;


    }

    .main-collection h1 {
    grid-column: 1 / -1;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--lightgreen);
    font-style: regular;
    text-align: center;
    }
    .main-cards{
        display: grid;
    grid-template-columns: 1fr 0.8fr; /* right side smaller */
    gap: 10px;
        padding: 30px 8%;
    }

    /* LEFT CARD — BIG TREE CARD */
    .left-card {
    position: relative;
    overflow: hidden;
    height: 70%;
        max-width: 600px;
    min-height: 550px; /* adjust as you like */
    }

    /* RIGHT SIDE — 2 SMALLER CARDS */
    .right-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    }

    .right-card {
        max-width: 400px;
    position: relative;
    overflow: hidden;
    height: 265px; /* smaller */
    background-color: #eeefec;
    }

    /* Images */
    .left-card img,
    .right-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    }
    .left-card img:hover,.right-card img:hover{
            transform: scale(1.02);
    transition: transform 0.3s ease;
    }
    /* Title box */
    .left-card h3,
    .right-card h3 {
    position: absolute;
    bottom: 18px;
    left: 18px;
    margin: 0;
    padding: 10px 20px;
    background: rgba(216, 216, 216, 0.35);
    backdrop-filter: blur(6px);
    color: black;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    }
    /* ===== PLAN SECTION ===== */
    .plan {
    text-align: center;
    margin: 100px auto;
    max-width: 900px;
    }

    .plan-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    }

    .plan img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.20);
    }
    .plan img:hover{
    transform: scale(1.2);
    transition: transform 0.3s ease;
    }
    .plan h2 {
    margin-top: 25px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    }
    /* ===== BUILD SECTION ===== */
    .build {
    padding: 50px 20% ;
    background-color: var(--cream);
    }

    .build h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    }

    /* FAQ */
    .faq-item {
    border-bottom: 2px solid var(--darkgreen);
    margin: 0 auto 10px auto;   /* <— THIS centers it */
    padding-bottom: 8px;
    max-width: 80%;
    }


    .faq-question {
    font-family: 'K2D';
    color: black;
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    }

    .faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.8rem;
    transition: transform 0.3s;
    }
html[lang="ar"] .faq-question::after {
    right: auto;
    left: 14px;
}
    .faq-item.active .faq-question::after {
    transform: rotate(45deg);
    }

    .faq-answer {
            font-family: 'K2D';

    max-height: 0;
    overflow: hidden;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-right: 20px;
    transition: max-height 0.35s ease;
    color: var(--cream);
    }

    .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px;
    background-color: var(--cream);
    color: var(--darkgreen);
    border-radius: 10px;
    }

/* ===== PRINCIPLES SECTION ===== */
/* Container */
.principles-section {
    padding: 80px 10%;
    color: var(--darkgreen);
}

.principles-section h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-family: "K2D", sans-serif;
    letter-spacing: 1px;
    color: var(--darkgreen);
}

.principles-section p {
    font-size: 18px;
    line-height: 1.6;
}

/* Grid layout */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Card container */
.principle-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

/* Hover effect */
.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

/* Top colored header */
.card-top {
    background: var(--clr);
    padding: 12px 16px;
    height: 40px;
}

.card-top h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

/* Bottom dark green panel */
.card-bottom {
    background: white;
    padding: 16px;
}

.card-bottom p {
    margin: 0;
    color: var(--darkgreen);
    font-size: 16px;
    line-height: 1.5;
}
html[lang="ar"] .card-top h3 {
        font-size: 20px;

}
html[lang="ar"] .card-bottom p {
        font-size: 18px;

}

/* Responsive */
@media (max-width: 900px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== CONCEPT SECTION ===== */
.concept {
    background: var(--cream);
}

.concept h1 {
        padding: 80px 10% 0px;

    font-size: 3rem;
    margin-bottom: 25px;
    font-family: "K2D", sans-serif;
    color: var(--darkgreen);

}
.concept-paragraphs {
        padding: 0px 10%;

    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 30px; /* space between columns */
}
.concept p {
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--darkgreen);
    margin-bottom: 25px;
    text-align: justify;
}

.concept img {
    width: 100%;
    max-width: 1100px;
    margin: 0;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* =========================
PERCENTAGE SECTION
========================= */
.percentage-section {
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
}
@media (max-width: 920px) {
    .percentage-item h1 {
        font-size: 60px !important;
    }
}
/* Background */
.percentage-bg {
position: absolute;
inset: 0;
z-index: 0;
}

.percentage-bg img {
width: 100%;
height: 100%;
object-fit: cover;
}

.green-overlay {
position: absolute;
inset: 0;
background: rgba(64, 63, 43, 0.75);
}

/* =========================
SCROLLABLE CONTENT
========================= */
.percentage-content {
position: relative;
z-index: 1;
height: 60%;
overflow-y: auto;
/* FIXED */
padding: 20vh 18%;
display: flex;
flex-direction: column;
gap: 180px;
}

/* hide scrollbar */
.percentage-content::-webkit-scrollbar {
width: 0;
}

/* =========================
ITEMS
========================= */
.percentage-item {
color: var(--cream);
}

.percentage-item h1 {
font-size: 128px;
line-height: 1;
margin: 0;
font-weight: 700;
}

.percentage-item h3 {
font-size: 24px;
margin-top: 12px;
line-height: 1.4;
}

/* Language alignment */
html[lang="en"] .percentage-item {
align-self: flex-start;
text-align: left;
}

html[lang="ar"] .percentage-item {
align-self: flex-start;
text-align: right;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 900px) {

.percentage-item h1 {
    font-size: 72px;
}

.percentage-item h3 {
    font-size: 18px;
}
}

.masterplan-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 5%;
}

.map-container {
    position: relative;
    width: 60%;
}

.map-base {
    width: 100%;
    display: block;
}

/* HOTSPOTS */
.hotspot {
    position: absolute;
    cursor: pointer;
    opacity: 0.25;
    transition: 0.3s;
}

.hotspot:hover {
    opacity: 0.6;
}

/* PREVIEW BOX */
.preview-box {
    width: 40%;
    max-height: 500px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

#preview-img {
    width: 80%;
    height: 70%;
        max-height: 370px;

}



/* Main wrapper layout */
.systems-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--lightgreen);
}

/* Left image 30% width */
.systems-image {
    width: 45%;
}

.systems-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Right content */
.systems-content {
    width: 50%;
    padding: 20px;
}

.systems-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--cream);
}

.systems-content > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--cream);
}

/* Grid of 4 systems */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Individual card */
.system-card img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    color: var(--cream);
}

.system-card h3 {
    font-size:20px;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: var(--cream);

}

.system-card p {
    color: var(--cream);
    font-size: 16px;
    line-height: 1.6;
    max-width: 215px;
}
.about-masterPlan {
    padding: 80px 10%;
}
.about-masterPlan h1{
    font-size: 3rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.about-masterPlan img{
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;

    width: 90%;
}
.about-masterPlan p {
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--darkgreen);
    margin-bottom: 25px;
    text-align: justify;
}

.trees {
    padding: 80px 10%;
}
.trees h1{
    font-size: 3rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: var(--darkgreen);
}
.trees-grid-desktop img{
    width:100%;
}

.trees-grid-phone {
    display: none;
}
@media (max-width: 1000px) {
.trees-grid-phone {
    display: block;
}
.trees-grid-desktop{
    display: none;
}
.trees-grid-phone img{
    width:90%;
}
}
.plants {
    padding: 80px 10%;
}
.plants h1{
    font-size: 3rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: var(--darkgreen);
}
.plants-grid{
        display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.plants-grid img{
    width:100%;
}
@media (max-width: 1000px) {
    .plants-grid{
    grid-template-columns: repeat(1, 1fr);
}
}
.gallery {
    width: 100%;
    overflow: hidden;
}

/* Title banner */
.gallery-banner {
    background: var(--darkgreen);
    padding: 25px 25px;
    text-align: center;
}

.gallery-banner h1 {
    color: white;
    font-size: 32px;
    margin: 0;
}

/* Carousel container */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

/* Slides wrapper */
.slides {
    display: flex;
    height: 100%;
    animation: glide 100s linear infinite;
}

/* Each image full-screen */
.slides img {
    width: 100vw;
    height: 80vh;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes glide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-700vw); }
}

@keyframes glide-rtl {
    0%   { transform: translateX(0); }
    100% { transform: translateX(700vw); }
}

html[lang="ar"] .slides {
    animation: glide-rtl 100s linear infinite;
}
/*====== Products Page ======*/
/* ========== HERO ========== */
.products-hero {
    position: relative;
    width: auto;
    height: 100vh;
    min-height: 380px;
    overflow: hidden;
    margin-top: -90px;
}

.products-hero img {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 40%;
    margin-top: 90px;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Overlay adjusted to match custom image position */
.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background-color: rgb(66,61,36,0.8); 
pointer-events: none;
}
/* Centered text */
.products-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center !important;
    width: 80%;
    max-width: 800px;
}

.products-hero-text h1 {
    color: white;
    text-align: center !important;
    font-size: 48px;
    margin-bottom: 15px;
}

.products-hero-text p {
    color: white;
    text-align: center !important;
    font-size: 22px;
    line-height: 1.6;
}

/* Responsive hero text */
@media (max-width: 600px) {
    .products-hero {
        height: 45vh;
    }

    .products-hero-text h1 {
        font-size: 30px;
    }

    .products-hero-text p {
        font-size: 16px;
    }
}

.basket-details {
    display: flex;
    gap: 50px;
    width: 90%;
    max-width: 1300px;
    margin: 50px auto;
    align-items: flex-start;
}

/* LEFT IMAGE */
.basket-image {
    flex: 1.1;
}

.basket-image img {
    width: 80%;
    margin: 50px auto;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    object-fit: cover;
}

/* RIGHT INFO */
.basket-info {
    flex: 1;
}

.basket-info h1 {
    font-size: 38px;
    color: var(--darkgreen);
    margin-bottom: 10px;
}

.basket-info .tagline {
    font-size: 20px;
    color: var(--lightgreen);
    margin-bottom: 25px;
}

.details-section h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--darkgreen);
}

.details-section ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.details-section ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.note {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--darkgreen);
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.btn {
    padding: 12px 26px;
    border-radius: 10px;
    background: var(--darkgreen);
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #2f2b18;
}

.btn.outline {
    background: transparent;
    border: 2px solid var(--darkgreen);
    color: var(--darkgreen);
}

.btn.outline:hover {
    background: var(--darkgreen);
    color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .basket-details {
        flex-direction: column;
        text-align: center;
    }

    .section ul {
        padding-left: 0;
        list-style: none;
    }

    .basket-info {
        width: 100%;
    }
}
.cart-page {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
}

.cart-page h1 {
    font-size: 36px;
    color: var(--darkgreen);
    margin-bottom: 40px;
    text-align: center;
}

.cart-container {
    display: flex;
    gap: 50px;
}

/* FORM */
.cart-form {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-form label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.cart-form input,
.cart-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
}

.cart-form .btn {
    margin-top: 10px;
    background: var(--darkgreen);
    color: white;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

/* SUMMARY */
.cart-summary {
    flex: 0.7;
    background: rgba(216,216,216,0.25);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 20px;
    height: fit-content;
}

.cart-summary h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--darkgreen);
}

.item-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.summary-note {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* MOBILE */
@media (max-width: 900px) {
    .cart-container {
        flex-direction: column;
    }

    .cart-summary {
        width: 100%;
    }
}

/* =========================================
GLOBAL MOBILE RESPONSIVE SETTINGS
========================================= */

html, body {
    overflow-x: hidden !important;
}

/* Reduce universal spacing */
@media (max-width: 920px) {

    /* Typography reductions */
    h1 { font-size: 26px !important; }
    h2 { font-size: 22px !important; }
    h3 { font-size: 20px !important; }
    p, li { font-size: 14px !important; line-height: 1.5 !important; }


    /* ======================
    HERO SECTIONS
    ====================== */

    .hero,
    .products-hero{
        height: 100vh !important;
        min-height: 380px !important;
    }

    .hero-content {
        top: 55% !important;
        width: 90% !important;
    }

    /* Glass box collapses */
    .glass-box {
        flex-direction: column !important;
        gap: 25px !important;
        padding: 30px 20px !important;
        margin: 20px auto !important;
    }

    .glass-box-left {
        width: 100% !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    .glass-box-left .logo {
        width: 60px !important;
    }

    .glass-box-right {
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
        gap: 16px !important;
    }

    .main-hero-nav ul {
        gap: 25px !important;
        font-size: 14px !important;
    }

    /* Buttons */
    .btn-hero,
    .buttons-hero a,
    .btn {
        padding: 10px 18px !important;
        font-size: 14px !important;
    }

    /* ======================
    COLLECTION SECTION
    ====================== */
    .main-collection h1 {
        font-size: 28px !important;
        margin-bottom: 0px !important;
        
    }
    .main-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .left-card,
    .right-cards .right-card {
        height: auto !important;
        min-height: 300px !important;
        width: 100% !important;
    }
    .left-card,.right-card{
        max-width: 400px;
        max-height: 310px;
    }

    /* ======================
    PLAN SECTION
    ====================== */
    .plan-inner {
        flex-direction: column !important;
        padding: 0 !important;
    }
    .plan img {
        width: 100% !important;
    }

    /* ======================
    BUILD / FAQ
    ====================== */

    .build {
        padding: 40px 5% !important;
    }

    .faq-item {
        max-width: 100% !important;
    }


    /* ======================
    PRINCIPLES GRID
    ====================== */
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px !important;
    }
    .card-top{
        height: 35px;
    }
    .card-top h3 { font-size: 12px !important; }
    .card-bottom p { font-size: 10px !important; }

    /* ======================
    CONCEPT SECTION
    ====================== */
    .concept h1 {
        font-size: 26px !important;
        text-align: center !important;
        padding-top: 20px !important;
    }

    .concept-paragraphs {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 0 5% !important;
    }
    /* ======================
    MASTERPLAN (HOTSPOTS)
    ====================== */
    .masterplan-wrapper {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .map-container {
        width: 100% !important;
    }
.preview-box{
    width: 70%;
    height: auto;
    margin: 15%;
}
    /* ======================
    SYSTEMS SECTION
    ====================== */
    .systems-section {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 20px 5% !important;
    }

    .systems-image,
    .systems-content {
        width: 80% !important;
        text-align: center !important;
    }
.systems-image{
    padding: 10% 10% 0 10%;
}
.systems-image img{
        max-height: 500px;

}


    /* ======================
    TREES + PLANTS SECTIONS
    ====================== */
    .trees,
    .plants {
        padding: 40px 5% !important;
    }

    .trees-grid-desktop { display: none !important; }
    .trees-grid-phone { display: block !important; }

    .plants-grid {
        grid-template-columns: 1fr !important;
    }

    /* ======================
    GALLERY
    ====================== */
    .gallery-slider {
        height: 30vh !important;
    }

    .slides img {
        height: 30vh !important;
    }

    /* ======================
    BASKET PAGE
    ====================== */
    .products-hero {
        height: 60vh !important;
    }
    .products-hero img {
        height: 72vh !important;
    }
    .products-hero-text h1 {
        font-size: 32px !important;
    }
    .products-hero-text p {
        font-size: 16px !important;
    }
    .basket-details {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .basket-image img {
        width: 90% !important;
        margin: 10% !important;
    }

    .basket-info h1 {
        font-size: 24px !important;
    }

    /* ======================
    CART PAGE
    ====================== */
    .cart-container {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .cart-page h1 {
        font-size: 26px !important;
    }
    .cart-summary {
        width: 80% !important;
    }

}
@media(max-width:500px){
    .glass-box{
        max-height: 90vh;
        gap: 0;
        margin: 0 !important;
        margin-top: -30px !important;
        padding: 20px !important;
    }
    .glass-box-right {
        gap: 0 !important;
    }
    .glass-box h1{
        font-size: 22px !important;
    }

}

@media(max-width:500px){
    .glass-box h1{
        font-size: 20px !important;
    }
    .main-hero-nav ul {
        gap: 15px !important;
        font-size: 12px !important;
    }
}
@media (max-width:600px){
    .systems-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ======================
ABOUT HERO (VIDEO)
====================== */
.about-hero {
position: relative;
width: 100%;
height: 100vh;           /* desktop hero height */
min-height: 520px;      /* keeps it strong on big screens */
overflow: hidden;
margin-top: -90px;
}

/* Video covers the hero properly */
.about-hero video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}

/* Optional dark overlay for readability */
.about-hero::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.25);
z-index: 1;
}

/* Center logo */
.about-hero-logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: min(240px, 25vw);
opacity: 0.35;
z-index: 2;
pointer-events: none;
}

/* Title pinned near bottom, centered */
.about-hero h2 {
position: absolute;
left: 50%;
bottom: 28px;
transform: translateX(-50%);
width: min(900px, 90%);
margin: 0;
color: white;
font-size: 20px;
font-weight: 700;
line-height: 1.35;
text-align: center;
padding: 0 12px;
text-shadow: 0 2px 10px rgba(0,0,0,0.55);
z-index: 3;
}

/* ======================
RESPONSIVE
====================== */
@media (max-width: 900px) {
.about-hero {
    height: 80vh;
    min-height: 420px;
}

.about-hero-logo {
    width: 20%;
    height: auto;
}

.about-hero h2 {
    font-size: 16px !important;
    bottom: 18px;
}
}

@media (max-width: 520px) {
.about-hero {
    height: 75vh;
    min-height: 360px;
}


.about-hero h2 {
    font-size: 14px !important;
    width: 92%;
}
}
/* ======================
VISIT PAGE
====================== */
.visit-page {
width: 100%;
overflow-x: hidden;
}

/* ======================
HERO BACKGROUND
====================== */
.hero-visit-background {
position: relative;
width: 100%;
height: 130vh;
min-height: 650px;
overflow: hidden;
}

.hero-visit-background img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.green-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.45);
z-index: 1;
}

/* Intro text */
.visit-intro {
position: absolute;
top: 15%;
left: 50%;
transform: translateX(-50%);
width: min(900px, 85%);
color: white;
font-size: 20px;
line-height: 1.5;
text-align: center;
z-index: 2;
}

html[lang="ar"] .visit-intro {
font-size: 24px;
}

/* ======================
CONTENT WRAPPER
====================== */
.visit-container {
position: relative;
z-index: 3;
display: flex;
gap: 50px;
padding: 80px 10%;
padding-bottom: 0;
background: transparent;
margin-top: -100vh;
}

/* ======================
LEFT SIDE
====================== */
.visit-left {
width: 50%;
color: var(--cream);
}

.visit-book-title {
font-size: 38px;
color: white;
margin-bottom: 10px;
}

.visit-book-desc {
font-size: 18px;
color: white;
margin-bottom: 30px;
max-width: 520px;
}

html[lang="ar"] .visit-book-title {
font-size: 36px;
}

html[lang="ar"] .visit-book-desc {
font-size: 22px;
}

/* ======================
ACCORDION
====================== */
.visit-accordion {
display: flex;
flex-direction: column;
gap: 16px;
}

.accordion-item {
width: 100%;
}

.accordion-header {
width: 100%;
background: var(--darkgreen);
color: var(--cream);
border: none;
padding: 16px 22px;
border-radius: 20px;
font-size: 18px;
font-weight: 700;
cursor: pointer;
position: relative;
text-align: left;
}

html[lang="ar"] .accordion-header {
font-size: 22px;
text-align: right;
}

/* Plus icon */
.accordion-header::after {
content: "+";
position: absolute;
right: 18px;
top: 50%;
transform: translateY(-50%);
font-size: 22px;
transition: transform 0.3s;
}

html[lang="ar"] .accordion-header::after {
right: auto;
left: 18px;
}

.accordion-item.active .accordion-header::after {
transform: translateY(-50%) rotate(45deg);
}

/* Content */
.accordion-content {
max-height: 0;
overflow: hidden;
background: var(--cream);
border-radius: 20px;
padding: 0 22px;
transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-item.active .accordion-content {
max-height: 600px;
max-width: 500px;
padding: 18px 22px;
}

.accordion-content ul {
margin: 0;
padding: 0;
list-style: none;
color: var(--darkgreen);
line-height: 1.7;
}

html[lang="ar"] .accordion-content ul {
font-size: 20px;
}

/* ======================
RIGHT SIDE FORM
====================== */
.visit-right {
width: 45%;
display: flex;
justify-content: center;
}

.visit-form {
width: 100%;
background: white;
padding: 30px;
border-radius: 22px;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
display: flex;
flex-direction: column;
gap: 18px;
}

.visit-form label {
font-weight: 600;
font-size: 16px;
color: var(--darkgreen);
}

html[lang="ar"] .visit-form label {
font-size: 18px;
}

.visit-form input,
.visit-form select,
.visit-form textarea {
width: 100%;
padding: 12px 14px;
border-radius: 10px;
border: 1px solid #ccc;
}

.visit-submit {
background: var(--darkgreen);
color: white;
padding: 14px;
border-radius: 12px;
font-size: 18px;
cursor: pointer;
}

/* ======================
RESPONSIVE
====================== */
@media (max-width: 900px) {
.hero-visit-background {
    height: 100vh;
    min-height: 520px;
}

.visit-container {
    flex-direction: column;
    padding: 60px 8%;
    margin-top: -70vh;

}

.visit-left,
.visit-right {
    width: 100%;
}

.visit-book-title {
    font-size: 28px;
}

.accordion-header {
    font-size: 16px;
    max-width: 500px;
}


.accordion-content ul {
    font-size: 14px;
        max-width: 500px;

}

.visit-intro {
    font-size: 18px;
    width: 70%;
}
html[lang="ar"] .visit-intro {
font-size: 16px !important;
}
}
@media (max-width: 500px) {
    .visit-container {
    flex-direction: column;
    padding: 60px 8%;
    margin-top: -55vh;

}
    .visit-intro {
    font-size: 14px !important;
    width: 80%; 
}
html[lang="ar"] .visit-intro {
font-size: 16px !important;
}
.accordion-header {
    font-size: 14px;
}
html[lang="ar"] .accordion-header {
    font-size: 16px;
    text-align: right;
}
}

/* =========================
OUR LOCATION
========================= */
.our-location {
display: flex;
flex-direction: column;
gap: 18px;
margin-top: -100px;
padding: 80px 10%;
}

/* Title */
.our-location h1 {
font-size: 38px;
font-weight: 700;
color: var(--darkgreen);
margin: 0;
}

/* Image */
.our-location img {
width: 250px;
max-width: 100%;
cursor: pointer;
transition: transform 0.25s ease;
}

.our-location img:hover {
transform: scale(1.03);
}

/* =========================
LANGUAGE POSITIONING
========================= */

/* English → left */
html[lang="en"] .our-location {
align-items: flex-start;
text-align: left;
}

/* Arabic → right */
html[lang="ar"] .our-location {
align-items: flex-start;
text-align: right;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 900px) {
.our-location {
    align-items: center !important;
    text-align: center !important;
    padding: 50px 6%;
}

.our-location h1 {
    font-size: 28px;
}

.our-location img {
    width: 200px;
}
}
