/* =====================================================
   BASE
===================================================== */

:root {
    --green: #249555;
    --green-dark: #176d3d;
    --green-light: #eaf7ef;
    /* Old gold replaced with main green theme */
    --gold: #249555;
    --cream: #f5fbf7;
    --text-dark: #173b25;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
}


/* =====================================================
   HEADER / NAVIGATION
===================================================== */

.site-header {
    background: var(--green);
    color: #fff;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 18px rgba(36, 149, 85, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 72px;
}


/* =====================================================
   BRAND
===================================================== */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
}


/* =====================================================
   MAIN NAV
===================================================== */

.main-nav {
    display: flex;
    align-items: stretch;
    flex: 1;
    justify-content: space-evenly;
}

.nav-link {
    position: relative;
    flex: 1;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 26px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    transition: color 0.2s;
}

.dropdown {
    position: relative;
    flex: 1;
    display: flex;
}

    .dropdown .nav-link {
        flex: 1;
    }


/* =====================================================
   NAV UNDERLINE
===================================================== */

.nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 20px;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: #eafff0;
}

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: scaleX(1);
    }

.nav-link.active {
    color: #ffffff;
    font-weight: 700;
}


/* =====================================================
   CARET
===================================================== */

.caret {
    font-size: 0.7rem;
    margin-left: 2px;
    transition: transform 0.2s;
}

.dropdown:hover .caret {
    transform: rotate(180deg);
}


/* =====================================================
   DROPDOWN
===================================================== */

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    position: absolute;
    top: 100%;
    left: 16px;
    background: #ffffff;
    border-top: 3px solid var(--green);
    border-radius: 0 0 8px 8px;
    min-width: 190px;
    box-shadow: 0 12px 28px rgba(36, 149, 85, 0.18);
    z-index: 10;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: var(--green);
    text-decoration: none;
    font-size: 0.88rem;
    border-bottom: 1px solid #e5f2e9;
}

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        background: var(--green-light);
        color: var(--green-dark);
        padding-left: 22px;
    }


/* =====================================================
   MOBILE HAMBURGER
===================================================== */

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .nav-toggle-label span {
        width: 26px;
        height: 2px;
        background: #ffffff;
        display: block;
    }


/* =====================================================
   MOBILE NAVIGATION
===================================================== */

@media (max-width: 800px) {

    .nav-toggle-label {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--green-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        box-shadow: 0 12px 20px rgba(0,0,0,0.25);
    }

    .nav-link {
        width: 100%;
        padding: 14px 24px;
    }

        .nav-link::after {
            display: none;
        }

    .dropdown {
        flex-direction: column;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        display: none;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 500px;
    position: relative;
    /*background-image: linear-gradient(rgba(0, 80, 40, 0.45), rgba(0, 80, 40, 0.45)), url('/Images/Nursery.png');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* =====================================================
   PRIMARY BUTTON
===================================================== */

.btn-primary {
    display: inline-block;
    background: var(--green);
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

    .btn-primary:hover {
        background: var(--green-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(36, 149, 85, 0.25);
    }


/* =====================================================
   SECTIONS
===================================================== */

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}

    .section.alt-bg {
        background: #ffffff;
        max-width: 100%;
    }

    .section h2 {
        color: var(--green);
        margin-bottom: 20px;
        border-left: 4px solid var(--green);
        padding-left: 12px;
    }


/* =====================================================
   PAGE HEADER
===================================================== */

.page-header {
    background: var(--green-dark);
    color: #ffffff;
    text-align: center;
    padding: 50px 24px;
}


/* =====================================================
   FEATURE / PRODUCT / GALLERY GRID
===================================================== */

.feature-grid,
.product-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 20px;
}


/* =====================================================
   FEATURE CARD
===================================================== */

.feature-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    border-top: 3px solid var(--green);
    box-shadow: 0 4px 12px rgba(36, 149, 85, 0.07);
}

    .feature-card h3 {
        color: var(--green);
        margin-bottom: 10px;
    }


/* =====================================================
   PRODUCT CARDS
===================================================== */

.product-card {
    background: #ffffff;
    border-radius: 12px 0 12px 0;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 14px rgba(36, 149, 85, 0.08);
    border: 1px solid #dcebe1;
}

    .product-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .product-card h3 {
        color: var(--green);
        margin: 14px 0 6px;
    }

    .product-card .price {
        color: var(--green);
        font-weight: bold;
        padding-bottom: 16px;
    }


/* =====================================================
   BASIC GALLERY
===================================================== */

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(36, 149, 85, 0.12);
}


/* =====================================================
   CONTACT
===================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-top: 24px;
}

.contact-info h3 {
    color: var(--green);
    margin-top: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border-top: 3px solid var(--green);
    box-shadow: 0 5px 15px rgba(36, 149, 85, 0.07);
}

    .contact-form label {
        font-size: 0.9rem;
        color: var(--green);
        margin-top: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        border: 1px solid #d8e9de;
        border-radius: 5px;
        font-family: inherit;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(36, 149, 85, 0.10);
        }


/* =====================================================
   SUCCESS BOX
===================================================== */

.success-box {
    background: var(--green-light);
    color: var(--green-dark);
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid var(--green);
}


@media (max-width: 700px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: var(--green-dark);
    color: #eaf7ef;
    padding: 24px;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-inner {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #c9f5d8;
            text-decoration: underline;
        }

    .footer-links span {
        color: #b9d8c3;
    }


/* =====================================================
   HERO EXTRAS
===================================================== */

.hero-tag {
    display: inline-block;
    background: rgba(36, 149, 85, 0.20);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    margin-bottom: 18px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* =====================================================
   OUTLINE BUTTON
===================================================== */

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 11px 26px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

    .btn-outline:hover {
        background: #ffffff;
        color: var(--green);
        transform: translateY(-2px);
    }


/* =====================================================
   STATS BAR
===================================================== */

.stats-bar {
    background: #ffffff;
    border-bottom: 1px solid #e1eee5;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #6f7c74;
    margin-top: 4px;
}


/* =====================================================
   CENTER SECTION HEADING
===================================================== */

.section-heading-center {
    text-align: center;
    margin-bottom: 32px;
}

.eyebrow {
    display: inline-block;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.section-heading-center h2.center {
    border-left: none;
    padding-left: 0;
    display: inline-block;
}


/* =====================================================
   CATEGORY GRID
===================================================== */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid #dcebe1;
    box-shadow: 0 4px 12px rgba(36, 149, 85, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    /* Background Image */
    .category-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--card-image);
        background-size: cover;
        background-position: center;
        opacity: 0.16;
        transition: transform 0.5s ease, opacity 0.4s ease;
    }

    /* Soft White-Green Overlay */
    .category-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(255, 255, 255, 0.94), rgba(241, 250, 245, 0.86) );
    }

    /* Card ka actual content image ke upar rahega */
    .category-card > * {
        position: relative;
        z-index: 2;
    }


    /* Hover */
    .category-card:hover {
        transform: translateY(-6px);
        border-color: var(--green);
        box-shadow: 0 12px 28px rgba(36, 149, 85, 0.16);
    }

        .category-card:hover::before {
            opacity: 0.24;
            transform: scale(1.08);
        }


/* Icon */
.category-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.12);
}


/* Heading */
.category-card h3 {
    color: var(--green);
    margin-bottom: 6px;
}


/* Description */
.category-card p {
    font-size: 0.85rem;
    color: #707c75;
    line-height: 1.5;
}
/* =====================================================
   FEATURE NUMBER
===================================================== */

.feature-card {
    position: relative;
}

.feature-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(36, 149, 85, 0.35);
    margin-bottom: 6px;
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    border-top: 3px solid var(--green);
    box-shadow: 0 4px 12px rgba(36, 149, 85, 0.06);
}

.testimonial-text {
    font-size: 0.92rem;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green-dark);
}

.author-location {
    font-size: 0.78rem;
    color: #999;
}


/* =====================================================
   CTA BANNER
===================================================== */

.cta-banner {
    background: linear-gradient( 135deg, var(--green-dark), var(--green) );
    text-align: center;
    padding: 70px 24px;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255,255,255,0.88);
    margin-bottom: 24px;
}

/*///////////////////////*/
/* ================================
   ABOUT PAGE
================================ */

