html{
    scroll-behavior:smooth;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #2ecc71 #111;
}

body{
    font-family: 'Montserrat', sans-serif;
}

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

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.80) 0%,
        rgba(0,0,0,.55) 50%,
        rgba(0,0,0,.35) 100%
    );
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 7%;
    background: transparent;
    transition: 0.4s ease;
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
    position:relative;
    width:190px;
    height:58px;
}

.logo img{
    position:absolute;
    left:0;
    top:0;

    height:65px;
    width:auto;

    transition:0.4s ease;
}
.logo-white{
    opacity:1;
}

.logo-black{
    opacity:0;
}

.navbar.scrolled{
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(15px);
    padding:12px 8%;
}

.navbar.scrolled .logo-white{
    opacity:0;
}

.navbar.scrolled .logo-black{
    opacity:1;
}
.navbar.scrolled nav a{
    color:#111;
}

nav{
    display:flex;
    gap:38px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:0.3s ease;

}

.quote-btn{
    background:#1F6B3D;
    color:white;
    text-decoration:none;
    padding:14px 30px;
    font-weight: 600;
    border-radius:8px;
}

.hero{
    min-height:100vh;
    position:relative;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.hero-content{
    position:relative;
    z-index:2;

    height:100%;
    padding-top:90px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-left:10%;
    color:white;
}

.hero-tag{
    color:#D4AF37;
    margin-bottom:30px;
    letter-spacing:2px;
}

.hero-content h1{
    font-size:3.2rem;
    max-width:820px;
    font-weight: 700;
    line-height:1.1;
}

.hero-text{
    margin-top:25px;
    max-width:650px;
    line-height:1.8;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:20px;
}

.primary-btn{
    background:#1F6B3D;
    color:white;
    text-decoration:none;
    padding:16px 30px;
    border-radius:8px;
}

.secondary-btn{
    border:1px solid white;
    color:white;
    text-decoration:none;
    padding:16px 30px;
    border-radius:8px;
}

.scroll-indicator{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:white;
    font-size:14px;
    letter-spacing:2px;
    animation:float 2s infinite;
}

@keyframes float{
    0%,100%{
        transform:translateX(-50%) translateY(0);
    }
    50%{
        transform:translateX(-50%) translateY(-10px);
    }
}

.hero-stats{
    display:flex;
    gap:55px;
    margin-top:45px;
}
.stat{
    border-left:2px solid rgba(255,255,255,0.15);
    padding-left:25px;
}
.stat h2{
    font-size:2.5rem;
    font-weight:700;
    color:white;
}
.stat p{
    color:rgba(255,255,255,0.75);
}
nav a{
    position:relative;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:#D4AF37;
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}
.primary-btn:hover{
    transform:translateY(-4px);
    box-shadow: 0 10px 25px rgba(31,107,61,.35);
}

.secondary-btn:hover{
    background:white;
    color:black;
}
.primary-btn,
.secondary-btn{
    transition: all 0.3s ease;
    font-weight: 600;
}
.quote-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(31,107,61,.35);
}

.mouse{
    width:24px;
    height:38px;
    border:2px solid white;
    border-radius:20px;
    margin:auto;
    margin-bottom:10px;
    position:relative;
}

.mouse::before{
    content:"";
    width:4px;
    height:8px;
    background:white;
    position:absolute;
    left:50%;
    top:6px;
    transform:translateX(-50%);
    border-radius:10px;
    animation:scroll 2s infinite;
}

@keyframes scroll{
    0%{
        opacity:0;
        transform:translate(-50%,0);
    }
    100%{
        opacity:1;
        transform:translate(-50%,12px);
    }
}
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #1f8b4c,
    #2ecc71
  );
  border-radius: 10px;
  border: 2px solid #111;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #27ae60,
    #34d97b
  );
}

/* =====================================
   ABOUT PREVIEW
===================================== */

.about-preview{

    padding:75px 8%;

    display:grid;

    grid-template-columns:52% 48%;

    gap:70px;

    align-items:start;

    background:#f8f8f8;

    overflow:hidden;
}

