    /*===== 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: 90px;
    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 {
    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 {
    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;
    }

    /*==== About Page ====*/
    .about-page video{
    position: absolute;
    width: 100%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%)    ;
    object-fit: cover;
    z-index: -10;
    }
    .about-hero {
    position: relative;
    width: 100%;
    height: 100%; /* adjust as needed */
    }

    .about-hero-logo {
    position: absolute;
    width: 20%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    max-width: 250px; /* adjust size */
    pointer-events: none; /* so logo doesn't block clicks on video if needed */
    }

    .about-hero h1 {
    position: absolute;
    bottom: 40px;
    width: 50%;
    text-align: center !important;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 0 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }
/* ===== 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;
}

.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);
}


.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%;
    height: 500px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

#preview-img {
    width: 80%;
    height: 80%;
}



/* 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: 100%;
    height: 100vh;
    min-height: 380px;
    overflow: hidden;
    margin-top: -90px;
}

.products-hero img {
    position: absolute;
    width: 100%;
    top: 40%;
    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%;
    }
}/* === Visit Page === */
.visit-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* HERO BACKGROUND */
.hero-visit-background {
    position: relative;
    width: 100%;
    height: 145vh;
    min-height: 700px;
    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.48);
    z-index: 1;
}

/* INTRO TEXT */
.visit-intro {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    color: white;
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    z-index: 2;
}
html[lang="ar"] .visit-intro{
    font-size: 34px;
}
html[lang="ar"] .visit-book-title{
        font-size: 38px;

}
html[lang="ar"] .visit-book-desc{
        font-size: 23px;

}
html[lang="ar"] .accordion-header{
        font-size: 24px;

}

html[lang="ar"] .accordion-content {

        font-size: 20px;

}
/* CONTENT WRAPPER */
.visit-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 40px 10%;
    gap: 40px;
    margin-top: -800px;
}

/* LEFT SIDE */
.visit-left {
    width: 50%;
    color: var(--cream);
}

.visit-book-title {
    font-size: 38px;
    color: white;
}

.visit-book-desc {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    width: 70%;
}

/* ==========================
   ACCORDION
========================== */
.accordion-item {
    margin-bottom: 16px;
    position: relative;
}

/* HEADER */
.accordion-header {
    width: 70%;
    border: none;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    background-color: var(--darkgreen);
    color: var(--cream);
    position: relative;
    text-align: left;
}

/* PLUS SIGN */
.accordion-header::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--cream);
    transition: transform 0.3s;
}

html[lang="ar"] .accordion-header::after {
    right: auto;
    left: 18px;
}

/* Rotate when open */
.accordion-item.active .accordion-header::after {
    transform: translateY(-50%) rotate(45deg);
}

/* CONTENT BOX */
.accordion-content {
    max-height: 0;
    overflow: hidden;
        width: 57%;
    background-color: var(--cream);
    border-radius: 20px;
    margin-top: 6px;
    padding: 0 20px;
    transition: max-height 0.35s ease;
}

/* When open */
.accordion-item.active .accordion-content {
    max-height: 500px;
        width: 57%;

    padding: 15px 40px 15px 40px;
}

/* LIST INSIDE CONTENT */
.accordion-content ul {
    padding: 0;
    margin: 0;
    color: var(--darkgreen);
    line-height: 1.7;
}

/* ==========================
   RIGHT SIDE FORM
========================== */
.visit-right {
    width: 45%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.visit-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
html[lang="ar"]  .visit-form{
    font-size: 20px;
}
html[lang="ar"]  .visit-submit{
    font-size: 20px;
}
html[lang="ar"]  .visit-form select{
    font-size: 18px;
}
.visit-form label {
    font-weight: 600;
    font-size: 20px;
    color: var(--darkgreen);
}

.visit-form input,
.visit-form select,
.visit-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
}

.visit-submit {
    background: var(--darkgreen);
    color: white;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center !important;
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .visit-container {
        flex-direction: column;
        margin-top: -120px;
    }

    .visit-left,
    .visit-right { width: 100%; }

    .visit-book-title { font-size: 28px; }
}


/* =========================================
   GLOBAL MOBILE RESPONSIVE SETTINGS
   ========================================= */

html, body {
    overflow-x: hidden !important;
}

/* Reduce universal spacing */
@media (max-width: 900px) {

    /* 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,
    .hero-visit-background {
        height: 60vh !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-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 !important;
    }

    .left-card,
    .right-cards .right-card {
        height: auto !important;
        min-height: 300px !important;
        width: 100% !important;
    }

    /* ======================
       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;
    }

    /* ======================
       ABOUT PAGE
       ====================== */
    .about-hero h1 {
        width: 90% !important;
        font-size: 16px !important;
    }

    /* ======================
       PRINCIPLES GRID
       ====================== */
    .principles-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .card-top h3 { font-size: 15px !important; }
    .card-bottom p { font-size: 13px !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,
    .preview-box {
        width: 100% !important;
    }

    /* ======================
       SYSTEMS SECTION
       ====================== */
    .systems-section {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 20px 5% !important;
    }

    .systems-image,
    .systems-content {
        width: 100% !important;
        text-align: center !important;
    }

    .systems-grid {
        grid-template-columns: 1fr !important;
    }

    /* ======================
       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: 50vh !important;
    }

    .slides img {
        height: 50vh !important;
    }

    /* ======================
       BASKET PAGE
       ====================== */
    .basket-details {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .basket-image img {
        width: 100% !important;
        margin: 0 !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;
    }

    /* ======================
       VISIT PAGE
       ====================== */
    .hero-visit-background {
        height: 90vh !important;
    }

    .visit-intro {
        font-size: 16px !important;
        width: 90% !important;
        top: 3% !important;
    }

    .visit-container {
        flex-direction: column !important;
        margin-top: -300px !important;
        gap: 30px !important;
    }

    .visit-left,
    .visit-right {
        width: 100% !important;
    }

    .accordion-header {
        font-size: 15px !important;
        padding: 14px !important;
    }

    .accordion-content ul {
        font-size: 14px !important;
    }

    .visit-form {
        padding: 20px !important;
    }
}