.about-hero {
    min-height: 360px;
    background-image: url('/images/nursery-board.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-hero-overlay {
    min-height: 360px;
    background: linear-gradient( rgba(0, 60, 35, 0.68), rgba(0, 60, 35, 0.68) );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero-content {
    color: white;
}

    .about-hero-content h1 {
        font-size: 55px;
        margin: 0 0 10px;
        font-weight: 700;
    }

    .about-hero-content p {
        font-size: 20px;
        margin-bottom: 25px;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

    .breadcrumb a {
        color: white;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }


/* ================================
   COMMON CONTAINER
================================ */

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ================================
   WHO WE ARE
================================ */

.about-intro {
    padding: 80px 0;
    background: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

    .section-label span {
        color: #16834c;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .section-label i {
        width: 35px;
        height: 2px;
        background: #16834c;
        display: block;
    }

.about-text h2 {
    font-size: 38px;
    color: #172238;
    margin: 0 0 20px;
}

.about-text > p {
    color: #5d6572;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* ================================
   FEATURES
================================ */

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 28px;
    width: 45px;
    text-align: center;
}

.feature-item h4 {
    margin: 0;
    font-size: 14px;
    color: #172238;
}

.feature-item p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #777;
}


/* ================================
   ABOUT IMAGE
================================ */

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        height: 430px;
        object-fit: cover;
        border-radius: 18px;
        display: block;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

    .image-badge span {
        font-size: 27px;
    }

    .image-badge strong {
        display: block;
        color: #172238;
    }

    .image-badge small {
        color: #777;
    }


/* ================================
   NHB RECOGNITION
================================ */

.recognition-section {
    padding: 80px 0;
    background: #f6fbf7;
}

.recognition-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 20px 25px;
}

.certificate-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  
}

.recognition-content h2 {
    color: #172238;
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 20px;
    padding: 20px 25px;
}

.recognition-content > p {
    color: #5d6572;
    line-height: 1.8;
    font-size: 16px;
    padding: 20px 25px;
}

.recognition-quote {
    margin-top: 25px;
    padding: 20px 25px;
    background: #e7f6eb;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

    .recognition-quote span {
        font-size: 45px;
        color: #16834c;
        line-height: 0.8;
    }

    .recognition-quote p {
        color: #356447;
        font-style: italic;
        line-height: 1.6;
    }


/* ================================
   STATISTICS
================================ */

.about-stats {
    padding: 45px 0;
    background: #f8faf9;
}

.stats-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: white;
    border-radius: 14px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.stat-card h3 {
    color: #16834c;
    font-size: 32px;
    margin: 0;
}

.stat-card p {
    color: #68727b;
    margin: 5px 0 0;
}


/* ================================
   MISSION
================================ */

.mission-section {
    padding: 90px 20px;
    background: linear-gradient( rgba(224, 247, 231, 0.95), rgba(224, 247, 231, 0.95) );
    text-align: center;
}

.mission-content {
    max-width: 850px;
    margin: auto;
}

.center-label {
    justify-content: center;
}

.mission-content h2 {
    font-size: 38px;
    color: #172238;
    margin: 10px 0 15px;
}

.mission-content > p {
    color: #5d6572;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mission-button {
    display: inline-block;
    background: #16834c;
    color: white;
    text-decoration: none;
    padding: 13px 25px;
    border-radius: 7px;
    font-weight: 600;
    transition: 0.3s;
}

    .mission-button:hover {
        background: #0e673b;
        color: white;
        transform: translateY(-2px);
    }


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .about-container,
    .recognition-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }
}


@media (max-width: 600px) {

    .about-intro,
    .recognition-section {
        padding: 55px 0;
    }

    .about-text h2,
    .recognition-content h2 {
        font-size: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .about-hero {
        min-height: 300px;
    }

    .about-hero-overlay {
        min-height: 300px;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p {
        font-size: 16px;
    }
}
/*

_______________________________________*/
/* =====================================================
   PREMIUM FEATURE CARDS
   ===================================================== */

.feature-card {
    position: relative;
    overflow: hidden;
    /* Premium green background */
    background: linear-gradient( 135deg, #176d3d 0%, #249555 55%, #2eaa68 100% );
    color: #ffffff;
    border: none;
    border-top: 4px solid #b9f2cd;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 10px 30px rgba(23, 109, 61, 0.20);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


    /* Soft decorative glow */
    .feature-card::before {
        content: "";
        position: absolute;
        width: 160px;
        height: 160px;
        top: -80px;
        right: -60px;
        background: rgba(255, 255, 255, 0.10);
        border-radius: 50%;
        transition: transform 0.4s ease;
    }


    /* Second decorative circle */
    .feature-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        bottom: -55px;
        left: -40px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 50%;
    }


    /* Keep content above decoration */
    .feature-card > * {
        position: relative;
        z-index: 2;
    }


    /* Number */
    .feature-card .feature-num {
        color: rgba(255, 255, 255, 0.75);
        font-size: 1.7rem;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }


    /* Heading */
    .feature-card h3 {
        color: #ffffff;
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 12px;
    }


    /* Description */
    .feature-card p {
        color: rgba(255, 255, 255, 0.90);
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0;
    }


    /* Hover Effect */
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(23, 109, 61, 0.30);
    }


        /* Glow animation on hover */
        .feature-card:hover::before {
            transform: scale(1.35);
        }


/* =====================================================
   FEATURE GRID SPACING
   ===================================================== */

.feature-grid {
    gap: 26px;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .feature-card {
        padding: 26px 22px;
    }

        .feature-card h3 {
            font-size: 1.2rem;
        }

        .feature-card p {
            font-size: 0.9rem;
        }
}
/*
_________________________________________________________________*/
/* =====================================================
   PREMIUM TESTIMONIAL CARDS
   Same Green Theme as Feature Cards
   ===================================================== */

.testimonial-card {
    position: relative;
    overflow: hidden;
    /* Same premium green gradient */
    background: linear-gradient( 135deg, #176d3d 0%, #249555 55%, #2eaa68 100% );
    color: #ffffff;
    border: none;
    border-top: 4px solid #b9f2cd;
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 10px 30px rgba(23, 109, 61, 0.20);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


    /* =====================================================
   DECORATIVE GLOW
   ===================================================== */

    .testimonial-card::before {
        content: "";
        position: absolute;
        width: 160px;
        height: 160px;
        top: -80px;
        right: -60px;
        background: rgba(255, 255, 255, 0.10);
        border-radius: 50%;
        transition: transform 0.4s ease;
    }


    .testimonial-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        bottom: -55px;
        left: -40px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 50%;
    }


    /* Content upar rahe */
    .testimonial-card > * {
        position: relative;
        z-index: 2;
    }


/* =====================================================
   TESTIMONIAL TEXT
   ===================================================== */

.testimonial-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 22px;
    font-style: italic;
}


/* =====================================================
   AUTHOR AREA
   ===================================================== */

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}


/* =====================================================
   AVATAR
   ===================================================== */

.avatar-circle {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 2px solid rgba(255, 255, 255, 0.70);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}


/* =====================================================
   AUTHOR NAME
   ===================================================== */

.author-name {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 3px;
}


/* =====================================================
   LOCATION
   ===================================================== */

.author-location {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.78rem;
    margin: 0;
}


/* =====================================================
   HOVER EFFECT
   ===================================================== */

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(23, 109, 61, 0.30);
}


    .testimonial-card:hover::before {
        transform: scale(1.35);
    }


    /* Avatar hover */
    .testimonial-card:hover .avatar-circle {
        background: rgba(255, 255, 255, 0.22);
        transform: scale(1.05);
        transition: 0.3s ease;
    }


/* =====================================================
   TESTIMONIAL GRID
   ===================================================== */

