/* ─────────────────────────────────────────────
   TOP HEADER BANNER
───────────────────────────────────────────── */
.eco-top-header {
    background-color: var(--eco-light-gray);
    border-bottom: 1.5px solid var(--eco-border);
    padding: 12px 0;
}

.eco-top-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Left Column: Image or Fallback Whatsapp Box */
.eco-top-left-col {
    display: flex;
    align-items: center;
}

.eco-top-banner-img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

/* Standalone Whatsapp box styling matching screenshot */
.eco-whatsapp-badge-fallback {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--eco-green-light);
    border-radius: 8px;
    padding: 6px 14px;
    background: var(--eco-white);
    color: var(--eco-green-light);
    line-height: 1.1;
    transition: var(--eco-transition);
}

.eco-whatsapp-badge-fallback:hover {
    border-color: var(--eco-green);
    color: var(--eco-green);
    transform: translateY(-1px);
}

.eco-whatsapp-badge-fallback .dashicons-whatsapp {
    font-size: 26px;
    width: 26px;
    height: 26px;
    color: var(--eco-green-light);
}

.eco-wa-number-wrap {
    display: flex;
    flex-direction: column;
}

.eco-wa-number-wrap .wa-num {
    font-family: var(--eco-font-sans);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.eco-wa-number-wrap .wa-label {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--eco-text-secondary);
    margin-top: 1px;
}

/* Right Column: Slogan Text */
.eco-top-right-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    text-align: right;
}

.eco-top-slogan-text {
    font-family: var(--eco-font-sans);
    font-size: clamp(16px, 2.5vw, 25px);
    font-weight: 800;
    color: var(--eco-green-light);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* ── Global Social Media Icons Bar ── */
.eco-social-icons-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eco-social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

.eco-social-icon-link svg {
    width: 16px;
    height: 16px;
    display: block;
}

/* Header Context: top-header styles */
.eco-social-context-header .eco-social-icon-link {
    background: rgba(0, 67, 33, 0.05);
    color: var(--eco-green-light, #005a2c);
    border: 1px solid rgba(0, 67, 33, 0.1);
}

.eco-social-context-header .eco-social-icon-link:hover {
    background: var(--eco-green-light, #005a2c);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 90, 44, 0.15);
}

/* Footer Context: OUR STORY column styles */
.eco-social-context-footer {
    margin-top: 18px;
}

.eco-social-context-footer .eco-social-icon-link {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.eco-social-context-footer .eco-social-icon-link:hover {
    background: #ffffff;
    color: var(--eco-green, #004321) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ─────────────────────────────────────────────
   MAIN HEADER (Deep Green Background)
───────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--eco-green); /* Deep Forest Green */
    border-bottom: 2px solid var(--eco-green-dark);
    box-shadow: var(--eco-shadow-sm);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--eco-shadow-lg);
}

.site-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* ─── Left Column Logo ─── */
.eco-main-left-col {
    display: flex;
    align-items: center;
}

.site-logo-wrap {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.site-logo-wrap .logo-main {
    color: var(--eco-white);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.site-logo-wrap .logo-sub {
    color: var(--eco-light-gray);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ─── Right Column: Text Slogan ─── */
.eco-main-right-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 75%;
}

.eco-header-slogan-wrap {
    text-align: right;
}

.eco-header-slogan-desc {
    font-size: clamp(12px, 1.8vw, 15px);
    font-weight: 600;
    color: var(--eco-white);
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.2px;
}


/* ─── Primary Navigation ─── */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-menu-list li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--eco-light-gray);
    padding: 8px 14px;
    border-radius: var(--eco-radius-sm);
    display: block;
    transition: var(--eco-transition);
    text-decoration: none;
}

.nav-menu-list li a:hover,
.nav-menu-list li.current-menu-item > a,
.nav-menu-list li.current-menu-ancestor > a {
    color: var(--eco-white);
    background: rgba(255, 255, 255, 0.12);
}

/* Dropdown */
.nav-menu-list li {
    position: relative;
}

.nav-menu-list li ul.sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--eco-white);
    border: 1px solid var(--eco-light-gray);
    border-radius: var(--eco-radius-md);
    box-shadow: var(--eco-shadow-lg);
    padding: 8px;
    list-style: none;
    z-index: 100;
    opacity: 0;
    transform: translateY(-6px);
    transition: var(--eco-transition);
}

.nav-menu-list li:hover > ul.sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-menu-list li ul.sub-menu li a {
    font-size: 13px;
    border-radius: var(--eco-radius-sm);
    padding: 9px 12px;
}

/* ─── Header WhatsApp CTA ─── */
.header-cta-button {
    flex-shrink: 0;
}

.eco-header-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--eco-green);
    color: var(--eco-white) !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--eco-radius-full);
    text-decoration: none;
    box-shadow: 0 4px 14px var(--eco-green-glow);
    transition: var(--eco-transition);
}