/* IMAGE SIDE */

.about-image{

    position:relative;
    height:500px;
}

/* Decorative Strip */

.image-bg-strip{

    position:absolute;

    width:120px;

    height:430px;

    background:#d8d4cc;

    border-radius:35px;

    left:-40px;

    top:60px;

    z-index:1;
}

.about-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:30px;

    position:relative;

    z-index:2;

    display:block;

    box-shadow:
    0 25px 50px rgba(0,0,0,.08);
    
    transition:0.5s ease;
}
.about-image img:hover{

    transform:scale(1.03);
}

/* ESTABLISHED CARD */

.experience-card{

    position:absolute;

    left:30px;

    bottom:30px;

    padding:22px;

    min-width:180px;

    background:white;

    border-radius:24px;

    z-index:5;

    box-shadow:
    0 25px 50px rgba(0,0,0,.12);
}

.experience-card h3{

    font-size:3rem;

    line-height:1;

    color:#1F6B3D;

    font-weight:800;
}

.experience-card p{

    margin-top:10px;

    font-size:1.35rem;

    font-weight:700;

    color:#111;
}

.experience-card span{

    display:block;

    margin-top:10px;

    font-size:1rem;

    color:#777;
}

/* CONTENT SIDE */

.about-content{

    max-width:580px;
}

.section-label{

    color:#1F6B3D;

    font-size:.8rem;

    letter-spacing:8px;

    font-weight:700;
}

.about-content h2{

    margin-top:20px;
    max-width: 520px;

    font-size:2.4rem;

    line-height:1.15;

    font-weight:800;

    color:#111;
}

/* GREEN SUBHEADING */

.tech-line{

    margin-top:18px;

    margin-bottom:30px;

    color:#1F6B3D;

    font-size:0.9rem;

    font-weight:600;

    letter-spacing:1.5px;
}

.about-content p{

    font-size:1rem;

    line-height:1.9;

    color:#555;

    margin-bottom:22px;
}

/* BADGES */

.feature-badges{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:35px;
}

.badge{

    padding:10px 16px;

    background:white;

    border:1px solid #e5e5e5;

    border-radius:40px;

    font-size:.85rem;

    font-weight:600;

    color:#222;

    transition:.35s ease;
}

.badge:hover{

    background:#1F6B3D;

    border-color:#1F6B3D;

    color:white;

    transform:translateY(-3px);
}

/* BUTTON */

.about-btn{

    display:inline-block;

    margin-top:25px;

    background:#1F6B3D;

    color:white;

    text-decoration:none;

    padding:15px 28px;
    font-size:0.95rem;

    border-radius:10px;

    font-weight:600;

    transition:.35s ease;
}

.about-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 30px rgba(31,107,61,.25);
}

/* =====================================
   REVEAL ANIMATION
===================================== */

.reveal-left{

    opacity:0;

    transform:translateX(-100px);

    transition:1s ease;
}

.reveal-right{

    opacity:0;

    transform:translateX(100px);

    transition:1s ease;
}

.reveal-active{

    opacity:1;

    transform:translateX(0);
}

/* ==================================
   ABOUT PAGE HERO
================================== */

.about-page-hero{

    position:relative;
    padding:100px 0 60px;
    min-height:100vh;
    overflow:hidden;
    background-image:
    url("../assets/images/about-hero.png");

    background-size:cover;

    background-position:center;
}

/* DARK OVERLAY */

.about-page-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.85),
        rgba(0,0,0,.45)
    );
}

/* BACK BUTTON */

.about-back-btn{

    position:absolute;

    top:40px;

    left:8%;

    z-index:5;
}