.testimonial-grid {
    gap: 26px;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .testimonial-card {
        padding: 25px 22px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-name {
        font-size: 0.9rem;
    }
}
/*
Updaates==========================*/
/* =====================================================
   PREMIUM CATEGORY CARDS
   Same Green Theme
   ===================================================== */

.category-card {
    position: relative;
    overflow: hidden;
    /* Same premium green gradient */
    background: linear-gradient( 135deg, #176d3d 0%, #249555 55%, #2eaa68 100% );
    color: #ffffff;
    border: none;
    border-top: 4px solid #b9f2cd;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(23, 109, 61, 0.20);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


    /* =====================================================
   DECORATIVE GREEN CARD GLOW
   ===================================================== */

    .category-card::before {
        content: "";
        position: absolute;
        inset: auto;
        width: 160px;
        height: 160px;
        top: -80px;
        right: -60px;
        background: rgba(255, 255, 255, 0.10);
        border-radius: 50%;
        opacity: 1;
        transition: transform 0.4s ease;
    }


    /* Bottom decorative circle */
    .category-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        bottom: -55px;
        left: -40px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 50%;
        opacity: 1;
    }


    /* =====================================================
   CONTENT ABOVE DECORATION
   ===================================================== */

    .category-card > * {
        position: relative;
        z-index: 2;
    }


/* =====================================================
   CATEGORY ICON
   ===================================================== */

.category-icon {
    font-size: 2.6rem;
    margin-bottom: 14px;
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}


/* =====================================================
   CATEGORY HEADING
   ===================================================== */

.category-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}


/* =====================================================
   CATEGORY DESCRIPTION
   ===================================================== */

.category-card p {
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}


/* =====================================================
   HOVER EFFECT
   ===================================================== */

.category-card:hover {
    transform: translateY(-8px);
    border-color: #b9f2cd;
    box-shadow: 0 18px 40px rgba(23, 109, 61, 0.30);
}


    /* Glow movement */
    .category-card:hover::before {
        transform: scale(1.35);
    }


    /* Icon hover */
    .category-card:hover .category-icon {
        transform: scale(1.15);
    }


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .category-card {
        padding: 26px 20px;
    }

    .category-icon {
        font-size: 2.3rem;
    }

    .category-card h3 {
        font-size: 1.15rem;
    }

    .category-card p {
        font-size: 0.85rem;
    }
}
/*===========================================================================================Update2*/
/* =====================================================
   ROYAL GARDEN NURSERY - ABOUT PAGE
   ===================================================== */

.nursery-about-page {
    --green-dark: #123524;
    --green: #2d6a45;
    --green-light: #eaf5ed;
    --lime: #8dbb62;
    --cream: #f7f5ed;
    --white: #ffffff;
    --text: #243229;
    --muted: #68756c;
    --border: #dfe7df;
    --shadow: 0 20px 60px rgba(20, 50, 30, 0.10);
    color: var(--text);
    background: #ffffff;
    overflow: hidden;
}


    /* =====================================================
   COMMON
   ===================================================== */

    .nursery-about-page *,
    .nursery-about-page *::before,
    .nursery-about-page *::after {
        box-sizing: border-box;
    }

.section-padding {
    padding: 100px 7%;
}

.section-container {
    width: min(1200px, 90%);
    margin: auto;
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

    .section-title h2,
    .stats-heading h2 {
        margin: 0;
        color: var(--green-dark);
        font-size: clamp(34px, 5vw, 58px);
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

        .section-title h2 span,
        .stats-heading h2 span,
        .about-intro-grid h2 span,
        .quality-heading h2 span,
        .about-final-cta h2 span {
            color: var(--green);
        }

    .section-title p {
        max-width: 650px;
        margin: 20px auto 0;
        color: var(--muted);
        line-height: 1.8;
    }


/* =====================================================
   MARKET TICKER
   ===================================================== */

.nursery-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 13px 0;
    background: var(--green-dark);
    color: white;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: nurseryTicker 28s linear infinite;
}

    .ticker-track span {
        display: inline-flex;
        align-items: center;
        margin-right: 55px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        white-space: nowrap;
    }

@keyframes nurseryTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =====================================================
   HERO
   ===================================================== */

.nursery-about-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 100px 7%;
    background: linear-gradient(90deg, rgba(8, 34, 20, .94) 0%, rgba(8, 34, 20, .80) 42%, rgba(8, 34, 20, .25) 75%, rgba(8, 34, 20, .10) 100%), url('/images/about-nursery.jpg') center/cover no-repeat, linear-gradient(135deg, #214d34, #6d9a62);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(150, 200, 120, .22), transparent 35%);
}

.nursery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    background: rgba(255,255,255,.10);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ed56e;
    box-shadow: 0 0 0 5px rgba(158,213,110,.15);
}

.nursery-hero-content .about-eyebrow {
    color: #b8d997;
}

.nursery-hero-content h1 {
    margin: 0;
    color: white;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .98;
    letter-spacing: -3px;
}

    .nursery-hero-content h1 strong {
        display: block;
        color: #b8d997;
        font-weight: 700;
    }

.hero-description {
    max-width: 670px;
    margin: 30px 0;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nursery-primary-btn,
.nursery-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

.nursery-primary-btn {
    background: var(--lime);
    color: #102719;
}

    .nursery-primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0,0,0,.18);
    }

.nursery-secondary-btn {
    border: 1px solid rgba(255,255,255,.35);
    color: white;
    background: rgba(255,255,255,.08);
}

    .nursery-secondary-btn:hover {
        background: white;
        color: var(--green-dark);
    }

.hero-bottom-info {
    position: absolute;
    z-index: 3;
    right: 7%;
    bottom: 40px;
    display: flex;
    gap: 45px;
    padding: 20px 30px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
    color: white;
}

    .hero-bottom-info div {
        display: flex;
        flex-direction: column;
    }

    .hero-bottom-info strong {
        font-size: 25px;
    }

    .hero-bottom-info span {
        margin-top: 5px;
        color: rgba(255,255,255,.65);
        font-size: 11px;
    }


/* =====================================================
   INTRODUCTION
   ===================================================== */

.about-intro-grid {
    width: min(1150px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

    .about-intro-grid h2 {
        margin: 0;
        color: var(--green-dark);
        font-size: clamp(35px, 4vw, 55px);
        line-height: 1.08;
    }

.heading-line {
    width: 80px;
    height: 4px;
    margin-top: 30px;
    border-radius: 5px;
    background: var(--lime);
}

.intro-content p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.intro-content .large-text {
    color: var(--green-dark);
    font-size: 22px;
    line-height: 1.6;
}


/* =====================================================
   STATS
   ===================================================== */

.nursery-stats-section {
    padding: 100px 0;
    background: var(--cream);
}

.stats-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.nursery-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nursery-stat-card {
    padding: 35px 25px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    box-shadow: var(--shadow);
    transition: .3s ease;
}

    .nursery-stat-card:hover {
        transform: translateY(-7px);
    }

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: var(--green-light);
    font-size: 21px;
}

.nursery-stat-card strong {
    display: block;
    color: var(--green-dark);
    font-size: 35px;
}

.nursery-stat-card span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}


/* =====================================================
   NHB RECOGNITION
   ===================================================== */

.recognition-section {
    background: white;
}

