/* =========================================
   ECOWOOD
   FILLING PAGES CSS
   PART 1
========================================= */


/* RESET */

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

body{

font-family:"Poppins",sans-serif;
background:#f5f8f6;
color:#222;
overflow-x:hidden;

}


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

.ash-page-header{

position:relative;
overflow:hidden;
padding:90px 20px 70px;

background:
linear-gradient(
135deg,
#0f3b24,
#1b6a3e,
#2f8d4d);

text-align:center;
color:#fff;

}

.ash-page-header::before{

content:"";

position:absolute;

top:-140px;
right:-90px;

width:340px;
height:340px;

border-radius:50%;

background:rgba(255,255,255,.08);

}

.ash-heading{

max-width:850px;

margin:auto;

position:relative;

z-index:2;

}

.ash-heading span{

display:inline-block;

padding:8px 18px;

border-radius:40px;

background:rgba(255,255,255,.12);

font-size:13px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:18px;

}

.ash-heading h1{

font-size:58px;

font-weight:800;

line-height:1.1;

margin-bottom:20px;

}

.ash-heading p{

font-size:18px;

line-height:1.8;

opacity:.9;

}


/* BACK BUTTON */

.ash-back-btn{

position:absolute;

left:25px;

top:25px;

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 20px;

border-radius:50px;

text-decoration:none;

background:rgba(255,255,255,.12);

color:#fff;

font-weight:600;

backdrop-filter:blur(12px);

transition:.35s;

z-index:5;

}

.ash-back-btn:hover{

background:#fff;

color:#166534;

}


/* ===========================
MAIN SECTION
=========================== */

.filling-page-section{

max-width:1200px;

margin:70px auto;

padding:0 20px;

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}


/* IMAGE */

.filling-image-box{

background:#fff;

border-radius:30px;

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);

}


/* CONTENT */

.filling-content{

background:#fff;

padding:45px;

border-radius:30px;

box-shadow:

0 20px 60px rgba(0,0,0,.08);

position:relative;

overflow:hidden;

}

.filling-content::before{

content:"";

position:absolute;

right:-90px;

top:-90px;

width:220px;

height:220px;

border-radius:50%;

background:rgba(22,101,52,.06);

}
/* =========================================
   ECOWOOD
   FILLING PAGES CSS
   PART 2
========================================= */


/* LABEL */

.filling-label{

display:inline-block;

padding:8px 18px;

border-radius:40px;

background:#e9f8ed;

color:#166534;

font-size:13px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:20px;

}


/* HEADING */

.filling-content h2{

font-size:46px;

font-weight:800;

line-height:1.15;

color:#18311d;

margin-bottom:20px;

}


/* PARAGRAPH */

.filling-content p{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:35px;

}


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

.filling-specifications{

display:grid;

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

gap:18px;

}


/* CARD */

.filling-spec{

background:#f8fbf9;

border:1px solid #e4ece7;

border-radius:18px;

padding:22px;

transition:.35s;

cursor:default;

}


.filling-spec:hover{

transform:translateY(-6px);

border-color:#39a35a;

box-shadow:

0 18px 40px rgba(0,0,0,.08);

}


/* TITLE */

.filling-spec strong{

display:block;

font-size:13px;

font-weight:700;

text-transform:uppercase;

letter-spacing:1px;

color:#166534;

margin-bottom:8px;

}


/* VALUE */

.filling-spec span{

display:block;

font-size:15px;

line-height:1.7;

color:#444;

}


/* BUTTON */

.filling-contact-btn{

display:inline-flex;

align-items:center;

justify-content:center;

margin-top:35px;

padding:16px 34px;

border-radius:50px;

text-decoration:none;

background:

linear-gradient(
135deg,
#166534,
#2e9b52);

color:#fff;

font-size:15px;

font-weight:700;

transition:.35s;

box-shadow:

0 18px 40px rgba(22,101,52,.25);

}


.filling-contact-btn:hover{

transform:translateY(-4px);

box-shadow:

0 24px 50px rgba(22,101,52,.35);

background:

linear-gradient(
135deg,
#0f4b26,
#228246);

}

/* =========================================
   ECOWOOD
   FILLING PAGES CSS
   PART 3 — LIGHTBOX, GLASS EFFECTS
   AND PREMIUM ANIMATIONS
========================================= */


/* ===========================
CONTENT LAYERS
=========================== */

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


/* ===========================
CONTENT GLASS SHINE
=========================== */

.filling-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            115deg,
            transparent 18%,
            rgba(255, 255, 255, 0.4) 45%,
            transparent 72%
        );
    transform: translateX(-125%);
    pointer-events: none;
    transition: transform 0.9s ease;
}

