/* =========================================
   ECOWOOD — CLEAN CSS
   PART 1: GENERAL, HEADER, HERO & HOME
========================================= */


/* =========================
   GENERAL RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: #f5f5f5;
    color: #1f1f1f;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================
   MAIN HEADER
========================= */

.main-header {
    width: 100%;
    min-height: 82px;
    padding: 10px 5%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-logo {
    width: 72px;
    height: 62px;
    object-fit: contain;
    display: block;
}

.brand-text h2 {
    color: #15462e;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 4px;
}

.brand-text p {
    color: #557263;
    font-size: 12px;
}


/* =========================
   MAIN NAVIGATION
========================= */

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.main-menu a {
    position: relative;
    padding: 8px 0;
    color: #15462e;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.main-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #39b54a;
    transition: width 0.3s ease;
}

.main-menu a:hover::after {
    width: 100%;
}


/* =========================
   HEADER BUTTONS
========================= */

.header-whatsapp,
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 30px;
    background: #128c45;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 14px rgba(18, 140, 69, 0.22);
    transition: 0.3s ease;
}

.header-whatsapp:hover,
.whatsapp-btn:hover {
    background: #0d7137;
    transform: translateY(-2px);
}

.menu-icon {
    display: none;
    color: #075b32;
    font-size: 28px;
}


/* =========================
   PREMIUM HERO
========================= */

.premium-hero {
    position: relative;
    min-height: 820px;
    padding: 70px 5% 55px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 55%,
            rgba(126, 229, 95, 0.18),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #003d22 0%,
            #006137 55%,
            #2d7457 100%
        );
}

.premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 10% 90%,
            rgba(81, 225, 58, 0.16),
            transparent 30%
        );
}

.hero-left {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    color: #8ee867;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-tagline::after {
    content: "";
    width: 120px;
    height: 1px;
    background: #8ee867;
}

.hero-left h1,
.hero-content h1 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1.04;
    font-weight: 700;
}

.hero-left h1 span,
.hero-content h1 span {
    display: block;
    color: #75e14f;
}

.hero-description {
    max-width: 760px;
    margin: 26px 0 32px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.5;
}


/* =========================
   HERO MAIN AREA
========================= */

.hero-main-area {
    display: grid;
    grid-template-columns:
        minmax(300px, 1fr)
        minmax(300px, 500px);
    align-items: end;
    gap: 40px;
}

.hero-content,
.hero-details {
    width: 100%;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 19px;
    padding-bottom: 10px;
}