.recognition-container {
    width: min(1150px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 90px;
    align-items: center;
}

.recognition-content h2 {
    margin: 0 0 25px;
    color: var(--green-dark);
    font-size: clamp(35px, 4vw, 58px);
    line-height: 1.08;
}

    .recognition-content h2 span {
        color: var(--green);
    }

.recognition-content p {
    color: var(--muted);
    line-height: 1.9;
}

.recognition-date {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.recognition-date-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-weight: bold;
}

.recognition-date div:last-child {
    display: flex;
    flex-direction: column;
}

.recognition-date span {
    margin-top: 4px;
    color: var(--muted);
}

.recognition-card {
    position: relative;
    min-height: 380px;
    padding: 35px;
    border-radius: 16px;
    background: linear-gradient(145deg, #f4f7ed, #dfead7);
    box-shadow: 0 30px 70px rgba(26,70,40,.15);
    overflow: hidden;
}

    .recognition-card::before {
        position: absolute;
        content: "NHB";
        right: -30px;
        top: 70px;
        color: rgba(45,106,69,.05);
        font-size: 150px;
        font-weight: 900;
    }

.certificate-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.certificate-star {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 25px;
}

.certificate-middle {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    text-align: center;
}

    .certificate-middle small {
        color: var(--muted);
        font-size: 11px;
        letter-spacing: 3px;
    }

    .certificate-middle strong {
        margin: 10px 0;
        color: var(--green-dark);
        font-size: 65px;
        line-height: 1;
    }

    .certificate-middle span {
        color: var(--green);
        font-weight: 700;
    }

.certificate-bottom {
    position: absolute;
    right: 35px;
    bottom: 30px;
    left: 35px;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(18,53,36,.15);
}

    .certificate-bottom span {
        color: var(--muted);
        font-size: 12px;
    }

    .certificate-bottom strong {
        color: var(--green-dark);
    }


/* =====================================================
   NURSERY DETAILS
   ===================================================== */

.nursery-details-section {
    background: var(--cream);
}

.details-grid {
    width: min(1150px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.detail-card {
    position: relative;
    min-height: 230px;
    padding: 30px;
    border-radius: 10px;
    background: white;
    overflow: hidden;
    transition: .3s ease;
}

    .detail-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.detail-number {
    margin-bottom: 30px;
    color: var(--lime);
    font-size: 13px;
    font-weight: 900;
}

.detail-card span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.detail-card h3 {
    margin: 10px 0;
    color: var(--green-dark);
    font-size: 21px;
    line-height: 1.35;
}

.detail-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}


/* =====================================================
   VARIETIES
   ===================================================== */

.varieties-section {
    background: white;
}

.variety-grid {
    width: min(1150px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.variety-card {
    position: relative;
    min-height: 340px;
    padding: 30px 22px;
    border-radius: 12px;
    overflow: hidden;
    transition: .35s ease;
}

.mango-card {
    background: linear-gradient(150deg, #f7f6df, #e6eed7);
}

.pear-card {
    background: linear-gradient(150deg, #eff5dc, #d9e9d1);
}

.variety-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(20,60,30,.14);
}

.variety-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(18,53,36,.25);
    font-size: 12px;
    font-weight: 800;
}

.variety-symbol {
    font-size: 45px;
    margin: 20px 0 25px;
}

.variety-card > span {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.variety-card h3 {
    margin: 7px 0 30px;
    color: var(--green-dark);
    font-size: 28px;
}

.variety-info {
    position: absolute;
    right: 22px;
    bottom: 25px;
    left: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(18,53,36,.15);
}

    .variety-info div {
        display: flex;
        flex-direction: column;
    }

    .variety-info small {
        color: var(--muted);
        font-size: 9px;
        line-height: 1.3;
    }

    .variety-info strong {
        margin-top: 5px;
        color: var(--green-dark);
        font-size: 18px;
    }


/* =====================================================
   QUALITY
   ===================================================== */

.quality-section {
    background: var(--green-dark);
    color: white;
}

.quality-grid {
    width: min(1150px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.quality-heading .about-eyebrow {
    color: #a8ca83;
}

.quality-heading h2 {
    margin: 0 0 25px;
    color: white;
    font-size: clamp(35px, 4vw, 58px);
    line-height: 1.08;
}

.quality-heading p {
    color: rgba(255,255,255,.65);
    line-height: 1.8;
}

.quality-list {
    display: grid;
    gap: 10px;
}

.quality-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.quality-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(174,209,132,.35);
    border-radius: 50%;
    color: #b7d891;
    font-size: 12px;
    font-weight: 800;
}

.quality-item h3 {
    margin: 0 0 7px;
    font-size: 19px;
}

.quality-item p {
    margin: 0;
    color: rgba(255,255,255,.58);
    line-height: 1.7;
}


/* =====================================================
   JOURNEY
   ===================================================== */

.journey-section {
    background: var(--cream);
}

.journey-timeline {
    width: min(850px, 100%);
    margin: auto;
    position: relative;
}

    .journey-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 25px;
        width: 1px;
        background: #cbd9cb;
    }

.journey-item {
    position: relative;
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 30px;
    padding-bottom: 45px;
}

.journey-dot {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid #bdd0bd;
    border-radius: 50%;
    background: var(--cream);
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.journey-content {
    padding: 5px 0;
}

    .journey-content > span {
        color: var(--green);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 2px;
    }

    .journey-content h3 {
        margin: 7px 0 10px;
        color: var(--green-dark);
        font-size: 25px;
    }

    .journey-content p {
        margin: 0;
        color: var(--muted);
        line-height: 1.8;
    }


/* =====================================================
   WHY US
   ===================================================== */

.why-us-section {
    background: white;
}

.why-us-grid {
    width: min(1150px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    padding: 35px 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: .3s ease;
}

    .why-card:hover {
        border-color: #b9ceb9;
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: var(--green-light);
    font-size: 23px;
}

.why-card h3 {
    margin: 0 0 12px;
    color: var(--green-dark);
    font-size: 20px;
}

.why-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 14px;
}


/* =====================================================
   FINAL CTA
   ===================================================== */

.about-final-cta {
    position: relative;
    padding: 110px 7%;
    text-align: center;
    background: radial-gradient(circle at 50% 0, rgba(144,190,100,.22), transparent 35%), var(--green-dark);
}

.cta-content {
    max-width: 750px;
    margin: auto;
}

    .cta-content .about-eyebrow {
        color: #a8ca83;
    }

.about-final-cta h2 {
    margin: 0;
    color: white;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
}

.about-final-cta p {
    max-width: 600px;
    margin: 25px auto 35px;
    color: rgba(255,255,255,.68);
    line-height: 1.8;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {

    .variety-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .details-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nursery-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recognition-container {
        gap: 50px;
    }
}


@media (max-width: 800px) {

    .section-padding {
        padding: 70px 6%;
    }

    .nursery-about-hero {
        min-height: 650px;
        padding: 80px 6%;
    }

    .nursery-hero-content h1 {
        letter-spacing: -2px;
    }

    .hero-bottom-info {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 70px;
        width: 100%;
        gap: 20px;
        justify-content: space-between;
    }

    .about-intro-grid,
    .recognition-container,
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .variety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 550px) {

    .nursery-about-hero {
        min-height: 720px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .nursery-primary-btn,
    .nursery-secondary-btn {
        width: 100%;
    }

    .hero-bottom-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 15px;
    }

        .hero-bottom-info strong {
            font-size: 19px;
        }

        .hero-bottom-info span {
            font-size: 9px;
        }

    .nursery-stats-grid,
    .details-grid,
    .variety-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .recognition-card {
        min-height: 340px;
    }

    .certificate-middle strong {
        font-size: 55px;
    }

    .journey-item {
        grid-template-columns: 45px 1fr;
        gap: 20px;
    }

    .journey-dot {
        width: 45px;
        height: 45px;
    }

    .journey-timeline::before {
        left: 22px;
    }
}
/*================================================= Mission*/
/* =====================================================
   MISSION PAGE
===================================================== */

* {
    box-sizing: border-box;
}

.mission-container {
    width: min(1180px, 90%);
    margin: auto;
}

.small-title {
    display: inline-block;
    margin-bottom: 14px;
    color: #56864e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =====================================================
   HERO
===================================================== */

.mission-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 6%;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at 15% 80%, rgba(129, 177, 104, .25), transparent 28%), radial-gradient(circle at 85% 20%, rgba(180, 215, 155, .18), transparent 30%), linear-gradient(135deg, #173a23, #285b35 55%, #4d7e49);
}

    .mission-hero::before {
        content: "";
        position: absolute;
        width: 480px;
        height: 480px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 50%;
        right: -170px;
        top: -170px;
    }

    .mission-hero::after {
        content: "";
        position: absolute;
        width: 330px;
        height: 330px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 50%;
        left: -130px;
        bottom: -130px;
    }

.mission-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.mission-tag {
    display: inline-block;
    padding: 9px 18px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 40px;
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.mission-hero h1 {
    margin: 0;
    color: white;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1.05;
    font-weight: 800;
}

    .mission-hero h1 span {
        display: block;
        color: #d6efc6;
    }

.mission-hero p {
    max-width: 730px;
    margin: 28px auto 0;
    color: rgba(255,255,255,.86);
    font-size: 18px;
    line-height: 1.8;
}

.mission-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}


/* =====================================================
   BUTTON
===================================================== */

.mission-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

.mission-btn-primary {
    background: #ffffff;
    color: #275331;
}

    .mission-btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,0,0,.16);
        color: #1d4126;
    }

.mission-btn-outline {
    border: 1px solid rgba(255,255,255,.55);
    color: white;
    background: rgba(255,255,255,.08);
}

    .mission-btn-outline:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.18);
        color: white;
    }


/* =====================================================
   COMPANY MISSION
===================================================== */

.company-mission {
    padding: 100px 0;
    background: white;
}

.mission-heading {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

    .mission-heading h2 {
        margin: 0 0 18px;
        color: #1b3d24;
        font-size: 45px;
        line-height: 1.15;
    }

        .mission-heading h2 span {
            color: #56874e;
        }

    .mission-heading p {
        color: #68756c;
        font-size: 17px;
        line-height: 1.8;
    }

.company-mission-content {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 60px;
    align-items: center;
}

.mission-text h3 {
    margin-bottom: 20px;
    color: #203f28;
    font-size: 30px;
}

.mission-text p {
    margin-bottom: 18px;
    color: #66736a;
    font-size: 16px;
    line-height: 1.9;
}

.mission-highlight {
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    background: #f1f7ed;
    border: 1px solid #dfebda;
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 18px;
}

.mission-highlight h3 {
    color: #24452b;
    font-size: 23px;
}

.mission-highlight p {
    color: #5f7064;
    font-size: 17px;
    line-height: 1.8;
}


/* =====================================================
   ENVIRONMENT
===================================================== */

.environment-section {
    padding: 100px 0;
    background: #f4f8f1;
}

.environment-heading {
    max-width: 760px;
    margin: auto auto 55px;
    text-align: center;
}

    .environment-heading h2 {
        margin: 0 0 18px;
        color: #1d3d25;
        font-size: 44px;
    }

        .environment-heading h2 span {
            color: #56874e;
        }

    .environment-heading p {
        color: #657268;
        line-height: 1.8;
    }

.environment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.environment-card {
    position: relative;
    padding: 32px 25px;
    border-radius: 20px;
    background: white;
    border: 1px solid #e1e9df;
    transition: .3s ease;
}

    .environment-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 40px rgba(38,75,42,.09);
    }

.environment-number {
    color: #7ba271;
    font-size: 13px;
    font-weight: 800;
}

.environment-icon {
    margin: 18px 0;
    font-size: 34px;
}

.environment-card h3 {
    margin: 0 0 12px;
    color: #24452b;
    font-size: 20px;
}

.environment-card p {
    margin: 0;
    color: #6a766d;
    line-height: 1.7;
}


/* =====================================================
   POLICY
===================================================== */

.policy-section {
    padding: 105px 0;
    background: #193b24;
}

.policy-content {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.policy-left h2 {
    margin: 0 0 22px;
    color: white;
    font-size: 46px;
    line-height: 1.15;
}

    .policy-left h2 span {
        color: #ccebbd;
    }

.policy-left p {
    margin-bottom: 18px;
    color: rgba(255,255,255,.75);
    line-height: 1.85;
}

.policy-right {
    display: grid;
    gap: 16px;
}

.policy-card {
    padding: 25px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.07);
}

.policy-card-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.policy-card h3 {
    margin: 0 0 8px;
    color: white;
    font-size: 21px;
}

.policy-card p {
    margin: 0 0 12px;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.policy-label {
    display: inline-block;
    color: #cce7be;
    font-size: 12px;
    font-weight: 700;
}

.policy-note {
    margin-top: 55px;
    padding: 22px 25px;
    border-left: 4px solid #a8cf95;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.75);
    line-height: 1.7;
}

    .policy-note strong {
        color: white;
    }


/* =====================================================
   FUTURE
===================================================== */

.future-mission {
    padding: 100px 0;
    background: white;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.future-item {
    padding: 32px 25px;
    border-radius: 20px;
    border: 1px solid #e3eae1;
    background: #fbfdfb;
    transition: .3s ease;
}

    .future-item:hover {
        transform: translateY(-7px);
        box-shadow: 0 15px 35px rgba(35,72,40,.08);
    }

.future-icon {
    display: block;
    margin-bottom: 18px;
    font-size: 34px;
}

.future-item h3 {
    margin: 0 0 12px;
    color: #24442b;
    font-size: 20px;
}

.future-item p {
    margin: 0;
    color: #68746b;
    line-height: 1.7;
}


/* =====================================================
   HAPPY CUSTOMERS
===================================================== */

.happy-section {
    padding: 100px 0;
    background: #eef6e9;
}

.happy-heading {
    max-width: 750px;
    margin: auto auto 55px;
    text-align: center;
}

    .happy-heading h2 {
        margin: 0 0 18px;
        color: #1c3c24;
        font-size: 44px;
    }

        .happy-heading h2 span {
            color: #57874f;
        }

    .happy-heading p {
        color: #66736a;
        line-height: 1.8;
    }

.happy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.happy-card {
    padding: 38px 30px;
    text-align: center;
    background: white;
    border-radius: 22px;
    border: 1px solid #dfebdb;
}

.happy-icon {
    margin-bottom: 18px;
    font-size: 40px;
}

.happy-card h3 {
    margin: 0 0 12px;
    color: #23442a;
}

.happy-card p {
    margin: 0;
    color: #68756c;
    line-height: 1.7;
}


/* =====================================================
   PRE ORDER
===================================================== */

.preorder-section {
    padding: 90px 0;
    background: white;
}

.preorder-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    align-items: center;
    padding: 55px;
    overflow: hidden;
    border-radius: 28px;
    background: #285b35;
}

.preorder-content {
    position: relative;
    z-index: 2;
}

    .preorder-content .small-title {
        color: #cce9bd;
    }

    .preorder-content h2 {
        margin: 0 0 18px;
        color: white;
        font-size: 42px;
    }

        .preorder-content h2 span {
            display: block;
            color: #d5efc7;
        }

    .preorder-content p {
        max-width: 650px;
        margin-bottom: 28px;
        color: rgba(255,255,255,.78);
        line-height: 1.8;
    }

.preorder-visual {
    position: relative;
    min-height: 220px;
}

.visual-circle {
    position: absolute;
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 60px;
    top: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    font-size: 75px;
}

    .visual-circle.small {
        width: 90px;
        height: 90px;
        right: 20px;
        top: 125px;
        font-size: 38px;
    }

    .visual-circle.tiny {
        width: 65px;
        height: 65px;
        right: 180px;
        top: 145px;
        font-size: 28px;
    }


/* =====================================================
   MODERN
===================================================== */

.modern-section {
    padding: 100px 0;
    background: #f7faf5;
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.modern-card {
    padding: 30px 25px;
    border-radius: 20px;
    background: white;
    border: 1px solid #e3eae1;
    transition: .3s ease;
}

    .modern-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 16px 35px rgba(35,72,40,.08);
    }

.modern-icon {
    margin-bottom: 18px;
    font-size: 34px;
}

.modern-card h3 {
    margin: 0 0 12px;
    color: #24452b;
    font-size: 20px;
}

.modern-card p {
    margin: 0;
    color: #68746b;
    line-height: 1.7;
}


/* =====================================================
   FINAL
===================================================== */

.final-mission {
    padding: 110px 6%;
    text-align: center;
    background: linear-gradient(135deg, #173a23, #315f38);
}

.final-mission-content {
    max-width: 800px;
    margin: auto;
}

.final-mission .small-title {
    color: #ccebbd;
}

.final-mission h2 {
    margin: 0 0 20px;
    color: white;
    font-size: 50px;
    line-height: 1.1;
}

    .final-mission h2 span {
        display: block;
        color: #d7f0c8;
    }

.final-mission p {
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.8;
}

.final-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .environment-grid,
    .future-grid,
    .modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-mission-content,
    .policy-content,
    .preorder-box {
        grid-template-columns: 1fr;
    }

    .preorder-visual {
        display: none;
    }

    .policy-content {
        gap: 45px;
    }
}


@media (max-width: 700px) {

    .mission-hero {
        min-height: 580px;
        padding: 60px 5%;
    }

        .mission-hero h1 {
            font-size: 43px;
        }

        .mission-hero p {
            font-size: 16px;
        }

    .mission-heading h2,
    .environment-heading h2,
    .happy-heading h2,
    .policy-left h2 {
        font-size: 34px;
    }

    .company-mission,
    .environment-section,
    .policy-section,
    .future-mission,
    .happy-section,
    .modern-section {
        padding: 70px 0;
    }

    .environment-grid,
    .future-grid,
    .modern-grid,
    .happy-grid {
        grid-template-columns: 1fr;
    }

    .preorder-box {
        padding: 35px 25px;
    }

    .preorder-content h2 {
        font-size: 34px;
    }

    .final-mission {
        padding: 80px 5%;
    }

        .final-mission h2 {
            font-size: 38px;
        }
}
/*======================================================= Director massesge*/
/* =====================================================
   DIRECTOR MESSAGE PAGE
===================================================== */

* {
    box-sizing: border-box;
}

.director-container {
    width: min(1180px, 90%);
    margin: auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #56844d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =====================================================
   HERO
===================================================== */

.director-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 6%;
    text-align: center;
    background: radial-gradient( circle at 80% 20%, rgba(170, 210, 145, .20), transparent 30% ), radial-gradient( circle at 15% 80%, rgba(110, 160, 95, .22), transparent 30% ), linear-gradient( 135deg, #173921, #285a34 55%, #477744 );
}

.director-hero-pattern {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    right: -250px;
    top: -250px;
}

.director-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.director-eyebrow {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.director-hero h1 {
    margin: 0;
    color: white;
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1.05;
    font-weight: 800;
}

    .director-hero h1 span {
        display: block;
        color: #d4edc4;
    }

.director-hero p {
    max-width: 730px;
    margin: 28px auto 0;
    color: rgba(255,255,255,.84);
    font-size: 18px;
    line-height: 1.8;
}


/* =====================================================
   DIRECTOR INTRO
===================================================== */

.director-intro {
    padding: 105px 0;
    background: white;
}

.director-intro-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 75px;
    align-items: center;
}

.director-profile {
    text-align: center;
}

.profile-shape {
    width: 260px;
    height: 320px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 130px 130px 35px 35px;
    background: linear-gradient( 145deg, #eaf5e4, #d6e9cf );
    box-shadow: 0 25px 60px rgba(37,76,43,.12);
}

.profile-leaf {
    font-size: 80px;
    margin-bottom: 15px;
}

.profile-text {
    color: #4d7646;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.director-profile h3 {
    margin: 25px 0 5px;
    color: #213f28;
    font-size: 24px;
}

.director-profile span {
    color: #6a766c;
    font-size: 14px;
}

.director-message h2 {
    margin: 0 0 25px;
    color: #1d3c24;
    font-size: 46px;
    line-height: 1.15;
}

    .director-message h2 span {
        color: #56844d;
    }

.director-message p {
    color: #657269;
    font-size: 16px;
    line-height: 1.9;
}

.director-signature {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 3px solid #73a168;
}

    .director-signature span,
    .director-signature strong,
    .director-signature small {
        display: block;
    }

    .director-signature span {
        color: #718075;
        margin-bottom: 5px;
    }

    .director-signature strong {
        color: #294b30;
        font-size: 21px;
    }

    .director-signature small {
        margin-top: 4px;
        color: #768278;
    }


/* =====================================================
   CUSTOMER MESSAGE
===================================================== */

.customer-message {
    padding: 100px 0;
    background: #f3f8f0;
}

.customer-message-heading {
    max-width: 760px;
    margin: auto auto 55px;
    text-align: center;
}

    .customer-message-heading h2 {
        margin: 0 0 18px;
        color: #1d3c24;
        font-size: 44px;
    }

        .customer-message-heading h2 span {
            color: #56844d;
        }

    .customer-message-heading p {
        color: #68756c;
        line-height: 1.8;
    }

.customer-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.customer-point {
    padding: 38px 30px;
    text-align: center;
    border-radius: 22px;
    background: white;
    border: 1px solid #e0e9dd;
    transition: .3s ease;
}

    .customer-point:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 40px rgba(35,72,40,.09);
    }

.point-icon {
    margin-bottom: 18px;
    font-size: 42px;
}

.customer-point h3 {
    margin: 0 0 12px;
    color: #25452c;
    font-size: 21px;
}

.customer-point p {
    margin: 0;
    color: #68746b;
    line-height: 1.7;
}


/* =====================================================
   LATEST PLANTS
===================================================== */

.latest-plants {
    padding: 105px 0;
    background: white;
}

.latest-heading {
    max-width: 760px;
    margin: auto auto 55px;
    text-align: center;
}

    .latest-heading h2 {
        margin: 0 0 18px;
        color: #1d3c24;
        font-size: 44px;
    }

        .latest-heading h2 span {
            color: #56844d;
        }

    .latest-heading p {
        color: #69756c;
        line-height: 1.8;
    }

.latest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.latest-card {
    position: relative;
    padding: 30px 25px;
    border-radius: 20px;
    background: #f8fbf7;
    border: 1px solid #e1eae0;
    transition: .3s ease;
}

    .latest-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 40px rgba(36,75,42,.09);
    }

.latest-icon {
    margin-bottom: 18px;
    font-size: 35px;
}

.latest-card h3 {
    margin: 0 0 12px;
    color: #24442b;
    font-size: 20px;
}

.latest-card p {
    margin: 0 0 20px;
    color: #69756c;
    line-height: 1.7;
}

.latest-card span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #66915d;
}


/* =====================================================
   QUALITY
===================================================== */

.quality-section {
    padding: 105px 0;
    background: #193b24;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.quality-content h2 {
    margin: 0 0 22px;
    color: white;
    font-size: 45px;
    line-height: 1.15;
}

    .quality-content h2 span {
        color: #d0eabb;
    }

.quality-content p {
    color: rgba(255,255,255,.74);
    line-height: 1.85;
}

.quality-content .section-label {
    color: #c8e5ba;
}

.director-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    margin-top: 18px;
    border-radius: 50px;
    background: white;
    color: #285431;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

    .director-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,.15);
        color: #1d4025;
    }

.quality-list {
    display: grid;
    gap: 14px;
}

.quality-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
}

    .quality-item > div {
        color: #bdddac;
        font-weight: 800;
    }

    .quality-item h3 {
        margin: 0 0 7px;
        color: white;
        font-size: 19px;
    }

    .quality-item p {
        margin: 0;
        color: rgba(255,255,255,.65);
        line-height: 1.6;
    }


/* =====================================================
   PROMISE
===================================================== */

.promise-section {
    padding: 105px 5%;
    background: #edf6e9;
}

.promise-box {
    max-width: 900px;
    margin: auto;
    padding: 70px 45px;
    text-align: center;
    border-radius: 30px;
    background: white;
    box-shadow: 0 20px 60px rgba(39,79,44,.08);
}

.promise-leaf {
    font-size: 48px;
    margin-bottom: 18px;
}

.promise-box h2 {
    margin: 0 0 20px;
    color: #1d3c24;
    font-size: 43px;
    line-height: 1.15;
}

    .promise-box h2 span {
        display: block;
        color: #56844d;
    }

.promise-box > p {
    max-width: 680px;
    margin: auto;
    color: #68756c;
    line-height: 1.8;
}

.promise-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

    .promise-points span {
        padding: 10px 17px;
        border-radius: 30px;
        background: #edf6e9;
        color: #42683e;
        font-size: 13px;
        font-weight: 700;
    }


/* =====================================================
   PRE ORDER
===================================================== */

.preorder-section {
    padding: 90px 0;
    background: white;
}

.preorder-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 50px;
    align-items: center;
    padding: 55px;
    border-radius: 28px;
    background: #f2f7ef;
    border: 1px solid #dfe9db;
}

    .preorder-grid h2 {
        margin: 0 0 15px;
        color: #1e3d25;
        font-size: 39px;
    }

        .preorder-grid h2 span {
            color: #57874e;
        }

    .preorder-grid p {
        max-width: 680px;
        margin: 0;
        color: #68756c;
        line-height: 1.8;
    }