.about-back-btn a{

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.about-back-btn a:hover{

    color:#D4AF37;
}

/* CONTENT */

.about-page-content{

    position:relative;

    z-index:5;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding-left:8%;

    max-width:750px;

    color:white;
}

.about-page-label{

    color:#D4AF37;

    font-size:.9rem;

    letter-spacing:5px;

    font-weight:700;
}

.about-page-content h1{

    margin-top:20px;

    font-size:3.1rem;

    line-height:1.05;
    margin-bottom:25px;
    max-width:700px;
}

.about-page-content > p{

    margin-top:25px;

    line-height:1.9;

    color:#dddddd;

    max-width:650px;
}

/* BUTTONS */

.about-page-buttons{

    display:flex;

    gap:18px;

    margin-top:35px;
}

.about-page-primary{

    text-decoration:none;

    background:#1F6B3D;

    color:white;

    padding:16px 30px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.about-page-primary:hover{

    transform:translateY(-3px);
}

.about-page-secondary{

    text-decoration:none;

    color:white;

    border:1px solid white;

    padding:16px 30px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.about-page-secondary:hover{

    background:white;

    color:black;
}

/* STATS */

.about-page-stats{
    display:flex;
    margin-top:50px;
    gap:45px;
    flex-wrap:wrap;
}

.about-stat h2{

    color:white;

    font-size:1.7rem;

    margin-bottom:5px;
}

.about-stat p{

    color:#dddddd;
}

/* ==================================
   WHO WE ARE SECTION
================================== */

.about-company-section{

    padding:90px 8%;

    background:#f8f8f8;
}

.about-company-container{

    max-width:1100px;

    margin:auto;
}

.about-company-label{
    color:#1F6B3D;
    letter-spacing:4px;
    font-size:.9rem;
    font-weight:700;
}

.about-company-container h2{
    margin-top:18px;
    margin-bottom:30px;
    font-size:2.2rem;
    line-height:1.2;
    color:#111;
    max-width:750px;
    margin-bottom:30px;
}

.about-company-container p{
    font-size:1.08rem;
    line-height:1.8;
    color:#555;
    max-width:900px;
    margin-bottom:25px;
}

.about-company-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-top:45px;
}

.about-highlight{

    padding:14px 24px;

    background:white;

    border:1px solid #e8e8e8;

    border-radius:50px;

    font-size:.95rem;

    font-weight:600;

    color:#333;

    transition:.3s ease;
}

.about-highlight:hover{

    background:#1F6B3D;

    color:white;

    border-color:#1F6B3D;

    transform:translateY(-3px);
}

.about-company-card:hover{

    transform:translateY(-8px);

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

.about-company-card h3{

    font-size:2.4rem;

    color:#1F6B3D;

    margin-bottom:10px;
}

.about-company-card span{

    color:#666;

    font-size:1rem;
}

.about-company-container p{
    font-size:1rem;
    line-height:1.9;
    color:#666;
    max-width:900px;
}
/* ==================================
   WHY ENCRAFT & WHY NCL VEKA
================================== */

.why-systems{

    padding:90px 8%;

    background:#ffffff;
}

.why-systems-wrapper{

    background:#f8f8f8;

    border-radius:30px;

    padding:55px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    border:1px solid #ececec;

    box-shadow:
    0 20px 50px rgba(0,0,0,.04);
}

.system-column{

    position:relative;
}

.system-column:first-child{

    border-right:1px solid #e6e6e6;

    padding-right:50px;
}

.system-column:last-child{

    padding-left:10px;
}

.system-label{

    display:inline-block;

    color:#1F6B3D;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:18px;
}

.system-column h2{

    font-size:2rem;

    line-height:1.25;

    color:#111;

    margin-bottom:24px;

    max-width:500px;
}

.system-column p{

    color:#555;

    line-height:1.95;

    font-size:1rem;

    margin-bottom:22px;
}
.system-column p:last-of-type{

    margin-bottom:0;
}

/* ==================================
   PROCESS SECTION
================================== */

.process-section{

    padding:70px 8%;

    background:#fafafa;
}

.process-heading{

    margin-bottom:20px;
}

.process-label{

    color:#1F6B3D;

    letter-spacing:4px;

    font-size:.85rem;

    font-weight:700;
}

.process-heading h2{

    margin-top:15px;

    font-size:2.5rem;

    line-height:1.15;

    color:#111;
}

/* PROCESS ITEMS */

.process-container{

    display:flex;

    flex-direction:column;
}

.process-item{

    display:flex;

    gap:30px;

    padding:25px 0;

    border-bottom:1px solid #e5e5e5;

    transition:.3s ease;
}

.process-item:last-child{

    border-bottom:none;
}

.process-number{

    min-width:50px;

    font-size:1.8rem;

    font-weight:300;

    color:#1F6B3D;

    line-height:1;
}

.process-content h3{

    font-size:1.4rem;

    margin-bottom:10px;

    color:#111;

    font-weight:600;
}

.process-content p{

    max-width:900px;

    color:#666;

    line-height:1;

    font-size:1rem;
}

.process-content strong{

    color:#111;

    font-weight:700;
}

/* HOVER */

.process-item:hover{

    padding-left:12px;
}

.process-item:hover .process-number{

    transform:scale(1.1);

    transition:.3s;
}

/* ==================================
   FINAL CTA
================================== */

.about-cta{

    padding:60px 8%;

    background:
    linear-gradient(
        135deg,
        #0f3d24,
        #1F6B3D
    );

    text-align:center;

    color:white;
}

.about-cta-content{

    max-width:850px;

    margin:auto;
}

.about-cta-content span{

    display:block;

    letter-spacing:4px;

    font-size:.85rem;

    font-weight:700;

    margin-bottom:20px;

    color:#D4AF37;
}

.about-cta-content h2{

    font-size:2.4rem;

    line-height:1.2;

    margin-bottom:25px;
}

.about-cta-content p{

    max-width:650px;

    margin:auto;

    line-height:1.9;

    color:rgba(255,255,255,.85);
}

.about-cta-btn{

    display:inline-block;

    margin-top:40px;

    background:white;

    color:#1F6B3D;

    text-decoration:none;

    padding:18px 36px;

    border-radius:10px;

    font-weight:700;

    transition:.35s ease;
}

.about-cta-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 30px rgba(0,0,0,.2);
}

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

.products-showcase{
    padding:70px 8%;
    background:#f6f4ef;
}

.products-header{
    margin-bottom:30px;
}

.products-label{
    color:#1F6B3D;
    letter-spacing:4px;
    font-size:.9rem;
    font-weight:700;
}

.products-header h2{
    margin-top:20px;
    font-size:3rem;
    line-height:1.1;
    max-width:900px;
}

.products-header p{
    margin-top:20px;
    max-width:650px;
    font-size:1.1rem;
    color:#666;
    line-height:1.8;
}

.products-category{
    margin-top:30px;
}

.products-category h3{
    font-size:3rem;
    margin-bottom:30px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.product-card{
    background:white;
    padding:18px;
    border:1px solid #ececec;
    transition:all .35s ease;
    overflow:hidden;
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    margin-bottom:25px;
    transition:.5s;
    border-radius:12px;
}

.product-card span{
    color:#1F6B3D;
    font-size:.8rem;
    letter-spacing:3px;
    font-weight:700;
}

.product-card h4{
    margin-top:15px;
    font-size:2rem;
}

.product-card p{
    margin-top:18px;
    line-height:1.8;
    color:#666;
}

.product-card ul{
    margin-top:25px;
    list-style:none;
}

.product-card ul li{
    margin-bottom:12px;
    color:#444;
}

.product-card ul li::before{
    content:"✓";
    color:#1F6B3D;
    margin-right:10px;
}

.product-card:hover{
    background:#f5f1ea;
    border-left:#1F6B3D solid 5px;
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-card:hover h4{
    color:#1F6B3D;
}

/* gallery */
.gallery-section{
    padding:80px 8%;
    background:#f8f9fb;
}

.gallery-header{
    max-width:850px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.gallery-tag{
    color:#0a4d8c;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.gallery-header h2{
    margin-top:15px;
    font-size:36px;
    line-height:1.3;
    color:#111;
}

.gallery-header p{
    margin-top:20px;
    font-size:17px;
    color:#666;
    line-height:1.8;
}

.gallery-grid{
    column-count:4;
    column-gap:20px;
}

.gallery-item{
    overflow:hidden;
    margin-bottom:20px;
    border-radius:12px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    display:block;
    border-radius:12px;
    transition:0.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* LIGHTBOX */

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.95);

    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    z-index:9999;
}

.lightbox img{
    max-width:80%;
    max-height:70vh;
    border-radius:12px;
}

.close-btn{
    position:absolute;
    top:20px;
    right:40px;

    font-size:45px;
    color:white;

    cursor:pointer;
}

.nav-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,0.15);

    color:white;

    font-size:35px;

    cursor:pointer;
}

.prev-btn{
    left:30px;
}

.next-btn{
    right:30px;
}

.nav-btn:hover{
    background:white;
    color:black;
}

.thumbnail-container{

    width:90%;
    display:flex;

    gap:10px;

    margin-top:25px;

    overflow-x:auto;

    padding-bottom:10px;
}

.thumbnail{

    width:90px;
    height:70px;

    object-fit:cover;

    border-radius:6px;

    cursor:pointer;

    opacity:0.5;

    border:2px solid transparent;

    transition:0.3s;
}

.thumbnail.active{
    opacity:1;
    border:2px solid white;
}

.thumbnail-container::-webkit-scrollbar{
    height:6px;
}

.thumbnail-container::-webkit-scrollbar-thumb{
    background:#777;
}

/* =================================
   WHY EUROGREEN
================================= */

.why-us-section{
    padding:75px 8%;
    background:#f8f8f8;
}

.why-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px;
}

.why-header span{
    color:#0b4a88;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
}

.why-header h2{
    margin-top:18px;
    font-size:2.5rem;
    line-height:1.15;
    color:#111;
}

.why-header p{
    margin-top:25px;
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    border-top:1px solid #ddd;
    border-left:1px solid #ddd;
}

.why-box{
    padding:40px;
    border-right:1px solid #ddd;
    border-bottom:1px solid #ddd;
    min-height:220px;
}

.number{
    font-size:50px;
    font-weight:300;
    color:rgba(0,0,0,0.05);
    line-height:1;
    margin-bottom:15px;
}

.why-box h3{
    font-size:22px;
    font-weight:500;
    margin-bottom:12px;
    color:#111;
}

.why-box p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

.why-stats{
    display:flex;
    justify-content:space-between;
    gap:30px;

    margin-top:30px;
    padding-top:30px;
}

.stat-item{
    flex:1;
    text-align:center;
}

.stat-item h2{
    color:#0b4a88;
    font-size:35px;
    font-weight:700;
    margin-bottom:10px;
}

.stat-item p{
    text-transform:uppercase;
    letter-spacing:1px;
    color:#666;
    font-size:12px;
}


/* contact */

.contact-section{
    padding:75px 8%;
    background:#f7f7f7;
}

.contact-wrapper{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:70px;
    align-items:start;
}

.contact-label{
    display:block;

    font-size:13px;
    letter-spacing:3px;
    color:#1f5f3d;

    margin-bottom:25px;
    font-weight:600;
}

.contact-left h2{
    font-size:2.6rem;
    line-height:1.1;
    color:#111;
    max-width:420px;
    margin-bottom:30px;
    font-weight:700;
}

.contact-intro{
    font-size:16px;
    line-height:1.9;
    color:#666;

    max-width:600px;
    margin-bottom:50px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.info-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.info-icon{
    width:40px;
    height:40px;

    background:#1f5f3d;
    color:white;

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

    font-size:14px;
}

.info-item span{
    display:block;

    font-size:12px;
    letter-spacing:2px;

    color:#777;
    margin-bottom:8px;
}

.info-item h4{
    font-size:16px;
    line-height:1.7;
    color:#111;
    font-weight:500;
}

.contact-map{
    margin-top:50px;
    border:1px solid #ddd;
}

.contact-map iframe{
    width:100%;
    height:180px;
    border:none;
}

.quote-box{
    background:#f3efe6;
    padding:35px;
    border:1px solid #e1dbcf;
}

.quote-badges{
    display:flex;
    gap:10px;
    flex-wrap:wrap;

    margin-bottom:20px;
}

.quote-badges span{
    border:1px solid #d7cfbf;

    padding:10px 18px;

    font-size:13px;
    color:#1f5f3d;

    background:white;
}

.quote-box h3{
    font-size:30px;
    line-height:1.1;

    margin-bottom:12px;
    color:#111;
}

.quote-box p{
    color:#666;
    margin-bottom:25px;

    line-height:1.8;
}

.quote-box form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.form-row{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:18px;
}
.form-group{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.form-group label{
    font-size:13px;
    letter-spacing:1px;
    color:#4d4d4d;
    font-weight:500;
}

.form-group label span{
    color:#b55b45;
}

.form-group label small{
    color:#888;
    font-size:12px;
    font-weight:400;
}
#form-success{
    display:none;
    background:#e8f5ee;
    border:1px solid #1F6B3D;
    padding:18px;
    margin-bottom:20px;
}

#form-success strong{
    display:block;
    color:#1F6B3D;
    margin-bottom:8px;
    font-size:16px;
}

#form-success p{
    margin:0;
    color:#1F6B3D;
    font-size:14px;
    line-height:1.6;
}

