/* --- Basic Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}


/* TOP HEADER */

/* Ensure links in the top bar inherit the white color and remove underline */
.contact-info a.info-item {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a.info-item:hover {
    opacity: 0.8;
}

#instaicon {
    font-size: 22px;
}

/* Maintain the layout for the anchor tags */
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar {
    background-color: #124A2F;
    color: #FFFFFF;
    padding: 16px 0;
    /* Adjust vertical height */
}

.container {
    max-width: 1300px;
    /* Adjust based on your Figma grid */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.contact-info {
    display: flex;
    gap: 30px;
    /* Space between phone, time, and email */
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between icon and text */
}

.info-item span {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.info-item i {
    font-size: 16px;
    opacity: 0.9;
}

.social-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* --- Responsive Behavior --- */

/* Mobile (Under 600px): Hide the section entirely */
@media (max-width: 600px) {
    .top-bar {
        display: none;
    }
}

/* Tablet (Between 601px and 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .contact-info {
        gap: 15px;
        /* Tighter gap for smaller screens */
    }

    .info-item span {
        font-size: 10px;
        /* Slightly smaller text */
    }
}


/* MAIN HEADER */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #ffffff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: end;
    gap: 10px;
}

.logo img {
    width: 50px;
}

.logo h2 {
    font-size: 20px;
    font-family: papyrus;
    font-weight: bold;
    /* line-height: 1.3; */
    color: #17521a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 300;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #2A7D2E;

}

.contact-btn {
    background: #2A7D2E;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #3fa345;
}

/* --- Responsive & Hamburger Styles --- */