/* =====================================================
   CONTACT
===================================================== */

.director-contact {
    padding: 100px 0;
    background: #f7faf5;
}

.contact-heading {
    text-align: center;
    margin-bottom: 50px;
}

    .contact-heading h2 {
        margin: 0;
        color: #1d3c24;
        font-size: 43px;
    }

        .contact-heading h2 span {
            color: #56844d;
        }

.contact-grid {
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    padding: 35px;
    text-align: center;
    border-radius: 20px;
    background: white;
    border: 1px solid #e2e9e0;
}

.contact-icon {
    margin-bottom: 15px;
    font-size: 34px;
}

.contact-card h3 {
    margin: 0 0 15px;
    color: #26452d;
}

.contact-card a {
    display: block;
    margin: 7px 0;
    color: #56844d;
    text-decoration: none;
    font-weight: 600;
}

    .contact-card a:hover {
        text-decoration: underline;
    }

.contact-card p {
    margin-top: 14px;
    color: #768178;
    font-size: 13px;
}


/* =====================================================
   BANK
===================================================== */

.bank-section {
    padding: 90px 0;
    background: white;
}

.bank-box {
    max-width: 900px;
    margin: auto;
    padding: 50px;
    border-radius: 25px;
    background: #f7faf5;
    border: 1px solid #dfe8dc;
}