.quote-box input,
.quote-box select,
.quote-box textarea{

    width:100%;
    padding:15px;

    border:1px solid #d8d2c5;
    background:white;

    font-size:15px;
    font-family:inherit;
    outline:none;
}
.quote-box textarea{
    resize:vertical;
    min-height:90px;
    margin-bottom:15px;
}

.quote-box textarea::placeholder{
    color:#777;
    line-height:1.6;
}

.quote-box input:focus,
.quote-box select:focus,
.quote-box textarea:focus{

    border-color:#1f5f3d;
}

.quote-box button{

    background:#1f5f3d;
    color:white;

    border:none;

    padding:16px;
    cursor:pointer;

    font-size:16px;
    font-weight:600;

    transition:.3s;
}

.quote-box button:hover{

    background:#17482e;
}
/* faq section */

.faq-section{
    padding:75px 8%;
    background:#f4f1ea;
}

.faq-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.faq-header span{
    color:#1F6B3D;
    letter-spacing:3px;
    font-size:14px;
    font-weight:700;
}

.faq-header h2{
    margin-top:15px;
    font-size:2.6rem;
}

.faq-header p{
    margin-top:15px;
    color:#666;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:white;
    border:1px solid #e7e7e7;
    margin-bottom:18px;
    transition:.3s;
    overflow:hidden;
}
.faq-item:hover{
    border-color:#1F6B3D;
    box-shadow:0 15px 30px rgba(0, 0, 0, .06);
    transform:translateY(-2px);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:24px 30px;
    display:flex;
    justify-content:space-between;
    cursor:pointer;
    font-size:1.1rem;
    font-weight:600;
}
.faq-question span{
    color:#1F6B3D;
    font-size:1.5rem;
    font-weight:300;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
}

