/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #1e522f;
    --light-green: #2a7542;
    --accent-yellow: #f4c430;
    --text-dark: #222222;
    --text-light: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f9f9f9;
}

/* --- Navbar Styles --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(30, 82, 47, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 24px;
}

/* --- Logo & Tagline --- */
.nav-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.logo-text-green {
    color: var(--primary-green);
    font-size: 1.6rem;
    font-weight: 700;
}

.logo-text-yellow {
    color: var(--accent-yellow);
    font-size: 1.6rem;
    font-weight: 700;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--light-green);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* --- Navigation Desktop Menu --- */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-item {
    position: relative;
    padding: 0 12px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--light-green);
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: var(--transition);
}

/* --- Dropdown Menu --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(30, 82, 47, 0.05);
    color: var(--primary-green);
    padding-left: 25px;
}

/* Show Dropdown on Hover (Desktop) */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* --- CTA Button --- */
.nav-btn-wrapper {
    padding-left: 15px;
}

.nav-btn {
    background: var(--primary-green);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(30, 82, 47, 0.2);
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

/* --- Hamburger Menu Icon --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Responsive Media Queries --- */

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    /* Mobile Drawer */
    .nav-menu {
        position: fixed;
        top: 74px; /* Height of Navbar */
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: var(--text-light);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
        overflow-y: auto;
        transition: 0.4s cubic-bezier(0.1, 1, 0.1, 1);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        font-size: 1.1rem;
        justify-content: space-between;
        width: 100%;
    }

    /* Mobile Dropdown Overrides */
    .dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        width: 100%;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        transform: none;
        visibility: visible;
        opacity: 1;
        transition: max-height 0.3s ease-out;
    }

    .dropdown-menu.open {
        max-height: 300px;
        padding: 5px 0;
    }

    .dropdown-menu li a {
        padding: 10px 15px;
    }

    .nav-item:hover .dropdown-icon {
        transform: none; /* Let JS handle it */
    }

    .nav-btn-wrapper {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    /* Hamburger Animation to 'X' */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}


:root {
    --primary-green: #1e522f;
    --accent-yellow: #f4c430;
    --text-white: #ffffff;
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 85vh; /* Perfect height for laptops, scales dynamically */
    min-height: 500px;
    overflow: hidden;
    margin-top: 74px; /* Compensate for the fixed navbar height */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* --- Slide Base States --- */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scale(1.1);
    transition: var(--transition-slow);
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* --- Slide Content Animations --- */
.slide-content {
    max-width: 800px;
    color: var(--text-white);
    z-index: 10;
}

.slide-badge {
    background: var(--accent-yellow);
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.slide h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s ease 0.4s;
}

.slide p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.6s;
    color: rgba(255, 255, 255, 0.9);
}

.slide-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.8s;
}

/* Active slide reveals inner elements */
.slide.active .slide-badge,
.slide.active .slide-h1, /* Fallback element triggers */
.slide.active h1,
.slide.active p,
.slide.active .slide-actions {
    transform: translateY(0);
    opacity: 1;
}

/* --- Buttons Styles --- */
.btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

.btn-primary:hover {
    background: #e0b324;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-green);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* --- Arrows Interface --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    color: var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 15;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

.slider-arrow.prev { left: 30px; transform: translateY(-50%) rotate(180deg); }
.slider-arrow.next { right: 30px; }

/* --- Pagination Interface --- */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-yellow);
    width: 30px;
    border-radius: 10px;
}

/* --- Responsive Adaptations --- */
@media (max-width: 1200px) {
    .slide h1 { font-size: 2.8rem; }
}

@media (max-width: 992px) {
    .hero-slider-section { height: 70vh; }
    .slide h1 { font-size: 2.3rem; }
    .slider-arrow { display: none; } /* Hide messy arrows on tablets/mobiles */
}

@media (max-width: 576px) {
    .hero-slider-section { height: 80vh; margin-top: 70px; }
    .slide { padding: 0 20px; text-align: center; }
    .slide-content { display: flex; flex-direction: column; align-items: center; }
    .slide h1 { font-size: 1.8rem; margin-bottom: 15px; }
    .slide p { font-size: 0.95rem; margin-bottom: 25px; }
    .slide-actions { width: 100%; flex-direction: column; gap: 10px; }
    .btn { width: 100%; justify-content: center; padding: 12px 20px; }
    .slider-dots { bottom: 20px; }
}

:root {
    --primary-green: #1e522f;
    --light-green: #2a7542;
    --accent-yellow: #f4c430;
    --text-dark: #222222;
    --text-muted: #555555;
    --text-light: #ffffff;
    --transition: all 0.3s ease-in-out;
}

.about-section {
    padding: 100px 24px;
    background-color: #ffffff;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Column: Images Grid --- */
.about-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
}