.bank-heading {
    text-align: center;
    margin-bottom: 35px;
}

    .bank-heading h2 {
        margin: 0 0 15px;
        color: #1d3c24;
        font-size: 38px;
    }

        .bank-heading h2 span {
            color: #56844d;
        }

    .bank-heading p {
        max-width: 650px;
        margin: auto;
        color: #69756c;
        line-height: 1.7;
    }

.bank-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.bank-detail {
    padding: 25px;
    border-radius: 15px;
    background: white;
    border: 1px solid #e1e9df;
}

    .bank-detail span {
        display: block;
        margin-bottom: 10px;
        color: #789078;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .bank-detail strong {
        color: #24452b;
        font-size: 19px;
        word-break: break-word;
    }

.bank-warning {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 17px;
    border-radius: 12px;
    background: #fff8e8;
}

    .bank-warning span {
        font-size: 20px;
    }

    .bank-warning p {
        margin: 0;
        color: #766846;
        font-size: 13px;
        line-height: 1.6;
    }


/* =====================================================
   FINAL
===================================================== */

.final-director {
    padding: 110px 6%;
    text-align: center;
    background: linear-gradient( 135deg, #173a22, #315f39 );
}

.final-director-content {
    max-width: 800px;
    margin: auto;
}

.final-director .section-label {
    color: #cce7bd;
}

.final-director h2 {
    margin: 0 0 20px;
    color: white;
    font-size: 52px;
    line-height: 1.1;
}

    .final-director h2 span {
        display: block;
        color: #d6efc6;
    }

.final-director p {
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.8;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .director-intro-grid,
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preorder-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .director-container {
        width: 90%;
    }

    .director-hero {
        min-height: 520px;
        padding: 60px 5%;
    }

        .director-hero h1 {
            font-size: 43px;
        }

        .director-hero p {
            font-size: 16px;
        }

    .director-intro,
    .customer-message,
    .latest-plants,
    .quality-section,
    .director-contact {
        padding: 70px 0;
    }

    .director-message h2,
    .customer-message-heading h2,
    .latest-heading h2,
    .quality-content h2 {
        font-size: 34px;
    }

    .customer-points,
    .latest-grid,
    .contact-grid,
    .bank-details {
        grid-template-columns: 1fr;
    }

    .promise-section {
        padding: 70px 5%;
    }

    .promise-box {
        padding: 45px 25px;
    }

        .promise-box h2 {
            font-size: 34px;
        }

    .preorder-grid {
        padding: 35px 25px;
    }

        .preorder-grid h2 {
            font-size: 32px;
        }

    .bank-box {
        padding: 30px 20px;
    }

    .final-director {
        padding: 80px 5%;
    }

        .final-director h2 {
            font-size: 39px;
        }
}
/*====================footerupdate*/
/* =====================================================
   PREMIUM FOOTER
===================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #123b22, #1d5930 55%, #285f37 );
    color: white;
}


.footer-container {
    position: relative;
    z-index: 2;
    width: min(1180px, 90%);
    margin: auto;
    padding: 70px 0 25px;
}


/* =====================================================
   FOOTER TOP
===================================================== */

.footer-top {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
    gap: 45px;
}


/* =====================================================
   COMPANY
===================================================== */

.footer-company {
    padding-right: 20px;
}


.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}