.faq-answer p{
    padding:0 30px 30px 30px;
    color:#666;
    line-height:1;
    font-size:1rem;
}
.reviews-section{
    padding:75px 8%;
    background:#111;

}

.reviews-header{
    text-align:center;
    margin-bottom:50px;
}

.reviews-header span{
    color:#1F6B3D;
    letter-spacing:3px;
    font-size:14px;
    font-weight:700;
}

.reviews-header h2{
    margin-top:15px;
    font-size:2.6rem;
    color:#fff;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review-card{
    background:#181818;
    border:1px solid rgba(255,255,255,.08);
    padding:40px;
    transition:.3s ease;
}
.review-card:hover{
    transform:translateY(-6px);
    border-color:#1F6B3D;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}


.stars{
    color:#D4AF37;
    margin-bottom:20px;
    font-size:20px;
}

.review-card p{
    color:#fff;
    line-height:1.8;
    margin-bottom:20px;
}

.review-card h4{
    margin-bottom:5px;
    color:#fff;
}

.review-card span{
    color:#817f7f;
    font-size:14px;
}


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

.site-footer{

    background:#111111;

    border-top:1px solid #222;

    padding:40px 8%;
}

.footer-inner{

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:80px;
}

.footer-left{

    min-width:500px;
}

.footer-logo{

    width:120px;

    margin-bottom:20px;
}

.footer-links{

    display:flex;

    gap:28px;

    flex-wrap:nowrap;
}

.footer-links a{

    color:#7f7f7f;

    text-decoration:none;

    font-size:1rem;

    transition:.3s;
    margin-top:10px;
}

.footer-links a:hover{

    color:#2ecc71;
}

.footer-right{

    max-width:900px;
    padding-top:0;
}

.footer-right p{

    color:#6d6d6d;

    font-size:15px;

    line-height:1.8;

    text-align:right;
}

.footer-logo{
    width:150px;
    margin-bottom:15px;
}

.footer-left::after{

    content:"";

    display:block;

    width:60px;

    height:2px;

    background:#1F6B3D;

    margin-top:15px;
    margin-bottom:20px;
}
.section-label,
.products-label,
.faq-label,
.review-label{
    position:relative;
}
.section-label::after,
.products-label::after,
.faq-label::after,
.review-label::after{
    content:"";
    display:block;
    width:60px;
    height:2px;
    background:#1F6B3D;
    margin-top:12px;
}

/* ==========================
   WHATSAPP FLOAT
========================== */

.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    width:68px;
    height:68px;

    background:#25D366;

    border-radius:50%;

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

    z-index:9999;

    box-shadow:
    0 10px 30px rgba(37,211,102,.45);

    transition:.35s ease;
}