/* Hidden on Desktop */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* TABLET & MOBILE VIEW (Below 992px) */
@media screen and (max-width: 992px) {
    .navbar {
        padding: 15px 20px;
        /* Reduce padding on smaller screens */
    }

    .logo h2 {
        font-size: 16px;
        /* Slightly smaller text for mobile */
    }

    .menu-toggle {
        display: block;
        /* Show hamburger icon */
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        position: absolute;
        top: 100%;
        /* Sits right below the navbar */
        left: 0;
        text-align: center;
        gap: 0;
        max-height: 0;
        /* Hidden by default */
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    /* When JS adds the .active class */
    .nav-links.active {
        max-height: 400px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        display: block;
        border-bottom: 1px solid #f1f1f1;
    }

    /* Button styling inside the mobile menu */
    .contact-btn {
        border-radius: 0;
        width: 100%;
        background: #2A7D2E;
    }
}

/* MOBILE SPECIFIC (Small phones) */
@media screen and (max-width: 480px) {

    /* .logo h2 br {
        display: none;
       
    } */
    .logo .logovdo {
        width: 180px;
        height: 65px;
    }
}

/* HERO SECTION */
/* HERO */
.hero-section {
    position: relative;
    height: 80vh;
    /* Reduced height as requested */
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

/* Dark Overlay to protect text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(18, 29, 14, 0.644) 40%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 2;
}

/* Typography & Content Styling */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.hero-subtitle {
    color: #ffffff;
    font-weight: 600;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight {
    color: #56cc4c;
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Call to Action Buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #2A7D2E;
    color: white;
}

.btn-primary:hover {
    background-color: #3d9341;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #0f172a;
    transform: translateY(-2px);
}

/* Background Slider Machinery */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Styles for the inline images within slides */
.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Mimics background-size: cover */
    object-position: center;
    /* Mimics background-position: center */
}

/* Middle Bottom Progress Indicator Container */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

/* Individual Progress Bar Track */
.indicator-bar {
    width: 60px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

/* Dynamic filling progress visual */
.indicator-progress {
    width: 0%;
    height: 100%;
    background-color: #38bdf8;
    position: absolute;
    top: 0;
    left: 0;
}

/* Trigger fluid filling animation via active class */
.indicator-bar.active .indicator-progress {
    width: 100%;
    transition: width 5000ms linear;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 5%;
        justify-content: center;
        text-align: center;
    }

    .hero-subtitle{
        text-align: left;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: left;
        margin-top: 10px;
    }

    .hero-description{
        text-align: left;
        font-size: 12px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-cta-group .btn{
        width: 145px;
        font-size: 12px;
        word-spacing: 2px;
    }

    .hero-overlay {
        background: rgba(15, 23, 42, 0.75);
    }

    .hero-indicators {
        bottom: 30px;
    }
}

/* SERVICES */
.services {
    background: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;

}

.services-box {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 1100px;
    text-align: center;

    /* SHADOW EXACT STYLE */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: -160px;
}

.services-box h2 {
    font-size: 60px;
    font-family: papyrus;
    color: #2A7D2E;
    margin-bottom: 0px;
    font-weight: lighter;
}

.subtitle {
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 5%;
    color: #7b7b7b;
    margin-bottom: 80px;
}

/* CARDS */
.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card {
    flex: 1;
    text-align: center;
}

.card i {
    font-size: 40px;
    color: #2A7D2E;
    margin-bottom: 15px;
}

.card h3 {
    color: #124A2F;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 400;
    margin-bottom: 10px;
}

.card p {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

/* READ BUTTON */
.read-btn {
    background: #2A7D2E;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.read-btn:hover {
    background: #3fa345;
}

/* ========================= */
/* 📱 RESPONSIVE DESIGN */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 32px;
        font-weight: bold;
    }

    .service-cards {
        flex-direction: column;
        gap: 30px;
    }

    .services-box {
        margin-top: -80px;
    }

    .services-box {
        margin-top: -220px;
    }

    .subtitle {
        font-size: 18px;
        padding: 0%;
        padding-bottom: 5%;
    }

    .card svg {
        width: 68px;
        height: auto;
    }

    .card h3 {
        font-size: 22px;
        font-weight: 200;
    }

    .card p {
        font-size: 22px;
    }


}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        height: 70vh;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 19px;
        margin-top: 6%;
        
    }

    .contact-btn-herosec {
        padding: 10px 18px;
    }

    .services-box {
        padding: 30px 20px;
        margin-top: -60px;
    }

    .services-box h2 {
        font-size: 28px;
    }

    .services-box {
        margin-top: -140px;
    }

    .section-header .subtitle {
        font-size: 12px;
        padding: 0%;
    }

    .card svg {
        width: 45px;
        height: auto;
    }

    .card h3 {
        font-size: 14px;
        font-weight: 200;
    }

    .card p {
        font-size: 10px;
    }
}

/* GARDEN MAINTENANCE SECTION  */