.img-box {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.img-box:hover img {
    transform: scale(1.05);
}

.main-img {
    width: 70%;
    height: 85%;
    top: 0;
    left: 0;
    border: 4px solid var(--text-light);
}

.sub-img {
    width: 55%;
    height: 60%;
    bottom: 0;
    right: 0;
    border: 6px solid var(--text-light);
    z-index: 2;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.3);
    z-index: 3;
    text-align: center;
    min-width: 140px;
}

.exp-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Right Column: Content styling --- */
.about-content {
    display: flex;
    flex-direction: column;
}

.section-subtitle {
    color: var(--accent-yellow);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    color: var(--primary-green);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-text strong {
    color: var(--primary-green);
}

/* --- Features Grid Styling --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 25px 0 35px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    background: rgba(30, 82, 47, 0.08);
    color: var(--primary-green);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- Action CTA Area --- */
.about-cta-box {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-about-primary {
    background: var(--primary-green);
    color: var(--text-light);
    padding: 14px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 82, 47, 0.15);
}

.btn-about-primary:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.2);
}

.owner-info {
    display: flex;
    flex-direction: column;
}

.owner-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.owner-loc {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* --- Responsive Layout Rules --- */

@media (max-width: 1024px) {
    .about-container { gap: 40px; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 912px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        height: 400px;
        max-width: 550px;
        width: 100%;
        margin: 0 auto;
    }
    
    .experience-badge { left: 0; }
}

@media (max-width: 576px) {
    .about-section { padding: 60px 16px; }
    .section-title { font-size: 1.65rem; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-images { height: 320px; }
    .experience-badge { padding: 12px; min-width: 110px; bottom: 20px; }
    .exp-num { font-size: 1.5rem; }
    .about-cta-box { flex-direction: column; align-items: flex-start; gap: 15px; }
    .btn-about-primary { width: 100%; text-align: center; }
}

:root {
    --primary-green: #1e522f;
    --light-green: #2a7542;
    --accent-yellow: #f4c430;
    --text-dark: #222222;
    --text-muted: #666666;
    --text-light: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.products-section {
    padding: 80px 24px;
    background-color: #f4f7f5;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Header Styles --- */
.products-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    color: var(--accent-yellow);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    color: var(--primary-green);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Filter Styling --- */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid rgba(30, 82, 47, 0.15);
    background: var(--text-light);
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-green);
    color: var(--text-light);
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(30, 82, 47, 0.15);
}

/* --- Product Cards Grid Styling --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(30, 82, 47, 0.1);
}

.product-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
    background: #eaeaea;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-yellow);
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

/* --- Card Body Elements --- */
.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-keyword {
    color: var(--light-green);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 16px;
}

/* Size Pill Tags Layout */
.size-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 24px;
    margin-top: auto;
}

.size-tags span {
    background: #f4f7f5;
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 4px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(30, 82, 47, 0.05);
}

.size-tags span i {
    font-size: 0.7rem;
    margin-right: 2px;
    opacity: 0.8;
}

.size-tags-bulk {
    margin-bottom: 24px;
    margin-top: auto;
}

.size-tags-bulk span {
    display: block;
    background: rgba(244, 196, 48, 0.1);
    color: #b58d07;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
}

/* CTA Card Actions Buttons */
.card-action {
    width: 100%;
}

.btn-quote {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-green);
    color: var(--text-light);
    padding: 12px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-quote:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

.call-btn {
    background: #0275d8;
}
.call-btn:hover {
    background: var(--primary-green);
    color: white;
}

/* --- Layout Responsive Logic --- */
@media (max-width: 768px) {
    .products-section { padding: 60px 16px; }
    .section-title { font-size: 1.85rem; }
    .products-grid { gap: 20px; }
}

:root {
    --primary-green: #1e522f;
    --light-green: #2a7542;
    --accent-yellow: #f4c430;
    --text-dark: #222222;
    --text-muted: #555555;
    --text-light: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-section {
    padding: 100px 24px;
    background-color: #ffffff;
    position: relative;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Title Block --- */
.benefits-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-title {
    color: var(--primary-green);
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Interactive Benefits Cards Grid --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: #fdfdfd;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(30, 82, 47, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Accent design strip on hover */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent-yellow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(30, 82, 47, 0.07);
    border-color: rgba(30, 82, 47, 0.1);
}

.benefit-card:hover::before {
    width: 100%;
}

/* Icon Container Shape */
.benefit-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(30, 82, 47, 0.06);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon-box {
    background: var(--primary-green);
    color: var(--text-light);
    transform: scale(1.05);
}

.benefit-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-keyword {
    color: var(--light-green);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.benefit-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Bottom Micro-Stats Bar --- */
.stats-bar {
    background: var(--primary-green);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 30px rgba(30, 82, 47, 0.15);
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    color: var(--accent-yellow);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* --- Layout Responsive Adaptation Queries --- */

@media (max-width: 992px) {
    .benefits-section { padding: 80px 16px; }
    .section-title { font-size: 1.95rem; }
    .stat-divider { display: none; } /* Drop structural lines for flexible wrapping blocks */
    .stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
}

@media (max-width: 680px) {
    .stats-bar { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .benefit-card { padding: 30px 20px; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.6rem; }
    .benefits-grid { gap: 20px; }
}

:root {
    --primary-green: #1e522f;
    --light-green: #2a7542;
    --accent-yellow: #f4c430;
    --text-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.offer-banner-section {
    position: relative;
    padding: 80px 24px;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 82, 47, 0.15);
}

/* --- Banner Visual Background --- */
.offer-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/offers/offer_banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Dark green gradient overlay to ensure text remains highly readable */
.offer-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 48, 28, 0.95) 40%, rgba(30, 82, 47, 0.329) 100%);
    z-index: 2;
}

.offer-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
    z-index: 3;
}

/* --- Content Block Layout --- */
.offer-content {
    color: var(--text-white);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-yellow);
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.offer-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.offer-description strong {
    color: var(--accent-yellow);
}

/* Perks List Layout */
.offer-perks {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.perk-icon {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    display: flex;
}

.perk-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Actions Call buttons */
.offer-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-offer-primary {
    background: #25d366; /* WhatsApp Branding Color */
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-offer-primary:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-offer-secondary {
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.2);
}

.btn-offer-secondary:hover {
    background: #e0b324;
    transform: translateY(-2px);
}

/* --- Right Side: Discount Sticker Elements --- */
.offer-graphic-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.discount-circle {
    width: 180px;
    height: 180px;
    background: var(--accent-yellow);
    border: 4px dashed var(--primary-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: pulse 2s infinite ease-in-out;
}

.discount-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.discount-value {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 2px 0;
}

.discount-condition {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tagline-tamil {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Subtle graphic attention pulse animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* --- Adaptive Breakpoints (Responsive CSS) --- */

@media (max-width: 1240px) {
    .offer-banner-section { margin: 40px 24px; }
}

@media (max-width: 992px) {
    .offer-title { font-size: 2rem; }
    .offer-container { gap: 30px; }
    .discount-circle { width: 150px; height: 150px; }
    .discount-value { font-size: 1.8rem; }
}

@media (max-width: 820px) {
    /* Stack side layouts vertically on tablets/mobiles */
    .offer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .offer-badge { justify-content: center; }
    
    .offer-perks {
        justify-content: center;
    }
    
    .offer-actions {
        justify-content: center;
    }
    
    .offer-graphic-box {
        grid-row: 1; /* Move coupon badge to top layer of mobile screen stack */
        margin-bottom: 10px;
    }
    
    .tagline-tamil { display: none; } /* Redundant on small viewports */
}

@media (max-width: 480px) {
    .offer-banner-section { padding: 40px 16px; margin: 30px 12px; }
    .offer-title { font-size: 1.6rem; }
    .offer-description { font-size: 0.95rem; }
    .offer-actions { flex-direction: column; width: 100%; }
    .btn-offer-primary, .btn-offer-secondary { width: 100%; justify-content: center; }
}

:root {
    --primary-green: #1e522f;
    --light-green: #2a7542;
    --accent-yellow: #f4c430;
    --text-dark: #222222;
    --text-muted: #666666;
    --text-light: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonials-section {
    padding: 90px 24px;
    background-color: var(--text-light);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header Section Style --- */
.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px auto;
}

.section-title {
    color: var(--primary-green);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Card Grid Layout --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 45px;
}

.testimonial-card {
    background: var(--text-light);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(30, 82, 47, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 82, 47, 0.08);
    border-color: rgba(30, 82, 47, 0.15);
}

/* Decorative Quote Icon */
.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(30, 82, 47, 0.06);
    font-size: 2.5rem;
    pointer-events: none;
    transition: var(--transition);
}

.testimonial-card:hover .quote-icon {
    color: rgba(244, 196, 48, 0.15);
}

/* Rating Stars */
.rating-stars {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Review Text Content */
.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

/* Emphasized Keywords inside block */
.review-text strong {
    font-style: normal;
    color: var(--primary-green);
    background-color: rgba(244, 196, 48, 0.08);
    padding: 0 4px;
    border-radius: 2px;
}

/* Reviewer Profile Grid Info */
.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f3f1;
    padding-top: 20px;
    margin-top: auto;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    background: rgba(30, 82, 47, 0.08);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reviewer-info h3 {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.reviewer-role {
    color: var(--light-green);
    font-size: 0.8rem;
    font-weight: 500;
}

/* --- Bottom Trust Info Styling --- */
.trust-footer {
    text-align: center;
    color: var(--light-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-footer i {
    margin-right: 4px;
}

.separator {
    color: var(--accent-yellow);
}

/* --- Layout Responsive Logic --- */
@media (max-width: 768px) {
    .testimonials-section { padding: 60px 16px; }
    .section-title { font-size: 1.85rem; }
    .testimonials-grid { gap: 20px; grid-template-columns: 1fr; }
    .testimonial-card { padding: 30px 20px; }
}

:root {
    --primary-green: #1e522f;
    --light-green: #2a7542;
    --accent-yellow: #f4c430;
    --bg-light: #ffffff;
    --bg-tint: #f4f7f4;
    --border-color: #e1e8e2;
    --text-dark: #2c3e35;
    --text-muted: #5c6b62;
    --transition: all 0.3s ease;
}

.contact-section {
    padding: 90px 24px;
    background-color: #f4f7f5;
    font-family: system-ui, -apple-system, sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Header Styling --- */
.contact-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-title {
    color: var(--primary-green);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Content Split Grid (Info vs Form) --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.panel-title {
    color: var(--primary-green);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 8px;
    display: inline-block;
}

/* Left Panel: Info Cards */
.panel-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.panel-intro strong {
    color: var(--primary-green);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--bg-tint);
    border-radius: 8px;
    color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-text h4 {
    margin: 0 0 5px 0;
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
}

.info-text p, .info-text a {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
}

.info-text a:hover {
    color: var(--light-green);
    text-decoration: underline;
}

.quick-connect .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
}

.quick-connect .wa-btn:hover {
    background-color: #1ebd59;
    transform: translateY(-2px);
}

/* Right Panel: Clean Lead Capture Form */
.contact-form-panel {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
    background-color: #ffffff;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(42, 117, 66, 0.1);
}

.submit-form-btn {
    background-color: var(--primary-green);
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.submit-form-btn:hover {
    background-color: var(--light-green);
}

/* --- Map Wrapper Layout --- */
.map-wrapper {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.map-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.responsive-map-container {
    position: relative;
    overflow: hidden;
    padding-top: 40%; /* Keeps map wider on wide viewports */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.responsive-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* --- Adaptive Viewport Breakpoints --- */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack panels on tablets */
        gap: 40px;
    }
    .responsive-map-container {
        padding-top: 55%; /* Taller map ratio for medium sized tablets */
    }
}

@media (max-width: 768px) {
    .contact-section { padding: 60px 16px; }
    .section-title { font-size: 1.85rem; }
    .contact-form-panel { padding: 25px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 20px; } /* Stack internal fields on mobile devices */
    .responsive-map-container {
        padding-top: 75%; /* Square aspect-ratio configuration optimal for mobile phones */
    }
}

:root {
    --footer-bg: #112216; /* Clean ultra-dark green tone */
    --footer-text-light: #ffffff;
    --footer-text-muted: #a3b8aa;
    --footer-accent: #f4c430; /* Golden yellow accent colors */
    --footer-border-color: rgba(255, 255, 255, 0.08);
    --footer-transition: all 0.25s ease;
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text-light);
    padding: 70px 24px 30px 24px;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 4px solid #1e522f;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Grid Structure Definitions --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--footer-border-color);
}

/* Column General Styling Rules */
.footer-col-title {
    color: var(--footer-accent);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Brand Profile Column Elements */
.footer-brand-title {
    font-size: 1.5rem;
    color: var(--footer-text-light);
    margin: 0 0 12px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-tagline {
    color: var(--footer-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: var(--footer-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--footer-transition);
}

.footer-socials a:hover {
    background-color: var(--footer-accent);
    color: var(--footer-bg);
    transform: translateY(-2px);
}

/* Links Columns Styling Rules */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--footer-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--footer-transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--footer-text-light);
    transform: translateX(4px);
}

/* Contact Anchor Info Block Details */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    color: var(--footer-text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--footer-accent);
    margin-top: 3px;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.footer-contact-info a {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: var(--footer-transition);
}

.footer-contact-info a:hover {
    color: var(--footer-text-light);
}

/* --- Bottom Policy Horizontal Strip Styling --- */
.footer-bottom-strip {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    margin: 0;
    color: var(--footer-text-muted);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--footer-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--footer-transition);
}

.footer-legal-links a:hover {
    color: var(--footer-text-light);
}

.strip-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
}

.tamil-motto {
    font-size: 0.85rem;
    color: var(--footer-accent);
    font-weight: 500;
    margin-left: 5px;
}

/* --- Responsive Layout Configurations --- */

@media (max-width: 1024px) {
    /* Balance columns neatly on tablet viewports */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 16px 25px 16px;
    }
}

@media (max-width: 600px) {
    /* Stack components linearly into single track layout for mobile screens */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }
    
    .footer-col-title {
        margin-bottom: 15px;
    }
    
    .footer-bottom-strip {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}