.filling-content:hover::after {
    transform: translateX(125%);
}


/* ===========================
IMAGE BOX PREMIUM BORDER
=========================== */

.filling-image-box {
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(22, 101, 52, 0.1);
}

.filling-image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(22, 101, 52, 0.06);
    pointer-events: none;
}

.filling-image-box::after {
    content: "Tap image to enlarge";
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    padding: 9px 15px;
    border-radius: 50px;
    background: rgba(11, 45, 27, 0.78);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translate(-50%, 10px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    pointer-events: none;
}

.filling-image-box:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
}


/* ===========================
SPEC CARD SHINE
=========================== */

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

.filling-spec::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -45px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: rgba(79, 159, 56, 0.08);
    transition: transform 0.35s ease;
}

.filling-spec:hover::before {
    transform: scale(1.2);
}

.filling-spec strong,
.filling-spec span {
    position: relative;
    z-index: 2;
}


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

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at center,
            rgba(35, 89, 54, 0.2),
            rgba(4, 18, 10, 0.94)
        );
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox::before {
    content: "Tap anywhere to close";
    position: absolute;
    top: 22px;
    left: 50%;
    padding: 9px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 700;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox img {
    display: block;
    max-width: min(1100px, 94vw);
    max-height: 86vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
    transform: scale(0.9);
    transition: transform 0.35s ease;
}

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


/* ===========================
PAGE LOAD ANIMATION
=========================== */

.ash-heading,
.filling-image-box,
.filling-content {
    animation-duration: 0.85s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ash-heading {
    animation-name: fillingFadeUp;
}

.filling-image-box {
    animation-name: fillingSlideLeft;
    animation-delay: 0.12s;
}

.filling-content {
    animation-name: fillingSlideRight;
    animation-delay: 0.22s;
}

@keyframes fillingFadeUp {

    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fillingSlideLeft {

    from {
        opacity: 0;
        transform: translateX(-55px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes fillingSlideRight {

    from {
        opacity: 0;
        transform: translateX(55px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* ===========================
BUTTON ARROW EFFECT
=========================== */

.filling-contact-btn::after {
    content: "→";
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.filling-contact-btn:hover::after {
    transform: translateX(5px);
}


/* ===========================
FOCUS ACCESSIBILITY
=========================== */

.ash-back-btn:focus-visible,
.filling-contact-btn:focus-visible,
.filling-image-box img:focus-visible {
    outline: 3px solid rgba(79, 159, 56, 0.42);
    outline-offset: 4px;
}


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

::selection {
    background: rgba(79, 159, 56, 0.24);
    color: #123b27;
}
/* =========================================
   ECOWOOD
   FILLING PAGES CSS
   PART 4 — TABLET & MOBILE RESPONSIVE
========================================= */


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

@media (max-width: 980px) {

    .ash-page-header {
        padding: 82px 18px 62px;
    }

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

    .ash-heading p {
        font-size: 17px;
    }

    .filling-page-section {
        max-width: 850px;
        margin: 50px auto 70px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .filling-image-box {
        width: 100%;
    }

    .filling-content {
        padding: 38px;
    }

}


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

@media (max-width: 700px) {

    .ash-page-header {
        padding: 90px 16px 54px;
    }

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

    .ash-heading span {
        margin-bottom: 14px;
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1.8px;
    }

    .ash-heading h1 {
        margin-bottom: 15px;
        font-size: 39px;
        line-height: 1.12;
    }

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

    .filling-page-section {
        width: 100%;
        margin: 34px auto 58px;
        padding: 0 14px;
        gap: 23px;
    }

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

    .filling-image-box::after {
        bottom: 12px;
        padding: 7px 12px;
        font-size: 10px;
    }

    .filling-content {
        padding: 27px 19px;
        border-radius: 22px;
    }

    .filling-label {
        margin-bottom: 15px;
        padding: 7px 13px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .filling-content h2 {
        margin-bottom: 15px;
        font-size: 32px;
        line-height: 1.16;
    }

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

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

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

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

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

    .filling-contact-btn {
        width: 100%;
        min-height: 52px;
        margin-top: 27px;
        padding: 14px 20px;
    }

    .lightbox {
        padding: 14px;
    }

    .lightbox::before {
        top: 14px;
        padding: 7px 12px;
        font-size: 10px;
    }

    .lightbox img {
        max-width: 95vw;
        max-height: 82vh;
        border-radius: 15px;
    }

}


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

@media (max-width: 390px) {

    .ash-page-header {
        padding-left: 12px;
        padding-right: 12px;
    }

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

    .ash-heading p {
        font-size: 14px;
    }

    .ash-back-btn {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        font-size: 0;
    }

    .ash-back-btn::before {
        content: "←";
        font-size: 18px;
    }

    .filling-page-section {
        padding: 0 11px;
    }

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

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

    .filling-content p {
        font-size: 14.5px;
    }

    .filling-spec {
        padding: 15px;
    }

}


/* ===========================
MOBILE ANIMATION ADJUSTMENT
=========================== */

@media (max-width: 700px) {

    .filling-image-box,
    .filling-content {
        animation-name: fillingFadeUp;
    }

    .filling-image-box {
        animation-delay: 0.1s;
    }

    .filling-content {
        animation-delay: 0.2s;
    }

}
/* =========================================
   ECOWOOD
   FILLING PAGES CSS
   PART 5 — FINAL POLISH, COMPATIBILITY
   AND ACCESSIBILITY
========================================= */


/* ===========================
SMOOTH SCROLL
=========================== */

html {
    scroll-behavior: smooth;
}


/* ===========================
LINK RESET
=========================== */

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


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

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


/* ===========================
FINAL CARD DEPTH
=========================== */

.filling-content {
    border: 1px solid rgba(22, 101, 52, 0.08);
    box-shadow:
        0 25px 70px rgba(18, 61, 37, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.filling-spec {
    box-shadow:
        0 10px 28px rgba(21, 70, 43, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* ===========================
FINAL HOVER POLISH
=========================== */

.filling-image-box,
.filling-content,
.filling-spec,
.filling-contact-btn,
.ash-back-btn {
    -webkit-tap-highlight-color: transparent;
}

.filling-image-box:active img {
    transform: scale(1.02);
}

.filling-contact-btn:active {
    transform: translateY(-1px);
}


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

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #edf4ef;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #edf4ef;
    border-radius: 50px;
    background:
        linear-gradient(
            180deg,
            #4f9f38,
            #17643b
        );
}

::-webkit-scrollbar-thumb:hover {
    background: #17643b;
}


/* ===========================
BACKDROP FILTER FALLBACK
=========================== */

@supports not (
    (backdrop-filter: blur(10px)) or
    (-webkit-backdrop-filter: blur(10px))
) {

    .ash-back-btn {
        background: rgba(255, 255, 255, 0.2);
    }

    .filling-image-box::after {
        background: rgba(10, 40, 24, 0.92);
    }

}


/* ===========================
REDUCED MOTION SUPPORT
=========================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .ash-heading,
    .filling-image-box,
    .filling-content {
        opacity: 1;
        transform: none;
    }

}


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

@media (
    max-width: 900px
) and (
    orientation: landscape
) {

    .ash-page-header {
        padding-top: 76px;
        padding-bottom: 48px;
    }

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

    .filling-page-section {
        max-width: 1050px;
    }

}


/* ===========================
PRINT STYLES
=========================== */

@media print {

    .ash-back-btn,
    .filling-contact-btn,
    .lightbox {
        display: none !important;
    }

    body {
        background: #ffffff;
        color: #000000;
    }

    .ash-page-header {
        padding: 30px 20px;
        background: #ffffff !important;
        color: #000000 !important;
    }

    .ash-heading span,
    .ash-heading h1,
    .ash-heading p {
        color: #000000 !important;
    }

    .filling-page-section {
        display: block;
        max-width: 100%;
        margin: 25px 0;
    }

    .filling-image-box,
    .filling-content,
    .filling-spec {
        box-shadow: none !important;
        border: 1px solid #dddddd !important;
    }

}


/* ===========================
FINAL SMALL SCREEN FIX
=========================== */

@media (max-width: 340px) {

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

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

    .filling-content {
        padding: 21px 14px;
    }

    .filling-spec {
        padding: 14px;
    }

    .filling-contact-btn {
        font-size: 14px;
    }

}