.maintenance-section {
    font-family: 'Inter', sans-serif;
    background-color: #F8F7F5;
    /* Matches the subtle off-white background in image */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maintenance-card {
    background: #ffffff;
    width: 100%;
    max-width: 1450px;
    padding: 60px 40px;
    border-radius: 40px;
    /* High radius as per design */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    text-align: center;
}

/* Header Text */
.section-header h1 {
    color: #2A7D2E;
    font-weight: lighter;
    font-family: papyrus;
    /* Light weight as per design */
    font-size: 45px;
    margin-bottom: 0px;
}

.subtitle {
    color: #7b7b7b;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-header_Sec p {
    color: #7b7b7b;
    text-align: center;
    width: 800px;
    font-size: 14px;
    margin: 0 auto;
    margin-bottom: 60px;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-item h3 {
    color: #124A2F;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.service-item p {
    color: #7b7b7b;
    font-size: 13px;
    line-height: 1.5;
    padding: 0 10px;
}

/* Footer Section */
.maintenance-footer p {
    color: #7b7b7b;
    font-size: 16px;
    margin-bottom: 25px;
}

.estimate-btn {
    display: inline-block;
    background-color: #2A7D2E;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Requested Hover Effect: Same color but lighter */
.estimate-btn:hover {
    background-color: #3fa345;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 125, 46, 0.3);
}

/* --- RESPONSIVE DESIGN --- */
/* Tablet (Under 768px) */
@media (max-width: 768px) {
    .maintenance-card {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .section-header h1 {
        font-size: 32px;
    }

    .icon svg {
        width: 68px;
        height: auto;
    }

    .service-item h3 {
        font-size: 18px;
    }



}

/* Mobile (Under 480px) */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h1 {
        font-size: 28px;
    }

    .maintenance-footer p {
        font-size: 14px;
    }

    .estimate-btn {
        width: auto;
        /* Full width button on mobile */
        padding: 15px 10px;
    }

    .service-item p {
        color: #7b7b7b;
        font-size: 10px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .icon svg {
        width: 52px;
        height: auto;
    }

    .service-item h3 {
        font-size: 14px;
    }

    .maintenance-footer p {
        font-size: 10px;
    }

    .estimate-btn {
        display: inline-block;
        background-color: #2A7D2E;
        color: #ffffff;
        text-decoration: none;
        padding: 12px 20px;
        border-radius: 30px;
        font-size: 10px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .section-header h1 {
        color: #2A7D2E;
        font-weight: lighter;
        font-family: papyrus;
        /* Light weight as per design */
        font-size: 26px;
        margin-bottom: 0px;
    }


}

/* GARDEN DESIGN SECTION */

/* --- Garden Design Section --- */
.garden-design {
    position: relative;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    padding: 100px 20px;
    overflow: hidden;
    /* Keeps doodles inside */
    display: flex;
    justify-content: center;
}

/* LEAF DOODLE EFFECT 
   Note: Replace 'leaf-pattern.png' with your actual transparent doodle image */


.design-container {
    position: relative;
    z-index: 2;
    /* Sits above the doodles */
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

/* Header Styling */
.design-header h1 {
    color: #2A7D2E;
    font-family: papyrus;
    font-weight: lighter;
    font-size: 45px;
    margin-bottom: 0px;
}

.tagline {
    font-size: 14px;
    color: #7b7b7b;
    margin-bottom: 0px;
}

.description {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #7b7b7b;
}

.services-title {
    font-family: papyrus;
    font-size: 18px;
    font-weight: 600;
    color: #2A7D2E;
    margin-bottom: 40px;
}

/* Grid Layout */
.design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.design-item h3 {
    color: #124A2F;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.design-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    padding: 0 10px;
}

/* Footer Section */
.design-footer p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #7b7b7b;
}

.consultation-btn {
    display: inline-block;
    background-color: #2A7D2E;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hover State: Lighter Green */
.consultation-btn:hover {
    background-color: #3fa345;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 125, 46, 0.25);
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet */
@media (max-width: 768px) {
    .design-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 50px;
    }

    .garden-design {
        padding: 60px 20px;
    }

    .description {
        padding: 0 20px;
    }


}

/* Mobile */
@media (max-width: 480px) {
    .design-header h1 {
        font-size: 32px;
    }

    .consultation-btn {
        width: 100%;
        padding: 18px 10px;
    }

    .doodle-overlay {
        background-size: 400px;
        /* Smaller pattern for mobile */
    }

    .design-header h1 {
        color: #2A7D2E;
        font-family: papyrus;
        font-weight: lighter;
        font-size: 26px;
        margin-bottom: 0px;
    }

    .tagline {
        font-size: 12px;
    }

    .description {
        font-size: 12px;
    }

    .design-item h3 {
        color: #124A2F;
        font-size: 17px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .design-footer p {
        font-size: 12px;
    }

    .consultation-btn {
        width: auto;
        background-color: #2A7D2E;
        color: #ffffff;
        text-decoration: none;
        padding: 12px 20px;
        border-radius: 30px;
        font-size: 10px;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* GARDEN INSTALLATION SECTION */


/* GALLERY 2SECTION*/
.gallery-slider-section {
    padding: 80px 0;
    background: #fff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.gallery-header h1 {
    font-family: papyrus;
    color: #124A2F;
    font-weight: 300;
    font-size: 42px;
    margin-bottom: 60px;
}

.slider-container {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1500px;
}

.slide-item {
    position: absolute;
    width: 610px;
    height: 450px;
    left: 50%;
    margin-left: -305px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Hidden by default, JS will reveal via pos classes */
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 3D PERSPECTIVE POSITIONS - Visible Classes */
.pos-1,
.pos-2,
.pos-3,
.pos-4,
.pos-5 {
    opacity: 1;
    /* This makes the images appear */
}

/* Far Left */
.pos-1 {
    transform: translateX(-550px) scale(0.7) rotateY(30deg);
    z-index: 1;
    opacity: 0.3;
}

/* Mid Left */
.pos-2 {
    transform: translateX(-350px) scale(0.85) rotateY(20deg);
    z-index: 2;
    opacity: 0.7;
}

/* CENTER ACTIVE */
.pos-3 {
    transform: translateX(0) scale(1) rotateY(0);
    z-index: 3;
    opacity: 1;
    pointer-events: auto;
}

/* Mid Right */
.pos-4 {
    transform: translateX(350px) scale(0.85) rotateY(-20deg);
    z-index: 2;
    opacity: 0.7;
}

/* Far Right */
.pos-5 {
    transform: translateX(550px) scale(0.7) rotateY(-30deg);
    z-index: 1;
    opacity: 0.3;
}

/* CONTROLS */
.controls {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}

.ctrl-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #333;
    background: #fff;
    cursor: pointer;
    font-size: 24px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.ctrl-btn:hover {
    background: #2A7D2E;
    color: white;
    border-color: #2A7D2E;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .slide-item {
        width: 500px;
        margin-left: -250px;
    }

    .pos-1 {
        transform: translateX(-400px) scale(0.7);
    }

    .pos-5 {
        transform: translateX(400px) scale(0.7);
    }
}

@media (max-width: 768px) {

    /* 1. Set Heading to exactly 26px */
    .gallery-header h1 {
        font-size: 26px;
        margin-bottom: 30px;
        /* Reduced gap under heading */
    }

    /* 2. Pull the container height in so buttons sit right under the image */
    .slider-container {
        height: 380px;
    }

    .slide-item {
        width: 85%;
        margin-left: -42.5%;
        height: 280px;
    }

    /* 3. Smaller Buttons for Mobile */
    .ctrl-btn {
        width: 40px;
        /* Small, elegant circles */
        height: 40px;
        font-size: 16px;
        /* Smaller arrow icons */
        border-width: 1px;
    }

    /* 4. Adjusting the 3D peeking images for narrow screens */
    .pos-1,
    .pos-5 {
        display: none;
    }

    .pos-2 {
        transform: translateX(-60px) scale(0.8);
        opacity: 0.3;
    }

    .pos-4 {
        transform: translateX(60px) scale(0.8);
        opacity: 0.3;
    }

    /* 5. Tighten the gap between image and buttons */
    .controls {
        margin-top: 5px;
        gap: 20px;
    }
}

/* Extra Small Phones (e.g. iPhone SE) */
@media (max-width: 480px) {
    .slider-container {
        height: 320px;
        /* Even tighter for very small screens */
    }

    .slide-item {
        height: 220px;
    }

    .gallery-header h1 {
        font-size: 26px;
        /* Keep consistent at 26px */
    }
}

/* ABOUT US SECTION */
.about-section {
    padding: 120px 0;
    background-color: #fcfcf9;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    align-items: center;
}

/* Left Side Container */
.about-header-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    /* Centers text relative to the leaf */
    align-items: center;
    min-height: 250px;
}

/* The Leaf in the Backside */
.bg-leaf {
    position: absolute;
    width: 300px;
    /* Slightly larger to frame the text */
    height: auto;
    z-index: 1;
    pointer-events: none;
    /* Centering the SVG behind the content */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header-content {
    position: relative;
    z-index: 2;
    /* Sits on top of the leaf */
    text-align: center;
}

/* Papyrus Font Styles */
.papyrus-font {
    font-family: 'Papyrus', 'Palatino Linotype', serif;
    font-size: 42px;
    /* Desktop & Laptop size */
    color: #124A2F;
    margin: 0;
    line-height: 1.1;
    text-transform: capitalize;
}

.header-content .subtitle {
    font-size: 22px;
    color: #333;
    margin: 10px 0 15px 0;
    font-weight: 300;
}

.header-content .signature {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
}

/* Right Side Text */
.about-text-wrapper p {
    font-size: 17.5px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 28px;
}

.about-text-wrapper p strong {
    color: #111;
}

/* --- RESPONSIVE BREAKPOINTS --- */

@media (max-width: 1100px) {
    .about-grid {
        gap: 60px;
    }

    .bg-leaf {
        width: 260px;
    }
}

/* Tablets & Mobile */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    /* Mobile font size for About Us */
    .papyrus-font {
        font-size: 26px;
    }

    .about-text-wrapper p {
        text-align: left;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 70px 0;
    }

    .bg-leaf {
        width: 220px;
    }

    .header-content .subtitle {
        font-size: 18px;
    }

    .about-text-wrapper p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* FAQ'S SECTION */
/* --- Base Styles --- */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    /* Side-by-side for Desktop */
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    /* Gap between Header and FAQs */
}

/* --- Header Styles (Desktop) --- */
.faq-header {
    flex: 1;
    /* Takes up proportional space */
    text-align: left;
}

.papyrus-heading {
    font-family: 'Papyrus', 'Palatino Linotype', serif;
    font-size: 42px;
    color: #124A2F;
    margin: 0;
    text-transform: uppercase;
}

/* --- Accordion Styles (Desktop) --- */
.faq-accordion {
    flex: 1.5;
    /* Accordion is slightly wider than the header */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-toggle {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    color: #333;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #124A2F;
    transition: 0.3s;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 8px;
    left: 0;
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 8px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 30px;
}

.faq-content p {
    font-size: 12px;
}

.faq-toggle {
    font-size: 14px;
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding-bottom: 25px;
}

/* --- TABLET & MOBILE VIEWPORT (Stacked Layout) --- */
@media (max-width: 992px) {
    .faq-wrapper {
        flex-direction: column;
        /* Stacks Header on top of FAQ */
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .faq-header {
        text-align: center;
    }

    /* Keep Heading at requested mobile size */
    .papyrus-heading {
        font-size: 18px;
    }

    .faq-accordion {
        width: 100%;
        /* Full width on tablet/mobile */
        gap: 10px;
    }

    .faq-toggle {
        padding: 15px 20px;
        font-size: 15px;
    }

    .faq-content p {
        font-size: 14px;
        text-align: left;
    }

    .faq-icon {
        width: 14px;
        height: 14px;
    }

    .faq-icon::before {
        top: 6px;
    }

    .faq-icon::after {
        left: 6px;
    }
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-toggle {
        font-size: 10px;
        padding: 15px;
    }

    .faq-content p {
        font-size: 8px;
    }
}


/* FOOTER */
/* --- FOOTER SECTION STYLES --- */
.footer-section {
    font-family: 'Inter', sans-serif;
    /* Use the color/texture derived from image reference #1 */
    background-color: #2D6B3E;
    background-image: url('../assets/media/images/footer.png');
    /* Subtle texture if available */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    position: relative;
    padding-top: 250px;
    /* Space for hanging vines */
    padding-bottom: 0;
    overflow: hidden;
}

/* --- The Hanging Vine Header --- */
.vine-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    /* Adjust height based on your vine asset */
    /* Use the actual asset from your image share #1 */
    background-image: url('assets/media/vine-decoration.png');
    background-repeat: repeat-x;
    /* Repeats horizontally along the top */
    background-position: top center;
    z-index: 10;
}

/* Main Content Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* V-aligns links and map */
    gap: 40px;
}

/* --- Section 1: Logo Block --- */
.footer-logo-block {
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* Space between text and icons */
    max-width: 350px;
}

.logo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 70px;
    /* Adjust logo size */
    width: auto;
}

.company-desc {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* Social Icons (Working Redirects) */
.social-icons {
    display: flex;
    gap: 25px;
}

.social-icons a {
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Lighter green hover from previous section specifications */
.social-icons a:hover {
    color: #3fa345;
    transform: translateY(-3px);
}

/* --- Section 2: Quick Links --- */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    /* Matching the Figma weight */
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3fa345;
}

/* --- Section 3: Interactive Map (Redirects on click) --- */
.footer-map-block {
    position: relative;
    max-width: 350px;
    /* Controls map image width */
}

.map-link {
    display: block;
    cursor: pointer;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    /* Subtle rounding as per image */
    transition: transform 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Decorative Shadow matching Figma style */
.map-shadow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: -1;
    filter: blur(5px);
}

/* Hover Effect: Scale up slightly */
.map-link:hover .map-image {
    transform: scale(1.03);
}

/* --- Copyright Bar --- */
.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle separator */
    padding: 15px 20px;
    text-align: center;
}

.copyright-bar p {
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    opacity: 0.8;
}

/* --- RESPONSIVE BREAKPOINTS (Optimized) --- */

/* 1. Laptops / Small Desktops (max 1024px) */
@media (max-width: 1024px) {
    .footer-container {
        padding: 50px 20px;
        gap: 30px;
    }

    .footer-logo-block {
        max-width: 300px;
    }

    .map-image {
        max-width: 300px;
        /* Reduced width on laptops */
    }
}

/* 2. Tablets / Large Phones (max 768px) */
@media (max-width: 768px) {
    .footer-section {
        padding-top: 80px;
        /* Less top padding for smaller screens */
    }

    .vine-header {
        height: 100px;
    }

    .footer-container {
        flex-direction: column;
        /* Stacks vertically */
        text-align: center;
        padding: 50px 15px;
    }

    .logo-text-wrapper {
        justify-content: center;
        /* Centers logo/text */
    }

    .social-icons {
        justify-content: center;
        /* Centers social icons */
    }

    .footer-nav ul {
        flex-direction: row;
        /* Nav links go horizontal on tablet */
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .footer-map-block {
        margin-top: 30px;
    }
}

/* 3. Small Mobile Devices (max 480px) */
@media (max-width: 480px) {
    .vine-header {
        height: 70px;
    }

    .company-desc {
        font-size: 12px;
        /* Smaller font on phone */
    }

    .footer-nav ul {
        flex-direction: column;
        /* Switch back to vertical list for phones */
        gap: 12px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .social-icons a {
        font-size: 18px;
    }

    .copyright-bar p {
        font-size: 11px;
    }

    .footer-container {


        padding-top: 400px;
        display: flex;
        justify-content: start;
        align-items: center;
        /* V-aligns links and map */
        gap: 40px;
    }
}

/* FIXED ICONS */
.contact-widget {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.widget-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    gap: 12px;
}

/* Label Bubbles */
.widget-label {
    background-color: #f1f3f4;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    /* Hidden by default, shows on hover */
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.widget-item:hover .widget-label {
    opacity: 1;
}

/* Icons styling */
.widget-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.widget-item:hover .widget-icon {
    transform: scale(1.1);
}

/* Specific Colors from reference image */
.whatsapp {
    background-color: #25D366;
}

.call {
    background-color: #1a1f2b;
}

.location {
    background-color: #2962ff;
}

/* Notification Badge on WhatsApp Icon */
.notification-badge {
    position: absolute;
    top: -2px;
    left: -2px;
    background-color: #ff3b30;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Label Text Colors */
.widget-item:nth-child(1) .widget-label {
    color: #25D366;
}

.widget-item:nth-child(2) .widget-label {
    color: #1a1f2b;
}

.widget-item:nth-child(3) .widget-label {
    color: #2962ff;
}

/* Responsive adjustments for Mobile */
@media (max-width: 480px) {
    .contact-widget {
        right: 15px;
        bottom: 20px;
    }

    .widget-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* Always show labels on mobile or hide if too cluttered */
    .widget-label {
        display: none;
    }
}