.whatsapp-float:hover{

    transform:translateY(-5px) scale(1.08);

    box-shadow:
    0 18px 40px rgba(37,211,102,.55);
}

.whatsapp-float svg{

    width:34px;
    height:34px;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        box-shadow:
        0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }
}
.menu-toggle{
    display:none;
    cursor:pointer;
    font-size:28px;
    color:white;
    font-weight:700;
}

.navbar.scrolled .menu-toggle{
    color:#111;
}
nav:not(.active){
    right:-100%;
}

.whatsapp-float{
    animation:whatsappPulse 2.5s infinite;
}
/* ==========================
   RESPONSIVE DESIGN
========================== */

/* Tablet */
@media (max-width: 1200px){

    .about-content h2{
        font-size:3.2rem;
    }

    .about-image img{
        height:500px;
    }
}

/* Tablet */
@media (max-width: 1100px){

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:70px;
    }

    .contact-left h2{
        font-size:50px;
    }

    .quote-box h3{
        font-size:40px;
    }
}

/* Tablet */
@media (max-width: 992px){

    .about-preview{
        grid-template-columns:1fr;
        gap:90px;
    }

    .about-content{
        max-width:100%;
    }

    .about-image img{
        height:500px;
    }

    .about-page-content h1{
        font-size:3.2rem;
    }

    .about-page-stats{
        gap:40px;
    }

    .why-systems-wrapper{
        grid-template-columns:1fr;
        gap:60px;
        padding:50px;
    }

    .system-column:first-child{
        border-right:none;
        border-bottom:1px solid #e6e6e6;
        padding-right:0;
        padding-bottom:50px;
    }

    .system-column:last-child{
        padding-left:0;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .products-header h2{
        font-size:3rem;
    }

    .products-category h3{
        font-size:2.3rem;
    }

    .gallery-grid{
        column-count:3;
    }

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

    .why-stats{
        flex-wrap:wrap;
    }

    .stat-item{
        width:45%;
    }

    .why-header h2{
        font-size:3rem;
    }

    .reviews-grid{
        grid-template-columns:1fr;
    }
}

/* Mobile */
@media (max-width: 768px){

    html,
    body{
        overflow-x:hidden;
    }

    /* Navbar */

    .navbar{
        padding:12px 5%;
    }

    .logo{
        width:130px;
        height:45px;
    }

    .logo img{
        height:45px;
    }
    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;

        width:40px;
        height:40px;

        color:white;
        font-size:30px;
        cursor:pointer;

        position:absolute;
        right:15px;
        top:18px;

        z-index:2000;
    }

.navbar{
    gap:12px;
}

.quote-btn{
    margin-right:45px;
    padding:10px 14px;
    font-size:.8rem;
}

nav{
    position:fixed;
    top:0;
    right:-100%;

    width:280px;
    height:100vh;

    background:#111;

    flex-direction:column;
    align-items:flex-start;

    padding-top:100px;
    gap:25px;

    transition:.35s ease;
    z-index:999;
}

nav.active{
    right:0;
}

nav a{
    color:white;
    padding-left:30px;
    font-size:1rem;
}

.navbar.scrolled nav a{
    color:white;
}

    /* Hero */

    .hero-content{
        padding-left:7%;
        padding-right:7%;
        padding-top:120px;
    }

    .hero-content h1{
        font-size:2.2rem;
        line-height:1.15;
    }

    .hero-tag{
        font-size:.85rem;
    }

    .hero-text{
        max-width:100%;
        font-size:0.95rem;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        max-width:280px;
    }

    .hero-stats{
        flex-wrap:wrap;
        gap:15px;
    }
        .primary-btn,
    .secondary-btn{
        padding:14px 20px;
        font-size:0.95rem;
    }

    .stat{
        width:48%;
        padding-left:12px;
    }

    .stat h2{
        font-size:2rem;
    }

    /* About */

    .about-preview{
        padding:90px 7%;
    }

    .about-content h2{
        font-size:2.5rem;
    }

    .about-image img{
        height:420px;
    }

    .experience-card{
        left:20px;
        bottom:-25px;
        min-width:180px;
        padding:20px;
    }

    .experience-card h3{
        font-size:2.4rem;
    }

    .image-bg-strip{
        display:none;
    }

    /* About Page */

    .about-page-hero{
        height:auto;
        padding:140px 0 120px;
    }

    .about-page-content{
        padding-right:8%;
    }

    .about-page-content h1{
        font-size:2.4rem;
    }

    .about-page-stats{
        position:relative;
        margin-left:8%;
        margin-top:40px;
        flex-wrap:wrap;
    }

    .about-company-container h2{
        font-size:2.2rem;
    }

    .about-company-stats{
        grid-template-columns:1fr;
    }
        .faq-question{
        font-size:0.95rem;
        line-height:1.5;
    }

    /* Systems */

    .why-systems{
        padding:90px 6%;
    }

    .why-systems-wrapper{
        padding:35px;
    }

    .system-column h2{
        font-size:1.7rem;
    }

    /* Process */

    .process-heading h2{
        font-size:2.2rem;
    }

    .process-item{
        flex-direction:column;
        gap:15px;
    }

    .process-number{
        font-size:2.4rem;
    }

    .process-content h3{
        font-size:1.3rem;
    }

    /* CTA */

    .about-cta h2{
        font-size:2.2rem;
    }

    /* Gallery */

    .gallery-grid{
        column-count:2;
    }

    .gallery-header h2{
        font-size:32px;
    }
        .lightbox img{
        max-width:95%;
        max-height:60vh;
    }

    /* Why Us */

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-box{
        padding:40px;
    }

    .why-header h2{
        font-size:2.4rem;
    }

    .why-stats{
        flex-direction:column;
        gap:40px;
    }

    .stat-item h2{
        font-size:42px;
    }

    /* Contact */

    .contact-left h2{
        font-size:2rem;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .quote-box{
        padding:30px;
    }

    /* Whatsapp */

    .whatsapp-float{
        width:60px;
        height:60px;
        right:18px;
        bottom:18px;
    }

    .whatsapp-float svg{
        width:28px;
        height:28px;
    }

    /* Footer */

    .footer-inner{
        flex-direction:column;
        gap:20px;
    }
    .footer-logo{
    width:100px;
}

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

    .footer-links{
        flex-wrap:wrap;
        gap:12px;
    }

    .footer-right p{
        text-align:left;
    }
}

/* Small Mobile */
@media (max-width:500px){

    .gallery-grid{
        column-count:2;
        column-gap:12px;
    }

    .gallery-item{
        margin-bottom:12px;
    }
}