.footer-logo {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    font-size: 28px;
}


.footer-brand h2 {
    margin: 0;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.1;
}


.footer-brand span {
    display: block;
    margin-top: 4px;
    color: #c9e6bd;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.footer-company > p {
    margin: 0;
    max-width: 350px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.8;
}


.footer-tagline {
    margin-top: 20px;
    color: #d5edc9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


    .footer-tagline span {
        margin: 0 7px;
        color: rgba(255,255,255,.4);
    }


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 12px;
    color: white;
    font-size: 16px;
    font-weight: 800;
}


    .footer-column h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 35px;
        height: 2px;
        background: #9dcc8b;
    }


/* =====================================================
   ADDRESS
===================================================== */

.footer-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}


.footer-info-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(255,255,255,.10);
    font-size: 18px;
}


.footer-info p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.7;
}


.footer-info strong {
    color: white;
}


.footer-map-link {
    display: inline-flex;
    margin-top: 17px;
    padding: 9px 14px;
    border-radius: 30px;
    background: rgba(255,255,255,.10);
    color: #d3edc7;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: .3s ease;
}


    .footer-map-link:hover {
        background: white;
        color: #205631;
        transform: translateY(-2px);
    }


/* =====================================================
   CONTACT PEOPLE
===================================================== */

.footer-contact-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}


    .footer-contact-person > span {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.10);
        font-size: 16px;
    }


    .footer-contact-person strong {
        display: block;
        margin-bottom: 3px;
        color: white;
        font-size: 13px;
    }


    .footer-contact-person a {
        color: #cce7c1;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
    }


        .footer-contact-person a:hover {
            color: white;
            text-decoration: underline;
        }


/* =====================================================
   EMAIL
===================================================== */

.footer-email {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
    padding: 11px 12px;
    border-radius: 11px;
    background: rgba(255,255,255,.07);
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: .3s ease;
}


    .footer-email:hover {
        background: rgba(255,255,255,.14);
        transform: translateX(4px);
        color: white;
    }


    .footer-email span {
        word-break: break-all;
    }


.footer-email-note {
    margin-top: 17px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    line-height: 1.6;
}


/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {
    width: 100%;
    height: 1px;
    margin: 45px 0 23px;
    background: linear-gradient( to right, transparent, rgba(255,255,255,.2), transparent );
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


    .footer-bottom p {
        margin: 0 0 4px;
        color: rgba(255,255,255,.65);
        font-size: 11px;
    }


        .footer-bottom p strong {
            color: white;
        }


    .footer-bottom > div:first-child > span {
        color: rgba(255,255,255,.4);
        font-size: 10px;
    }


.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}


    .footer-links a {
        color: rgba(255,255,255,.68);
        text-decoration: none;
        font-size: 11px;
        transition: .3s ease;
    }


        .footer-links a:hover {
            color: white;
        }


    .footer-links span {
        color: rgba(255,255,255,.25);
        font-size: 10px;
    }


/* =====================================================
   DECORATIVE LEAVES
===================================================== */

.footer-leaves {
    width: 100%;
    padding: 10px 0 7px;
    text-align: center;
    color: rgba(196,228,184,.25);
    font-size: 20px;
    letter-spacing: 15px;
    background: rgba(0,0,0,.12);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}


@media (max-width: 650px) {

    .footer-container {
        width: 90%;
        padding-top: 55px;
    }


    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .footer-company {
        padding-right: 0;
    }


        .footer-company > p {
            max-width: 100%;
        }


    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }


    .footer-links {
        flex-wrap: wrap;
    }
}


@media (max-width: 400px) {

    .footer-brand h2 {
        font-size: 21px;
    }


    .footer-email {
        font-size: 11px;
    }
}



/*=====================================*/
/* =====================================================
   HOME HERO - 5 IMAGE SLIDER
===================================================== */

.hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}


/* -----------------------------------------
   SLIDER
----------------------------------------- */

.home-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}


/* -----------------------------------------
   EACH SLIDE
----------------------------------------- */

.home-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.8s ease-in-out;
}


    /* -----------------------------------------
   SLIDE IMAGE
----------------------------------------- */

    .home-hero-slide img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }


    /* -----------------------------------------
   ACTIVE IMAGE
----------------------------------------- */

    .home-hero-slide.active {
        opacity: 1;
        z-index: 1;
    }