.eco-header-wa-btn:hover {
    background: var(--eco-green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--eco-green-glow);
    color: var(--eco-white) !important;
}

.eco-header-wa-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1;
}

/* ─── Hamburger Menu Toggle (mobile) ─── */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--eco-radius-sm);
    transition: var(--eco-transition);
}

.menu-toggle:hover {
    background: var(--eco-light-gray);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--eco-charcoal);
    border-radius: 2px;
    transition: var(--eco-transition);
}

.hamburger {
    position: relative;
}

.hamburger::before {
    content: '';
    position: absolute;
    top: -6px;
}

.hamburger::after {
    content: '';
    position: absolute;
    top: 6px;
}

/* ─────────────────────────────────────────────
   SITE FOOTER
───────────────────────────────────────────── */
/* ─────────────────────────────────────────────
   SITE FOOTER
───────────────────────────────────────────── */
.site-footer {
    position: relative;
    background-color: var(--eco-green);
    color: var(--eco-white);
    margin-top: var(--eco-space-2xl);
    overflow: hidden;
}

.site-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

/* 3-Column Footer Grid Layout */
.eco-footer-main-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 65px 0 50px;
}

.eco-footer-col {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Elegant faded vertical borders between columns */
.eco-footer-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 5%;
    height: 90%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 15%, rgba(255, 255, 255, 0.16) 85%, rgba(255, 255, 255, 0) 100%);
}

.eco-footer-widget-title {
    font-family: var(--eco-font-heading);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--eco-white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    position: relative;
}

/* Col 1 Story Text */
.eco-footer-text {
    font-family: var(--eco-font-sans);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Col 2 Achievements Image */
.eco-achievements-img-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5px;
}

.eco-footer-achievements-img {
    max-width: 100%;
    height: auto;
    max-height: 130px;
    object-fit: contain;
}

/* Col 3 Premium Contact List */
.eco-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eco-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.eco-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--eco-white);
    flex-shrink: 0;
    transition: var(--eco-transition);
}

.eco-contact-icon svg {
    width: 18px;
    height: 18px;
}

/* Hover effects for contact items */
.eco-footer-contact-list li:hover .eco-contact-icon {
    background: var(--eco-white);
    color: var(--eco-green);
    transform: translateY(-2px);
}

.eco-contact-icon.eco-icon-wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.eco-footer-contact-list li:hover .eco-contact-icon.eco-icon-wa {
    background: #25d366;
    color: var(--eco-white);
}

.eco-contact-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.eco-contact-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.8px;
}

.eco-contact-val {
    font-family: var(--eco-font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--eco-white);
    text-decoration: none;
    transition: var(--eco-transition);
    line-height: 1.3;
}

.eco-contact-val:hover {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.eco-contact-address {
    color: var(--eco-white);
    cursor: default;
}

.eco-contact-address:hover {
    text-decoration: none;
}

/* ─── Footer Bottom Bar ─── */
.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.site-footer-bottom a {
    color: var(--eco-white);
    font-weight: 600;
    text-decoration: none;
    transition: var(--eco-transition);
}

.site-footer-bottom a:hover {
    color: var(--eco-green-light);
}

/* ─── Developer Credit ─── */
.eco-dev-credit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    margin-left: auto; /* Always pushes to the far-right of the flex row */
}

.eco-dev-link {
    font-weight: 700;
    color: #FF6A00;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.eco-dev-link:hover {
    color: #ff8c33;
    text-decoration: none;
    opacity: 0.9;
}

.footer-menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
}

.footer-menu-list li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: var(--eco-transition);
    text-decoration: none;
}

.footer-menu-list li a:hover {
    color: var(--eco-white);
}