.hero-feature,
.feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-feature-icon,
.feature-icon {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border: 1.5px solid #76e64e;
    border-radius: 50%;
    background: rgba(0, 76, 42, 0.55);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.hero-feature h3,
.feature h3 {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 19px;
}

.hero-feature p,
.feature p {
    color: #e4e9e5;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================
   HERO DOOR IMAGE
========================= */

.hero-door,
.hero-image {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-door img,
.hero-image img {
    display: block;
    width: 100%;
    max-width: 470px;
    height: auto;
    max-height: 610px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.36);
}


/* =========================
   HERO BUTTONS
========================= */

.collection-btn,
.hero-collection-btn {
    width: min(100%, 480px);
    min-height: 68px;
    margin-top: 30px;
    padding: 15px 24px;
    border-radius: 42px;
    background: linear-gradient(90deg, #69e43e, #06a943);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 21px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    transition: 0.3s ease;
}

.collection-btn:hover,
.hero-collection-btn:hover {
    transform: translateY(-4px);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    width: min(100%, 480px);
    margin-top: 18px;
}

.hero-buttons a {
    flex: 1;
    min-height: 54px;
    padding: 12px 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
}

.hero-buttons a:hover {
    background: #ffffff;
    color: #07572f;
}


/* =========================
   PRODUCTS SECTION
========================= */

.products {
    padding: 60px 5%;
    background: #f7f7f7;
}

.section-small-title {
    margin-bottom: 7px;
    color: #16803f;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.products > h2,
.products h2 {
    margin-bottom: 28px;
    color: #0a6b34;
    text-align: center;
    font-size: 36px;
}

.product-box {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-link {
    display: block;
    height: 100%;
}

.card {
    min-height: 150px;
    height: 100%;
    padding: 20px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.card h3 {
    margin-bottom: 8px;
    color: #0a6b34;
    font-size: 18px;
}

.card p {
    color: #646464;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================
   MDF PRODUCT CARDS
========================= */

.product-card {
    width: min(360px, 100%);
    margin: 25px auto;
    padding: 15px;
    border-radius: 12px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 380px;
    margin: 0 auto 15px;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
}


/* =========================
   WHY CHOOSE US
========================= */

.why-us {
    padding: 55px 5%;
    background: #ffffff;
    text-align: center;
}

.why-us h2 {
    margin-bottom: 28px;
    color: #075f31;
    font-size: 32px;
}

.why-grid {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.why-card {
    padding: 22px 16px;
    border: 1px solid #dce9e1;
    border-radius: 16px;
    background: #f7faf8;
    text-align: center;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
    transition: 0.25s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.11);
}

.why-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #08743a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-card h3 {
    margin-bottom: 7px;
    color: #075f31;
    font-size: 17px;
}

.why-card p {
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================
   HOME ABOUT
========================= */

.home-about {
    padding: 60px 6%;
    background: #eef5f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.about-content {
    width: 52%;
}

.about-content .section-small-title {
    text-align: left;
}

.about-content h2 {
    margin-bottom: 15px;
    color: #075f31;
    font-size: 34px;
}

.about-content p {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 25px;
    border-radius: 30px;
    background: #08743a;
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #075c30;
    transform: translateY(-2px);
}

.about-image {
    width: 43%;
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: 15px;
    object-fit: cover;
}


/* =========================
   HOME CONTACT
========================= */

.home-contact {
    padding: 50px 20px;
    background: #064d2d;
    color: #ffffff;
    text-align: center;
}

.home-contact h2 {
    margin-bottom: 10px;
    font-size: 30px;
}

.home-contact p {
    margin-bottom: 22px;
    color: #e8e8e8;
    font-size: 15px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 27px;
    border-radius: 35px;
    background: #5bd63f;
    color: #063d24;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* =========================
   SERVICE FEATURES
========================= */

.service-features {
    padding: 30px 4%;
    background: #064d2d;
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-features div {
    padding: 15px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

.service-features div:last-child {
    border-right: none;
}

.service-features strong {
    display: block;
    margin-bottom: 7px;
    font-size: 26px;
}

.service-features p {
    font-size: 14px;
}


/* =========================
   COMPANY STATISTICS
========================= */

.company-stats {
    padding: 45px 5%;
    background: linear-gradient(135deg, #034d2c, #08743a);
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.stat-box {
    padding: 22px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stat-box h2,
.stat-box h3 {
    margin-bottom: 8px;
    color: #73e653;
    font-size: 32px;
    line-height: 1.1;
}

.stat-box p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 900px) {

    .main-header {
        flex-wrap: wrap;
        padding: 10px 18px;
    }

    .main-menu {
        order: 3;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        padding-top: 8px;
        border-top: 1px solid #e6ece8;
    }

    .main-menu a {
        padding: 8px 3px;
        text-align: center;
        font-size: 12px;
    }

    .premium-hero {
        min-height: auto;
        padding: 60px 28px 50px;
    }

    .hero-main-area {
        grid-template-columns: 1fr 42%;
        gap: 24px;
    }

    .hero-left h1,
    .hero-content h1 {
        font-size: 56px;
    }

    .hero-description {
        font-size: 20px;
    }

    .product-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 600px) {

    .main-header {
        min-height: auto;
        padding: 9px 12px;
        gap: 8px;
    }

    .brand {
        gap: 7px;
    }

    .header-logo {
        width: 56px;
        height: 52px;
    }

    .brand-text h2 {
        font-size: 13px;
    }

    .brand-text p {
        font-size: 9px;
    }

    .header-whatsapp,
    .whatsapp-btn {
        padding: 9px 11px;
        font-size: 11px;
    }

    .main-menu {
        grid-template-columns: repeat(4, 1fr);
        margin-top: 5px;
    }

    .main-menu a {
        padding: 7px 2px;
        font-size: 10px;
    }

    .premium-hero {
        padding: 48px 16px 40px;
    }

    .hero-tagline {
        gap: 10px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero-tagline::after {
        width: 55px;
    }

    .hero-left h1,
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-description {
        margin: 20px 0 25px;
        font-size: 17px;
    }

    .hero-main-area {
        grid-template-columns: minmax(0, 1fr) 44%;
        align-items: center;
        gap: 12px;
    }

    .hero-details {
        gap: 15px;
    }

    .hero-feature,
    .feature {
        gap: 9px;
    }

    .hero-feature-icon,
    .feature-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

    .hero-feature h3,
    .feature h3 {
        font-size: 14px;
    }

    .hero-feature p,
    .feature p {
        font-size: 10px;
        line-height: 1.35;
    }

    .hero-door img,
    .hero-image img {
        width: 100%;
        height: auto;
        max-height: none;
        border-radius: 14px;
        object-fit: contain;
        box-shadow: none;
    }

    .collection-btn,
    .hero-collection-btn {
        width: 100%;
        min-height: 58px;
        margin-top: 24px;
        padding: 13px 18px;
        font-size: 18px;
    }

    .hero-buttons {
        width: 100%;
        gap: 10px;
    }

    .hero-buttons a {
        min-height: 48px;
        padding: 9px 7px;
        font-size: 13px;
    }

    .products {
        padding: 42px 13px;
    }

    .products h2 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .product-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
    }

    .card {
        min-height: 125px;
        padding: 14px 9px;
        border-radius: 11px;
    }

    .card h3 {
        font-size: 15px;
    }

    .card p {
        font-size: 11px;
    }

    .why-us {
        padding: 42px 13px;
    }

    .why-us h2 {
        font-size: 27px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
    }

    .why-card {
        padding: 16px 10px;
    }

    .why-icon {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

    .why-card h3 {
        font-size: 14px;
    }

    .why-card p {
        font-size: 11px;
    }

    .home-about {
        display: block;
        padding: 44px 17px;
    }

    .about-content,
    .about-image {
        width: 100%;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-image {
        margin-top: 24px;
    }

    .home-contact h2 {
        font-size: 25px;
    }

    .service-features {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 10px;
    }

    .service-features div {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px 10px;
        gap: 10px;
    }

    .stat-box {
        padding: 18px 7px;
    }

    .stat-box h2,
    .stat-box h3 {
        font-size: 25px;
    }

    .stat-box p {
        font-size: 11px;
    }
}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 390px) {

    .brand-text {
        display: none;
    }

    .header-logo {
        width: 58px;
    }

    .hero-left h1,
    .hero-content h1 {
        font-size: 37px;
    }
}
/* =========================================
   PART 2A-1
   ASH + HDX GALLERY
========================================= */


/* ========= PAGE HEADER ========= */

.ash-page-header{
    padding:40px 6% 55px;
    background:linear-gradient(135deg,#083f21,#0b6b35);
    color:#fff;
}

.ash-back-btn{
    display:inline-block;
    padding:11px 20px;
    margin-bottom:30px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:40px;
    color:#fff;
    transition:.3s;
}

.ash-back-btn:hover{
    background:#fff;
    color:#0b6b35;
}

.ash-heading{
    max-width:760px;
    margin:auto;
    text-align:center;
}

.ash-heading span{
    display:block;
    color:#d7eadc;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:10px;
    text-transform:uppercase;
}

.ash-heading h1{
    color:#fff;
    font-size:clamp(34px,6vw,60px);
    margin-bottom:15px;
}

.ash-heading p{
    color:#edf6ef;
    font-size:17px;
    line-height:1.7;
}


/* ========= GALLERY SECTION ========= */

.ash-gallery-section{
    padding:60px 5%;
    background:#f5f4ef;
}

.ash-gallery-grid,
.hdx-door-grid{

    width:min(1200px,100%);
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}


/* ========= CARD ========= */

.ash-door-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 28px rgba(0,0,0,.10);

    transition:.30s;
}

.ash-door-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 36px rgba(0,0,0,.15);
}


/* ========= IMAGE ========= */

.ash-door-card img{

    display:block;

    width:100%;

    height:auto;

    object-fit:contain;

    object-position:center;

    background:#fff;

    transition:.35s;
}

.ash-door-card:hover img{

    transform:scale(1.03);
}


/* ========= CARD INFO ========= */

.ash-card-info,
.hdx-card-info{

    padding:18px;

    text-align:center;
}

.ash-card-info h3,
.hdx-card-info h3{

    color:#114226;

    font-size:19px;

    margin-bottom:8px;
}

.ash-card-info p,
.hdx-card-info p{

    color:#666;

    font-size:14px;

    margin-bottom:10px;
}

.ash-card-info span{

    display:inline-block;

    padding:6px 12px;

    border-radius:30px;

    background:#e8f3ea;

    color:#0b6b35;

    font-size:13px;

    font-weight:700;
}


/* ========= PRICE BUTTON ========= */

.hdx-card-info a{

    display:inline-block;

    margin-top:5px;

    padding:8px 18px;

    border-radius:30px;

    background:#0b6b35;

    color:#fff;

    font-size:13px;

    font-weight:700;

    transition:.3s;
}

.hdx-card-info a:hover{

    background:#095528;
}


/* ========= TABLET ========= */

@media(max-width:900px){

    .ash-gallery-grid,
    .hdx-door-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;
    }

}
/* =========================================
   PART 2A-2
   HDX + ASH MOBILE & IMAGE FIXES
========================================= */


/* ========= HDX IMAGE FIX ========= */

.hdx-door-grid .ash-door-card{
    width:100%;
    max-width:320px;
    margin:auto;
}

.hdx-door-grid .ash-door-card img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
    object-position:center;
    background:#fff;
}


/* ========= CLICKABLE IMAGE ========= */

.ash-door-card a{
    display:block;
}

.ash-door-card a img{
    cursor:pointer;
}


/* ========= IMAGE HOVER ========= */

.ash-door-card a{
    overflow:hidden;
}

.ash-door-card:hover img{

    transform:scale(1.04);

    transition:.35s ease;
}


/* ========= MOBILE ========= */

@media(max-width:600px){

    .ash-page-header{

        padding:28px 18px 40px;
    }

    .ash-heading h1{

        font-size:34px;
    }

    .ash-heading p{

        font-size:15px;
    }

    .ash-gallery-section{

        padding:35px 15px;
    }

    .ash-gallery-grid,
    .hdx-door-grid{

        grid-template-columns:repeat(2,1fr);

        gap:12px;
    }

    .ash-door-card{

        border-radius:12px;
    }

    .ash-door-card img{

        width:100%;
        height:auto;
    }

    .ash-card-info,
    .hdx-card-info{

        padding:10px;
    }

    .ash-card-info h3,
    .hdx-card-info h3{

        font-size:14px;

        margin-bottom:6px;
    }

    .ash-card-info p,
    .hdx-card-info p{

        font-size:11px;

        margin-bottom:8px;
    }

    .ash-card-info span{

        font-size:11px;

        padding:5px 10px;
    }

    .hdx-card-info a{

        font-size:11px;

        padding:7px 12px;
    }

}


/* ========= VERY SMALL MOBILE ========= */

@media(max-width:380px){

    .ash-gallery-grid,
    .hdx-door-grid{

        grid-template-columns:1fr;
    }

    .ash-door-card{

        max-width:300px;

        margin:auto;
    }

}
/* =========================================
   PART 2B
   GALLERY + VENEER + PRODUCT CARDS
========================================= */


/* ========= GALLERY HERO ========= */

.gallery-hero{
    padding:80px 20px;
    text-align:center;
    color:#fff;
    background:linear-gradient(135deg,#0d3b2e,#1b5e20);
}

.gallery-hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.gallery-hero p{
    max-width:720px;
    margin:auto;
    font-size:17px;
    line-height:1.7;
    opacity:.92;
}


/* ========= GALLERY ========= */

.gallery-section{
    padding:70px 5%;
    background:#f7f7f7;
}

.gallery-section h2{
    text-align:center;
    color:#0b6b35;
    font-size:34px;
    margin-bottom:35px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}


/* ========= IMAGE & VIDEO CARD ========= */

.image-card,
.video-card{

    background:#fff;

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    transition:.3s;
}

.image-card:hover,
.video-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 38px rgba(0,0,0,.15);
}

.image-card img,
.video-card video{

    width:100%;

    display:block;

    object-fit:cover;
}

.video-card h3{

    padding:15px;

    text-align:center;

    color:#0b6b35;
}


/* ========= GALLERY BUTTON ========= */

.gallery-btn{

    text-align:center;

    margin-top:40px;
}

.gallery-btn .btn{

    display:inline-block;

    padding:14px 34px;

    background:#0b6b35;

    color:#fff;

    border-radius:40px;

    font-weight:700;

    transition:.3s;
}

.gallery-btn .btn:hover{

    background:#084b25;
}


/* ======================================
   RAW FOAM / VENEER SECTION
====================================== */

.raw-foam-section{

    padding:70px 20px;

    background:#f8f8f5;
}

.section-title{

    text-align:center;

    margin-bottom:40px;
}

.section-title h2{

    color:#0b5d2a;

    font-size:40px;

    margin-bottom:10px;
}

.section-title p{

    color:#777;

    font-size:17px;
}


/* ========= GRID ========= */

.veneer-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;
}


/* ========= CARD ========= */

.veneer-card{

    background:#0b5d2a;

    color:#fff;

    border-radius:18px;

    padding:24px 18px;

    text-align:center;

    box-shadow:0 10px 24px rgba(0,0,0,.12);

    transition:.3s;
}

.veneer-card:hover{

    transform:translateY(-6px);
}

.veneer-card img{

    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

    margin-bottom:14px;
}

.veneer-card h3{

    font-size:17px;

    line-height:1.4;
}

.veneer-icon{

    font-size:28px;

    margin-bottom:10px;
}


/* ========= PRODUCT CARD ========= */

.product-card{

    max-width:360px;

    margin:25px auto;

    background:#fff;

    border-radius:15px;

    padding:16px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.product-card img{

    width:100%;

    height:auto;

    max-height:380px;

    object-fit:contain;

    border-radius:12px;

    margin-bottom:15px;
}


/* ========= MOBILE ========= */

@media(max-width:768px){

    .gallery-grid{

        grid-template-columns:1fr;
    }

    .gallery-section h2{

        font-size:28px;
    }

    .veneer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:12px;
    }

    .veneer-card{

        padding:16px 10px;
    }

    .veneer-card h3{

        font-size:14px;
    }

    .section-title h2{

        font-size:31px;
    }

    .section-title p{

        font-size:15px;
    }

}

@media(max-width:420px){

    .veneer-grid{

        grid-template-columns:1fr;
    }

    .gallery-hero h1{

        font-size:32px;
    }

}
/* =========================================
   PART 3A
   CONTACT • PROJECTS • FOOTER
========================================= */


/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding:70px 5%;
    background:#f5f8f5;
}

.contact-heading{
    max-width:760px;
    margin:0 auto 45px;
    text-align:center;
}

.contact-heading span{
    display:block;
    color:#5d9f2f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.contact-heading h2{
    color:#103b25;
    font-size:40px;
    margin-bottom:15px;
}

.contact-heading p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}


/* CONTACT GRID */

.contact-container{

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:22px;
}

.contact-card{

    background:#fff;

    padding:30px 20px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 28px rgba(0,0,0,.08);

    transition:.3s;
}

.contact-card:hover{

    transform:translateY(-7px);

    box-shadow:0 18px 35px rgba(0,0,0,.14);
}

.contact-icon{

    width:65px;
    height:65px;

    margin:0 auto 18px;

    border-radius:50%;

    background:#eaf6df;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
}

.contact-card h3{

    color:#103b25;

    margin-bottom:10px;
}

.contact-card p{

    color:#777;

    line-height:1.6;

    margin-bottom:15px;
}

.contact-card a{

    color:#5d9f2f;

    font-weight:700;

    overflow-wrap:anywhere;
}


/* BUTTONS */

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:40px;
}

.call-btn{

    background:#103b25;

    color:#fff;
}

.whatsapp-btn{

    background:#25d366;

    color:#fff;
}



/* =========================
   GOOGLE MAP
========================= */

.map-section{

    padding:65px 5%;

    background:#fff;

    text-align:center;
}

.map-section h2{

    color:#103b25;

    font-size:34px;

    margin-bottom:30px;
}

.map-section iframe{

    width:100%;

    height:320px;

    border:none;

    border-radius:20px;

    box-shadow:0 10px 28px rgba(0,0,0,.12);
}



/* =========================
   PROJECTS
========================= */

.projects{

    padding:60px 5%;

    background:#fff;

    text-align:center;
}

.projects h2{

    color:#075f31;

    font-size:32px;

    margin-bottom:30px;
}

.project-grid{

    max-width:1000px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;
}

.project-grid img{

    width:100%;

    border-radius:16px;

    display:block;

    transition:.3s;

    box-shadow:0 8px 18px rgba(0,0,0,.10);
}

.project-grid img:hover{

    transform:scale(1.03);
}

.view-all-btn{

    display:inline-block;

    margin-top:30px;

    padding:14px 36px;

    background:#0b6b35;

    color:#fff;

    border-radius:40px;

    font-weight:700;
}



/* =========================
   TESTIMONIALS
========================= */

.testimonials{

    background:#f7faf8;

    padding:60px 5%;

    text-align:center;
}

.testimonials h2{

    color:#075f31;

    font-size:32px;

    margin-bottom:30px;
}

.review-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    max-width:1100px;

    margin:auto;
}

.review-card{

    background:#fff;

    padding:24px 18px;

    border-radius:16px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.review-card:hover{

    transform:translateY(-5px);
}

.stars{

    color:#f4b400;

    font-size:20px;

    margin-bottom:14px;
}

.review-card p{

    color:#666;

    line-height:1.7;

    margin-bottom:15px;
}

.review-card h4{

    color:#075f31;

    margin-bottom:5px;
}

.review-card span{

    color:#888;

    font-size:13px;
}



/* =========================
   FOOTER
========================= */

.footer{

    background:#0f2d1d;

    color:#fff;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:35px;

    padding:60px 6%;
}

.footer-logo{

    width:80px;

    margin-bottom:15px;
}

.footer-box h3{

    color:#8fd14f;

    margin-bottom:18px;

    font-size:22px;
}

.footer-box p{

    color:#ddd;

    line-height:1.8;
}

.footer-box a{

    display:block;

    color:#ddd;

    margin:10px 0;

    transition:.3s;
}

.footer-box a:hover{

    color:#8fd14f;

    padding-left:8px;
}

.copyright{

    background:#081810;

    color:#ccc;

    text-align:center;

    padding:18px;

    font-size:14px;
}



/* =========================
   BACK TO TOP
========================= */

.back-to-top{

    position:fixed;

    right:20px;

    bottom:20px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#0b6b35;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;
}

.back-to-top:hover{

    transform:translateY(-4px);

    background:#084b25;
}



/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .contact-container{

        grid-template-columns:1fr 1fr;
    }

    .review-grid{

        grid-template-columns:1fr;
    }

    .project-grid{

        grid-template-columns:1fr;
    }

    .footer{

        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-logo{

        margin:auto auto 15px;
    }

}

@media(max-width:600px){

    .contact-container{

        grid-template-columns:1fr;
    }

    .contact-heading h2{

        font-size:30px;
    }

    .map-section h2{

        font-size:28px;
    }

    .projects h2{

        font-size:28px;
    }

    .testimonials h2{

        font-size:28px;
    }

    .back-to-top{

        width:44px;
        height:44px;
        right:15px;
        bottom:15px;
    }

}
/* =========================================
   PART 3B
   FINAL CLEANUP & UTILITIES
========================================= */


/* =========================
   BUTTON ANIMATION
========================= */

.collection-btn,
.hero-collection-btn,
.contact-btn,
.view-all-btn,
.gallery-btn .btn,
.about-btn,
.filling-contact-btn{

    transition:.3s ease;
}

.collection-btn:hover,
.hero-collection-btn:hover,
.contact-btn:hover,
.view-all-btn:hover,
.gallery-btn .btn:hover,
.about-btn:hover,
.filling-contact-btn:hover{

    transform:translateY(-4px);
}


/* =========================
   IMAGE FIX
========================= */

img{
    display:block;
    max-width:100%;
    height:auto;
}


/* =========================
   GALLERY IMAGE FIX
========================= */

.gallery-grid img,
.project-grid img,
.product-card img,
.filling-image-box img,
.about-image img,
.hero-door img,
.hero-image img{

    width:100%;
    height:auto;
    object-fit:contain;
}


/* =========================
   HDX IMAGE FIX
========================= */

.hdx-door-grid img{

    width:100%;
    height:auto;
    object-fit:contain;
}


/* =========================
   ASH IMAGE FIX
========================= */

.ash-gallery-grid img{

    width:100%;
    height:auto;
    object-fit:contain;
}


/* =========================
   SMOOTH HOVER
========================= */

.card,
.product-card,
.ash-door-card,
.review-card,
.contact-card,
.why-card,
.veneer-card{

    transition:.30s ease;
}


/* =========================
   REMOVE BLUE TAP
========================= */

a,
button{

    -webkit-tap-highlight-color:transparent;
}


/* =========================
   SELECTION
========================= */

::selection{

    background:#0b6b35;
    color:#ffffff;
}


/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#eeeeee;
}

::-webkit-scrollbar-thumb{

    background:#0b6b35;
    border-radius:30px;
}

::-webkit-scrollbar-thumb:hover{

    background:#084b25;
}


/* =========================
   LIGHTBOX READY
========================= */

.lightbox{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.85);

    display:none;

    align-items:center;
    justify-content:center;

    z-index:99999;
}

.lightbox img{

    max-width:92%;
    max-height:92%;
    border-radius:12px;
}

.lightbox.active{

    display:flex;
}


/* =========================
   MOBILE FINAL
========================= */

@media(max-width:768px){

    body{

        overflow-x:hidden;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .hero-buttons a{

        width:100%;
    }

    .collection-btn,
    .hero-collection-btn{

        width:100%;
    }

    .contact-buttons{

        flex-direction:column;
        align-items:center;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:400px){

    h1{

        font-size:32px;
    }

    h2{

        font-size:24px;
    }

    p{

        font-size:14px;
    }

}
/* =================================
   FORMICA PAGE
================================= */

.formica-price-notice {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #7a4a24;
}

.formica-price-notice h2 {
    margin: 0 0 15px;
    color: #3e2818;
}

.formica-price-notice p {
    margin: 8px 0;
    font-size: 17px;
    line-height: 1.6;
}

.waterproofing-charge {
    padding: 8px;
    background: #fff5e8;
    border-radius: 8px;
}

.formica-colour-header {
    margin-top: 50px;
}

.formica-colour-card img {
    cursor: zoom-in;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    background: rgba(0, 0, 0, 0.92);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 94%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox p {
    margin-top: 12px;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 15px;
    right: 20px;
    width: 45px;
    height: 45px;
    padding: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    font-size: 35px;
    line-height: 40px;
    cursor: pointer;
}

@media (max-width: 600px) {

    .formica-price-notice {
        margin: 20px 15px;
        padding: 20px 15px;
    }

    .formica-price-notice p {
        font-size: 15px;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 78vh;
    }
}
/* Lightbox Arrows */

.lightbox-arrow{
    position:fixed;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#ffffff;
    color:#111;
    font-size:35px;
    cursor:pointer;
    z-index:100001;
    box-shadow:0 5px 15px rgba(0,0,0,.35);
    transition:.3s;
}

.lightbox-arrow:hover{
    background:#0b6b43;
    color:#fff;
}

.lightbox-prev{
    left:20px;
}

.lightbox-next{
    right:20px;
}

@media(max-width:768px){

.lightbox-arrow{
    width:42px;
    height:42px;
    font-size:28px;
}

.lightbox-prev{
    left:10px;
}

.lightbox-next{
    right:10px;
}

}
/* Lightbox Arrows */

.lightbox-arrow{
    position:fixed;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#ffffff;
    color:#111;
    font-size:35px;
    cursor:pointer;
    z-index:100001;
    box-shadow:0 5px 15px rgba(0,0,0,.35);
    transition:.3s;
}

.lightbox-arrow:hover{
    background:#0b6b43;
    color:#fff;
}

.lightbox-prev{
    left:20px;
}

.lightbox-next{
    right:20px;
}

@media(max-width:768px){

.lightbox-arrow{
    width:42px;
    height:42px;
    font-size:28px;
}

.lightbox-prev{
    left:10px;
}

.lightbox-next{
    right:10px;
}

}


/* =========================================
   END OF ECOWOOD CSS
========================================= */
/* ==================================================
   ECOWOOD RECOVERY OVERRIDES — CLEAN FINAL LAYER
   Keeps existing pages working and fixes the broken
   header, statistics, feature and footer layouts.
================================================== */

:root {
    --eco-green-900: #063d24;
    --eco-green-800: #07572f;
    --eco-green-700: #0b6b35;
    --eco-green-600: #168044;
    --eco-lime: #75e14f;
    --eco-white: #ffffff;
    --eco-text: #20252a;
}

/* ---------- Premium responsive header ---------- */
.eco-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.eco-container {
    width: min(100%, 1300px);
    min-height: 64px;
    margin: 0 auto;
    padding: 7px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.eco-logo {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eco-logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex: 0 0 auto;
}

.eco-logo-text h2 {
    margin: 0;
    color: var(--eco-green-800);
    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;
    white-space: nowrap;
}

.eco-logo-text p {
    margin: 3px 0 0;
    color: #667069;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}

.eco-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.eco-whatsapp {
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 28px;
    background: #118c43;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(17, 140, 67, 0.22);
}

.eco-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: #eef7f0;
    color: var(--eco-green-800);
    font-size: 20px;
    cursor: pointer;
}

.eco-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 12px 5%;
    border-top: 1px solid #edf1ee;
    background: #ffffff;
}

.eco-nav a {
    color: #184b33;
    font-size: 14px;
    font-weight: 700;
}

.eco-nav a:hover {
    color: var(--eco-green-700);
}

/* ---------- Premium company statistics ---------- */
.company-stats {
    position: relative !important;
    isolation: isolate;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 48px 22px 55px !important;
    display: block !important;
    overflow: hidden !important;
    color: var(--eco-text) !important;
    background:
        radial-gradient(circle at 8% 12%, rgba(76, 164, 72, 0.14), transparent 25%),
        radial-gradient(circle at 92% 88%, rgba(24, 112, 62, 0.11), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #f4faf5 48%, #fbfdfb 100%) !important;
}

.company-stats .stats-heading {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

.company-stats .stats-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #397c45;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.company-stats .stats-heading span::before,
.company-stats .stats-heading span::after {
    content: "";
    width: 30px;
    height: 1px;
    background: #388945;
}

.company-stats .stats-heading h2 {
    margin: 11px 0 0;
    color: #20282d !important;
    font-size: clamp(28px, 5vw, 42px) !important;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -1px;
}

.company-stats .stats-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.company-stats .stat-box {
    position: relative;
    min-width: 0;
    min-height: 132px;
    margin: 0 !important;
    padding: 20px 18px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 17px !important;
    overflow: hidden;
    text-align: left !important;
    color: var(--eco-text) !important;
    background: linear-gradient(145deg, #ffffff, #eef8f0) !important;
    border: 1px solid rgba(37, 129, 65, 0.10) !important;
    border-radius: 20px !important;
    box-shadow: 0 16px 36px rgba(20, 71, 39, 0.11) !important;
}

.company-stats .stat-icon {
    width: 64px !important;
    min-width: 64px !important;
    height: 64px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #2f9142 !important;
    background: transparent !important;
    font-size: 42px !important;
}

.company-stats .stat-icon i {
    color: inherit !important;
    font-size: inherit !important;
}

.company-stats .stat-icon svg {
    width: 58px !important;
    height: 58px !important;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.company-stats .stat-content {
    min-width: 0;
    flex: 1;
}

.company-stats .stat-content h3,
.company-stats .stat-content h2 {
    margin: 0 !important;
    color: #126d37 !important;
    font-size: clamp(30px, 5vw, 44px) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap;
}

.company-stats .stat-content p {
    position: relative;
    margin: 9px 0 0 !important;
    padding: 0 0 11px !important;
    color: #28312d !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.company-stats .stat-content p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 27px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, #277c3d, #7ac05e);
}

/* ---------- Premium features ---------- */
.premium-features {
    position: relative;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding: 55px 5% !important;
    overflow: hidden;
    background: linear-gradient(145deg, #063f25, #0a5a32 48%, #063b23) !important;
}

.premium-features .feature-box {
    min-width: 0;
    min-height: 205px;
    padding: 26px 18px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22) !important;
}

.premium-features .feature-box i {
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(190, 255, 179, 0.34);
    border-radius: 50%;
    color: #b9ffad !important;
    background: rgba(255, 255, 255, 0.08);
    font-size: 27px !important;
}

.premium-features .feature-box h3 {
    margin: 0 0 9px;
    color: #ffffff !important;
    font-size: 19px !important;
}

.premium-features .feature-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.80) !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

/* ---------- Premium footer ---------- */
.premium-footer {
    position: relative;
    overflow: hidden;
    padding: 65px 5% 30px !important;
    color: #ffffff !important;
    background:
        radial-gradient(circle at top left, rgba(62, 150, 77, 0.20), transparent 32%),
        radial-gradient(circle at bottom right, rgba(95, 180, 82, 0.15), transparent 30%),
        linear-gradient(180deg, #13281c, #0d1f15) !important;
}

.footer-brand {
    text-align: center;
    margin-bottom: 38px;
}

.premium-footer-logo {
    width: 82px !important;
    height: auto !important;
    margin: 0 auto 16px !important;
    object-fit: contain !important;
}

.footer-brand h2 {
    margin: 0;
    color: #ffffff !important;
    font-size: 31px !important;
}

.footer-brand span {
    display: block;
    margin-top: 6px;
    color: #87d36d !important;
}

.footer-brand p {
    max-width: 650px;
    margin: 16px auto 0;
    color: #d7e2d7 !important;
    line-height: 1.75;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-panel {
    min-width: 0;
    padding: 25px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 20px !important;
}

.footer-panel h3 {
    position: relative;
    margin: 0 0 22px !important;
    color: #ffffff !important;
    font-size: 21px !important;
}

.footer-panel h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 52px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, #5fd266, #9df884);
}

.footer-panel a,
.contact-row {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin: 12px 0 !important;
    color: #d9e6d8 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    overflow-wrap: anywhere;
}

.footer-panel i,
.contact-row i {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #79df70 !important;
    background: #1f4f2d !important;
    font-size: 14px !important;
}

.footer-highlights {
    max-width: 1200px;
    margin: 40px auto 32px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.footer-highlight {
    min-width: 0;
    padding: 21px 12px !important;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 18px !important;
}

.footer-highlight i {
    margin-bottom: 9px;
    color: #77e66d !important;
    font-size: 27px !important;
}

.footer-highlight strong {
    display: block;
    color: #ffffff !important;
    font-size: 19px !important;
}

.footer-highlight span {
    color: #cfe7cf !important;
    font-size: 12px !important;
}

.premium-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.premium-copyright p {
    margin: 0;
    color: #dfe8df !important;
    font-size: 13px !important;
}

.copyright-line {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

/* ---------- Mobile repair ---------- */
@media (max-width: 768px) {
    .eco-container {
        min-height: 54px;
        padding: 5px 12px;
    }

    .eco-logo img {
        width: 36px;
        height: 36px;
    }

    .eco-logo-text h2 {
        font-size: 14px;
    }

    .eco-logo-text p {
        font-size: 9px;
    }

    .eco-whatsapp {
        width: 38px;
        min-width: 38px;
        height: 38px;
        min-height: 38px;
        padding: 0;
        border-radius: 50%;
    }

    .eco-whatsapp span {
        display: none;
    }

    .eco-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .eco-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        border: 0;
        border-radius: 15px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    }

    .eco-nav.show {
        display: flex;
    }

    .eco-nav a {
        padding: 11px 12px;
        border-radius: 9px;
    }

    .company-stats {
        padding: 38px 14px 44px !important;
    }

    .company-stats .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 11px !important;
    }

    .company-stats .stat-box {
        min-height: 112px;
        padding: 14px 9px !important;
        gap: 8px !important;
        border-radius: 15px !important;
    }

    .company-stats .stat-icon {
        width: 42px !important;
        min-width: 42px !important;
        height: 42px !important;
        font-size: 30px !important;
    }

    .company-stats .stat-icon svg {
        width: 39px !important;
        height: 39px !important;
    }

    .company-stats .stat-content h3,
    .company-stats .stat-content h2 {
        font-size: 26px !important;
    }

    .company-stats .stat-content p {
        font-size: 10px !important;
    }

    .premium-features {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 11px !important;
        padding: 42px 13px !important;
    }

    .premium-features .feature-box {
        min-height: 180px;
        padding: 20px 10px;
        border-radius: 17px !important;
    }

    .premium-features .feature-box i {
        width: 54px;
        height: 54px;
        font-size: 21px !important;
    }

    .premium-features .feature-box h3 {
        font-size: 14px !important;
    }

    .premium-features .feature-box p {
        font-size: 10px !important;
    }

    .premium-footer {
        padding: 48px 14px 26px !important;
    }

    .premium-footer-logo {
        width: 64px !important;
    }

    .footer-brand h2 {
        font-size: 27px !important;
    }

    .footer-brand p {
        font-size: 13px !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .footer-panel {
        padding: 17px 12px !important;
    }

    .footer-panel.footer-contact {
        grid-column: 1 / -1;
    }

    .footer-panel h3 {
        font-size: 17px !important;
    }

    .footer-panel a,
    .contact-row {
        font-size: 10px !important;
    }

    .footer-highlights {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 6px !important;
        margin: 28px auto !important;
    }

    .footer-highlight {
        padding: 14px 4px !important;
        border-radius: 13px !important;
    }

    .footer-highlight i {
        font-size: 19px !important;
    }

    .footer-highlight strong {
        font-size: 12px !important;
    }

    .footer-highlight span {
        font-size: 7px !important;
    }

    .premium-copyright p {
        font-size: 9px !important;
    }

    .copyright-line {
        width: 45px;
    }
}

@media (max-width: 380px) {
    .eco-logo-text p {
        display: none;
    }

    .company-stats {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .company-stats .stats-grid {
        gap: 8px !important;
    }

    .company-stats .stat-box {
        padding: 11px 6px !important;
        gap: 5px !important;
    }

    .company-stats .stat-icon {
        width: 35px !important;
        min-width: 35px !important;
        height: 35px !important;
        font-size: 25px !important;
    }

    .company-stats .stat-content h3,
    .company-stats .stat-content h2 {
        font-size: 22px !important;
    }
}
/* ===== ABOUT PAGE FIX ===== */

.topbar{
    width:100%;
    padding:18px 20px;
    background:linear-gradient(135deg,#075b32,#0b7a42);
    color:#ffffff;
    text-align:center;
}

.topbar h1{
    margin:0;
    color:#ffffff;
    font-size:32px;
}

.back-home-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin:20px;
    padding:11px 20px;
    background:#0b6b35;
    color:#ffffff;
    border-radius:30px;
    font-weight:600;
}

.about-hero{
    max-width:1100px;
    margin:20px auto 60px;
    padding:45px 25px;
    text-align:center;
    background:#f3f8f4;
    border-radius:24px;
}

.about-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    background:#0b6b35;
    color:#ffffff;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.about-hero h1{
    margin-bottom:20px;
    color:#183b2d;
    font-size:52px;
    line-height:1.15;
}

.about-hero h1 span{
    color:#0b7a3d;
}

.about-hero p{
    max-width:850px;
    margin:auto;
    color:#555555;
    font-size:18px;
    line-height:1.8;
}

@media(max-width:768px){

    .topbar{
        padding:14px;
    }

    .topbar h1{
        font-size:25px;
    }

    .about-hero{
        margin:10px 14px 40px;
        padding:30px 18px;
    }

    .about-hero h1{
        font-size:34px;
    }

    .about-hero p{
        font-size:15px;
    }
/* =========================================
   ABOUT PAGE - TEAM SECTION
========================================= */

.team-section{
    width:100%;
    max-width:1200px;
    margin:70px auto;
    padding:0 20px;
}

.team-card{
    display:flex;
    align-items:center;
    gap:45px;
    margin-bottom:50px;
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.team-card.reverse{
    flex-direction:row-reverse;
}

.team-img{
    flex:0 0 320px;
}

.team-img img{
    width:100%;
    height:420px;
    object-fit:cover;
    object-position:top;
    border-radius:20px;
    cursor:pointer;
    transition:.35s;
}

.team-img img:hover{
    transform:scale(1.03);
}

.team-content{
    flex:1;
}

.team-role{
    display:inline-block;
    background:#0b7b3b;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:15px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.team-content h3{
    font-size:36px;
    color:#18492e;
    margin-bottom:15px;
}

.team-content p{
    color:#555;
    line-height:1.9;
    font-size:16px;
}

/* LIGHTBOX */

.about-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

.about-lightbox.active{
    opacity:1;
    visibility:visible;
}

.about-lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
}

.about-lightbox-close{
    position:absolute;
    top:25px;
    right:30px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#000;
    font-size:28px;
    cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

.team-card,
.team-card.reverse{
    flex-direction:column;
    text-align:center;
}

.team-img{
    width:100%;
}

.team-img img{
    width:100%;
    height:auto;
}

.team-content h3{
    font-size:28px;
}

}
/* =========================================
   ECOWOOD PREMIUM WARRANTY PAGE
========================================= */

.warranty-section {
    padding: 55px 5%;
    background:
        radial-gradient(
            circle at top left,
            rgba(69, 159, 75, 0.12),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f5faf6 0%,
            #ffffff 100%
        );
}

.warranty-section > h2 {
    max-width: 900px;
    margin: 0 auto 35px;
    color: #173d29;
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
}

.warranty-section .ash-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 12px 22px;
    border: none;
    border-radius: 35px;
    background: linear-gradient(145deg, #148245, #075d30);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(10, 103, 52, 0.22);
    transition: 0.3s ease;
}

.warranty-section .ash-back-btn:hover {
    transform: translateX(-4px);
    background: #075d30;
}

.warranty-card {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 38px;
    border: 1px solid rgba(22, 111, 53, 0.09);
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 22px 55px rgba(23, 76, 41, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.warranty-shield {
    width: 92px;
    height: 92px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(145deg, #24a455, #087039);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow:
        0 15px 30px rgba(10, 119, 58, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.warranty-card > h3 {
    margin: 0 0 16px;
    color: #126832;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
}

.warranty-intro {
    max-width: 720px;
    margin: 0 auto 32px;
    color: #4f5d54;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
}

.warranty-intro strong {
    color: #126832;
}

.warranty-box {
    position: relative;
    margin-bottom: 22px;
    padding: 24px 24px 24px 28px;
    overflow: hidden;
    border: 1px solid rgba(26, 119, 57, 0.09);
    border-left: 6px solid #168446;
    border-radius: 18px;
    background: linear-gradient(145deg, #f8fcf8, #edf7ef);
    box-shadow: 0 10px 26px rgba(24, 73, 39, 0.07);
}

.warranty-box h4 {
    margin: 0 0 12px;
    color: #135f31;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
}

.warranty-box h4 i {
    margin-right: 8px;
    color: #168446;
}

.warranty-box p {
    margin: 0;
    color: #4d5851;
    font-size: 15px;
    line-height: 1.75;
}

.warranty-box strong {
    color: #126832;
}

.covered-title {
    margin: 34px 0 18px !important;
    text-align: left !important;
    color: #173d29 !important;
    font-size: 25px !important;
}

.warranty-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.warranty-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 5px;
    border-bottom: 1px solid #e0e9e2;
    color: #343d37;
    font-size: 16px;
    line-height: 1.5;
}

.warranty-list li:last-child {
    border-bottom: none;
}

.warranty-list i {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-top: 1px;
    border-radius: 50%;
    background: #e3f4e6;
    color: #11803e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.warranty-contact-btn {
    width: min(100%, 330px);
    min-height: 56px;
    margin: 35px auto 0;
    padding: 14px 22px;
    border-radius: 35px;
    background: linear-gradient(90deg, #21a34f, #08703a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(10, 111, 53, 0.24);
    transition: 0.3s ease;
}

.warranty-contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(10, 111, 53, 0.3);
}


/* =========================================
   WARRANTY FOOTER
========================================= */

.footer {
    padding: 50px 5% 35px;
    background:
        radial-gradient(
            circle at top left,
            rgba(96, 201, 103, 0.15),
            transparent 30%
        ),
        linear-gradient(145deg, #10291b, #071b10);
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.footer .footer-box {
    min-width: 0;
}

.footer-logo {
    width: 85px;
    height: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

.footer .footer-box h3 {
    display: inline-block;
    margin: 0 0 18px;
    padding-bottom: 8px;
    border-bottom: 3px solid #67d967;
    color: #ffffff;
    font-size: 20px;
}

.footer .footer-box p {
    margin: 8px 0;
    color: #d6e2d8;
    font-size: 14px;
    line-height: 1.7;
}

.footer .footer-box a {
    display: block;
    margin: 10px 0;
    color: #d6e2d8;
    font-size: 14px;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer .footer-box a:hover {
    padding-left: 6px;
    color: #8ceb82;
}

.copyright {
    margin: 0;
    padding: 18px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    background: #071b10;
    color: #ccd8cf;
    text-align: center;
    font-size: 13px;
}

.copyright p {
    margin: 0;
}


/* =========================================
   MOBILE WARRANTY
========================================= */

@media (max-width: 700px) {

    .warranty-section {
        padding: 36px 14px 45px;
    }

    .warranty-section > h2 {
        margin-bottom: 25px;
        font-size: 29px;
        line-height: 1.3;
    }

    .warranty-section .ash-back-btn {
        margin-bottom: 24px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .warranty-card {
        padding: 25px 16px;
        border-radius: 22px;
    }

    .warranty-shield {
        width: 74px;
        height: 74px;
        margin-bottom: 18px;
        font-size: 31px;
    }

    .warranty-card > h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .warranty-intro {
        margin-bottom: 25px;
        font-size: 14px;
        line-height: 1.7;
    }

    .warranty-box {
        padding: 20px 15px 20px 18px;
        border-left-width: 5px;
        border-radius: 15px;
    }

    .warranty-box h4 {
        font-size: 17px;
        line-height: 1.45;
    }

    .warranty-box p {
        font-size: 13px;
        line-height: 1.7;
    }

    .covered-title {
        font-size: 21px !important;
    }

    .warranty-list li {
        gap: 9px;
        padding: 12px 2px;
        font-size: 13px;
    }

    .warranty-list i {
        width: 24px;
        min-width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .warranty-contact-btn {
        min-height: 52px;
        font-size: 14px;
    }

    .footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 12px;
        padding: 40px 15px 28px;
    }

    .footer .footer-box:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer .footer-box h3 {
        font-size: 17px;
    }

    .footer .footer-box p,
    .footer .footer-box a {
        font-size: 12px;
    }

    .copyright {
        padding-bottom: 85px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {

    .warranty-card {
        padding-left: 12px;
        padding-right: 12px;
    }

    .warranty-section > h2 {
        font-size: 25px;
    }

    .warranty-box h4 {
        font-size: 15px;
    }

    .warranty-list li {
        font-size: 12px;
    }
}
/* =========================================
   FILLING DETAIL CONTENT — PREMIUM STYLE
   Honeycomb / Chipboard / Wood / Tubular
========================================= */

.filling-content {
    width: min(1100px, calc(100% - 32px));
    margin: 36px auto 80px;
    padding: 42px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(22, 101, 52, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(79, 159, 56, 0.12),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(242, 249, 244, 0.96)
        );
    box-shadow:
        0 24px 65px rgba(21, 70, 43, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.filling-content::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(79, 159, 56, 0.1);
    pointer-events: none;
}

.filling-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 8px 15px;
    border-radius: 50px;
    background: #e9f6ec;
    color: #398a3e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.filling-content h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: #17241b;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.filling-content > p {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 0 32px;
    color: #66736b;
    font-size: 17px;
    line-height: 1.85;
}

.filling-specifications {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.filling-spec {
    min-height: 92px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(22, 101, 52, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 28px rgba(21, 70, 43, 0.06);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.filling-spec:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 159, 56, 0.3);
    box-shadow: 0 16px 36px rgba(21, 70, 43, 0.11);
}

.filling-spec strong {
    color: #17643b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.filling-spec span {
    color: #26392d;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
}

.filling-contact-btn {
    position: relative;
    z-index: 2;
    min-height: 54px;
    padding: 15px 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: linear-gradient(135deg, #17643b, #4f9f38);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 15px 34px rgba(22, 101, 52, 0.24);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.filling-contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 21px 44px rgba(22, 101, 52, 0.32);
}

@media (max-width: 700px) {
    .filling-content {
        width: calc(100% - 24px);
        margin: 22px auto 60px;
        padding: 27px 20px;
        border-radius: 22px;
    }

    .filling-content > p {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .filling-specifications {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .filling-spec {
        min-height: 82px;
        padding: 16px;
    }

    .filling-contact-btn {
        width: 100%;
    }
}
/* ==========================
   FILLING PAGE
========================== */

.filling-page-section{
max-width:1200px;
margin:60px auto;
padding:0 20px;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.filling-image-box{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.filling-image-box img{
width:100%;
display:block;
transition:.5s;
cursor:pointer;
}

.filling-image-box:hover img{
transform:scale(1.04);
}

.filling-content{
background:#fff;
padding:45px;
border-radius:25px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.filling-label{
display:inline-block;
padding:8px 18px;
background:#eaf8ed;
color:#1d7a35;
font-size:13px;
font-weight:700;
letter-spacing:2px;
border-radius:40px;
margin-bottom:20px;
text-transform:uppercase;
}

.filling-content h2{
font-size:42px;
font-weight:700;
margin-bottom:20px;
color:#18311d;
}

.filling-content p{
font-size:17px;
line-height:1.8;
color:#666;
margin-bottom:35px;
}

.filling-specifications{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
}

.filling-spec{
padding:20px;
border-radius:18px;
background:#f7faf8;
border:1px solid #e3ece5;
transition:.35s;
}

.filling-spec:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.filling-spec strong{
display:block;
color:#166534;
font-size:14px;
margin-bottom:8px;
}

.filling-spec span{
font-size:15px;
color:#555;
line-height:1.6;
}

.filling-contact-btn{
display:inline-flex;
margin-top:35px;
padding:16px 34px;
background:#166534;
color:#fff;
border-radius:50px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.filling-contact-btn:hover{
background:#0f4f27;
transform:translateY(-3px);
}
/* ==========================
   LIGHTBOX
========================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 24, 14, 0.88);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}


/* ==========================
   HEADER AREA POLISH
========================== */

.ash-page-header {
    position: relative;
    overflow: hidden;
    padding: 85px 20px 70px;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(144, 247, 118, 0.17),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0d2f1d,
            #175536,
            #287548
        );
    color: #ffffff;
    text-align: center;
}

.ash-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.04),
            transparent 45%,
            rgba(255, 255, 255, 0.03)
        );
    pointer-events: none;
}

.ash-back-btn {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.ash-back-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}

.ash-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.ash-heading span {
    display: inline-block;
    margin-bottom: 14px;
    color: #a2fa8d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ash-heading h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.ash-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.8;
}


/* ==========================
   PREMIUM DETAILS FINISH
========================== */

.filling-page-section {
    position: relative;
}

.filling-page-section::before {
    content: "";
    position: absolute;
    top: -70px;
    right: 4%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(79, 159, 56, 0.08);
    filter: blur(16px);
    pointer-events: none;
}

.filling-content {
    position: relative;
    overflow: hidden;
}

.filling-content::before {
    content: "";
    position: absolute;
    top: -85px;
    right: -70px;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background: rgba(79, 159, 56, 0.1);
    pointer-events: none;
}

.filling-content > * {
    position: relative;
    z-index: 2;
}

.filling-contact-btn {
    box-shadow: 0 14px 32px rgba(22, 101, 52, 0.24);
}

.filling-contact-btn:hover {
    box-shadow: 0 20px 42px rgba(22, 101, 52, 0.32);
}


/* ==========================
   TABLET RESPONSIVE
========================== */

@media (max-width: 980px) {

    .filling-page-section {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 850px;
    }

    .filling-image-box {
        max-height: none;
    }

    .filling-content {
        padding: 38px;
    }

}


/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 700px) {

    .ash-page-header {
        padding: 92px 16px 55px;
    }

    .ash-back-btn {
        top: 16px;
        left: 14px;
        padding: 9px 13px;
        font-size: 12px;
    }

    .ash-heading h1 {
        font-size: 39px;
        letter-spacing: -0.8px;
    }

    .ash-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .filling-page-section {
        margin: 35px auto 60px;
        padding: 0 14px;
        gap: 24px;
    }

    .filling-image-box {
        border-radius: 20px;
    }

    .filling-content {
        padding: 27px 20px;
        border-radius: 21px;
    }

    .filling-content h2 {
        font-size: 32px;
        line-height: 1.15;
    }

    .filling-content p {
        font-size: 15px;
        line-height: 1.72;
        margin-bottom: 26px;
    }

    .filling-specifications {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .filling-spec {
        padding: 16px;
        border-radius: 15px;
    }

    .filling-contact-btn {
        width: 100%;
        justify-content: center;
        margin-top: 27px;
    }

}


/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 390px) {

    .ash-heading h1 {
        font-size: 34px;
    }

    .ash-heading span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .filling-content {
        padding: 24px 16px;
    }

    .filling-content h2 {
        font-size: 28px;
    }

    .filling-spec strong {
        font-size: 12px;
    }

    .filling-spec span {
        font-size: 14px;
    }

}