/* -----------------------------------------
   GREEN OVERLAY
----------------------------------------- */

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(5, 55, 28, 0.82), rgba(15, 95, 45, 0.55), rgba(20, 110, 55, 0.20) );
}


/* -----------------------------------------
   CONTENT ABOVE SLIDER
----------------------------------------- */

.hero-content {
    position: relative;
    z-index: 5;
}


/* -----------------------------------------
   MOBILE
----------------------------------------- */

@media (max-width: 800px) {

    .hero {
        min-height: 520px;
    }

    .home-hero-slide img {
        object-position: center;
    }

    .home-hero-overlay {
        background: linear-gradient( 90deg, rgba(5, 55, 28, 0.88), rgba(15, 95, 45, 0.65) );
    }
}


/* -----------------------------------------
   SMALL MOBILE
----------------------------------------- */

@media (max-width: 500px) {

    .hero {
        min-height: 550px;
    }
}
.mission-hero {
    min-height: 450px;
    background-image: linear-gradient( rgba(0, 55, 30, 0.65), rgba(0, 55, 30, 0.65) ), url('/Images/slider6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #05f95b;
    position: relative;
}
/*=========================*/
/* =========================================================
   ROYAL GARDEN - INQUIRY POPUP
   ========================================================= */


/* ---------------------------------------------------------
   BODY LOCK WHEN POPUP IS OPEN
--------------------------------------------------------- */

body.popup-open {
    overflow: hidden;
}


/* ---------------------------------------------------------
   MAIN POPUP WRAPPER
--------------------------------------------------------- */

.inquiry-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}


    /* ---------------------------------------------------------
   POPUP SHOW
--------------------------------------------------------- */

    .inquiry-popup.show {
        visibility: visible;
        opacity: 1;
    }


/* ---------------------------------------------------------
   DARK BACKGROUND
--------------------------------------------------------- */

.inquiry-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 35, 20, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


/* ---------------------------------------------------------
   POPUP BOX
--------------------------------------------------------- */

.inquiry-popup-box {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    min-height: 500px;
    display: grid;
    grid-template-columns: 42% 58%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s ease;
}


/* ---------------------------------------------------------
   POPUP ANIMATION
--------------------------------------------------------- */

.inquiry-popup.show .inquiry-popup-box {
    transform: translateY(0) scale(1);
}


/* ---------------------------------------------------------
   LEFT IMAGE
--------------------------------------------------------- */

.inquiry-popup-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: var(--green-dark);
}


    .inquiry-popup-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.7s ease;
    }


.inquiry-popup.show .inquiry-popup-image img {
    transform: scale(1.04);
}


/* ---------------------------------------------------------
   IMAGE DARK GREEN OVERLAY
--------------------------------------------------------- */

.inquiry-popup-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(8, 40, 23, 0.88), rgba(8, 40, 23, 0.08) 65% );
}


/* ---------------------------------------------------------
   IMAGE BRAND
--------------------------------------------------------- */

.inquiry-image-overlay {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #ffffff;
}


    .inquiry-image-overlay span {
        display: block;
        font-size: 32px;
        margin-bottom: 8px;
    }


    .inquiry-image-overlay strong {
        display: block;
        font-size: 25px;
        font-weight: 800;
        letter-spacing: 0.3px;
    }


    .inquiry-image-overlay small {
        display: block;
        margin-top: 4px;
        color: rgba(255,255,255,0.78);
        font-size: 13px;
        letter-spacing: 1px;
    }


/* ---------------------------------------------------------
   RIGHT CONTENT
--------------------------------------------------------- */

.inquiry-popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 55px 45px;
    background: #ffffff;
}


/* ---------------------------------------------------------
   SMALL TITLE
--------------------------------------------------------- */

.inquiry-small-title {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 13px;
    border-radius: 30px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    margin-bottom: 18px;
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.inquiry-popup-content h2 {
    margin: 0 0 16px;
    color: #173b25;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.12;
    letter-spacing: -1.2px;
    font-weight: 800;
}


    .inquiry-popup-content h2 span {
        color: var(--green);
        display: inline;
    }


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.inquiry-popup-content > p {
    margin: 0;
    max-width: 520px;
    color: #68756c;
    font-size: 15px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   FEATURES
--------------------------------------------------------- */

.inquiry-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}


.inquiry-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e1eee5;
    border-radius: 12px;
    background: #f8fcf9;
}


    .inquiry-feature > span {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #eaf7ef;
        font-size: 18px;
    }


    .inquiry-feature strong {
        display: block;
        color: var(--green-dark);
        font-size: 12px;
        margin-bottom: 2px;
    }


    .inquiry-feature small {
        display: block;
        color: #7a857e;
        font-size: 10px;
        line-height: 1.4;
    }


/* ---------------------------------------------------------
   INQUIRY BUTTON
--------------------------------------------------------- */

.inquiry-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 390px;
    min-height: 54px;
    padding: 0 20px 0 24px;
    border-radius: 9px;
    background: linear-gradient( 135deg, var(--green-dark), var(--green) );
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 25px rgba(36,149,85,0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}


    .inquiry-button strong {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        font-size: 18px;
        transition: transform 0.25s ease;
    }


    .inquiry-button:hover {
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(36,149,85,0.30);
    }


        .inquiry-button:hover strong {
            transform: translateX(4px);
        }


/* ---------------------------------------------------------
   BOTTOM NOTE
--------------------------------------------------------- */

.inquiry-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 390px;
    margin-top: 13px;
}


    .inquiry-note > span {
        color: var(--green);
        font-size: 14px;
        font-weight: 800;
    }


    .inquiry-note p {
        margin: 0;
        color: #8a938d;
        font-size: 11px;
        line-height: 1.5;
    }


/* ---------------------------------------------------------
   CLOSE BUTTON
--------------------------------------------------------- */

.inquiry-close {
    position: absolute;
    z-index: 10;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #365143;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}


    .inquiry-close:hover {
        background: var(--green);
        color: #ffffff;
        transform: rotate(90deg);
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .inquiry-popup {
        padding: 15px;
    }


    .inquiry-popup-box {
        grid-template-columns: 1fr;
        width: min(560px, 100%);
        max-height: 90vh;
        overflow-y: auto;
    }


    .inquiry-popup-image {
        min-height: 190px;
        height: 190px;
    }


    .inquiry-image-overlay {
        left: 22px;
        bottom: 18px;
    }


        .inquiry-image-overlay span {
            font-size: 24px;
            margin-bottom: 4px;
        }


        .inquiry-image-overlay strong {
            font-size: 20px;
        }


    .inquiry-popup-content {
        padding: 35px 30px 30px;
    }


        .inquiry-popup-content h2 {
            font-size: 32px;
        }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .inquiry-popup {
        padding: 10px;
    }


    .inquiry-popup-box {
        border-radius: 17px;
        max-height: 92vh;
    }


    .inquiry-popup-image {
        min-height: 145px;
        height: 145px;
    }


    .inquiry-image-overlay {
        left: 18px;
        bottom: 15px;
    }


        .inquiry-image-overlay span {
            font-size: 20px;
            margin-bottom: 2px;
        }


        .inquiry-image-overlay strong {
            font-size: 17px;
        }


        .inquiry-image-overlay small {
            font-size: 10px;
        }


    .inquiry-close {
        width: 34px;
        height: 34px;
        top: 9px;
        right: 9px;
        font-size: 23px;
    }


    .inquiry-popup-content {
        padding: 27px 20px 25px;
    }


    .inquiry-small-title {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 6px 10px;
        margin-bottom: 13px;
    }


    .inquiry-popup-content h2 {
        font-size: 27px;
        letter-spacing: -0.6px;
        margin-bottom: 12px;
    }


    .inquiry-popup-content > p {
        font-size: 13px;
        line-height: 1.65;
    }


    .inquiry-features {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 18px 0;
    }


    .inquiry-feature {
        padding: 9px;
    }


    .inquiry-button {
        min-height: 50px;
        font-size: 13px;
    }


    .inquiry-note {
        margin-top: 10px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .inquiry-popup-image {
        min-height: 125px;
        height: 125px;
    }


    .inquiry-popup-content {
        padding: 23px 17px;
    }


        .inquiry-popup-content h2 {
            font-size: 24px;
        }


        .inquiry-popup-content > p {
            font-size: 12px;
        }
}