/* ─────────────────────────────────────────────
   RESPONSIVE MOBILE HEADER
───────────────────────────────────────────── */
@media (max-width: 900px) {
    /* ── Top header: single row (WhatsApp left, slogan right) → stacked on narrow ── */
    .eco-top-header-container {
        flex-direction: row;         /* keep side-by-side on tablets */
        justify-content: space-between;
        gap: 10px;
        padding: 8px 20px;
    }

    .eco-top-right-col {
        text-align: right;
    }

    .eco-top-slogan-text {
        font-size: 15px;
    }

    /* ── Main header: logo left, slogan right → stays as row on tablets ── */
    .site-header-container {
        height: auto;
        padding: 12px 20px;
        flex-direction: row;         /* logo + slogan side-by-side */
        gap: 16px;
        text-align: left;
    }

    .eco-main-left-col {
        justify-content: flex-start;
        flex-shrink: 0;
    }

    .eco-main-right-col {
        max-width: 65%;
        width: auto;
        justify-content: flex-end;
        text-align: right;
    }

    .eco-header-slogan-wrap {
        text-align: right;
    }

    .eco-header-slogan-desc {
        text-align: right;
        font-size: 12px;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .menu-toggle {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px;
        border-radius: var(--eco-radius-sm);
        margin: 0 auto;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        background: var(--eco-white);
    }

    .main-navigation {
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border-radius: var(--eco-radius-md);
        box-shadow: none;
        padding: 12px;
        display: none;
        margin-top: 10px;
    }

    .main-navigation.open {
        display: block;
    }

    .nav-menu-list {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        width: 100%;
    }

    .nav-menu-list li {
        width: 100%;
        text-align: center;
    }

    .nav-menu-list li a {
        width: 100%;
        display: block;
        color: var(--eco-white);
        padding: 10px;
    }

    .nav-menu-list li ul.sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.08);
        padding-left: 0;
        margin-top: 4px;
        opacity: 1;
        transform: none;
        display: none;
    }

    .nav-menu-list li:hover > ul.sub-menu {
        display: block;
    }

    .site-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }

    .eco-dev-credit {
        margin: 0;
        text-align: center;
    }

    .footer-menu-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    /* ─── Mobile/Tablet stacked columns ─── */
    .eco-footer-main-row {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 0 40px;
    }

    .eco-footer-col {
        align-items: flex-start;
    }

    /* Convert vertical dividers to elegant horizontal dividers */
    .eco-footer-col:not(:last-child)::after {
        right: 0;
        left: 0;
        bottom: -20px;
        top: auto;
        height: 1px;
        width: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.12) 80%, rgba(255, 255, 255, 0) 100%);
    }

    .eco-footer-widget-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
}

/* ── Small phones: stack top header too, tighten header ── */
@media (max-width: 600px) {
    /* Top header: stack WhatsApp badge + slogan vertically */
    .eco-top-header {
        padding: 8px 0;
    }
    .eco-top-header-container {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 0 16px;
        text-align: center;
    }
    .eco-top-right-col {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
    }
    .eco-top-slogan-text {
        font-size: 14px;
    }
    .eco-wa-number-wrap .wa-num {
        font-size: 14px;
    }
    .eco-wa-number-wrap .wa-label {
        font-size: 9px;
    }

    /* Main header: switch to column on small phones */
    .site-header-container {
        padding: 10px 16px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .eco-main-left-col {
        justify-content: center;
    }
    .eco-main-right-col {
        max-width: 100%;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .eco-header-slogan-wrap {
        text-align: center;
    }
    .eco-header-slogan-desc {
        text-align: center;
        font-size: 12px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Footer bottom spacing */
    .site-footer-bottom {
        padding: 16px 0;
        gap: 12px;
    }
    .eco-footer-main-row {
        padding: 36px 0 32px;
        gap: 32px;
    }
    .site-footer-container {
        padding: 0 16px;
    }
}

/* ── Very small phones (≤ 480px): hide slogan in header to save vertical space ── */
@media (max-width: 480px) {
    .eco-top-header {
        padding: 6px 0;
    }
    .eco-top-header-container {
        gap: 4px;
        padding: 0 12px;
    }
    .eco-top-slogan-text {
        font-size: 13px;
    }
    .site-header-container {
        padding: 8px 12px;
        gap: 4px;
    }
    /* Hide the multi-line slogan on very small phones — saves ~30–40px */
    .eco-header-slogan-desc {
        font-size: 11px;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .eco-whatsapp-badge-fallback {
        padding: 5px 10px;
        gap: 8px;
    }
    .eco-whatsapp-badge-fallback .dashicons-whatsapp {
        font-size: 22px;
        width: 22px;
        height: 22px;
    }
    .eco-wa-number-wrap .wa-num {
        font-size: 13px;
    }
}



