/* =========================================================
   PT NETCO BUMI SEJAHTERA
   Main Stylesheet
   File : css/style.css
========================================================= */

:root{

    --primary:#0F5132;
    --primary-dark:#0A3D27;
    --accent:#F4B400;

    --dark:#111827;
    --text:#374151;
    --muted:#6B7280;

    --white:#FFFFFF;
    --bg:#F8FAFC;
    --border:#E5E7EB;

    --shadow:0 12px 35px rgba(0,0,0,.08);

    --radius:18px;
    --container:1200px;
}

/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(var(--container),92%);
    margin:auto;
}

/* ================= HEADER ================= */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    backdrop-filter:blur(14px);
    border-bottom:1px solid #eef1f4;
   
}

.header .container{
    height:126px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
}

 .logo{
    flex:0 0 430px; 
    margin-left:-12px;
    margin-right:90px;
}

.logo img{
  
    height:94px;
    width:auto;
    
}

.navbar{
    display:flex;
    align-items:center;
    gap:34px;
    margin-left:auto;
}

.navbar a{
    font-size:15px;
    font-weight:500;
    color:#374151;
    transition:.25s;
}

.navbar a:hover,
.navbar a.active{
    color:var(--primary);
}

.btn-nav{
    background:var(--primary);
    color:#fff !important;
    padding:12px 22px;
    border-radius:999px;
    font-weight:600;
}

/* ================= BUTTON ================= */

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 26px;
    border-radius:999px;
    font-weight:600;
    transition:.25s;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

.btn-secondary{
    border:1px solid var(--border);
    color:var(--dark);
    background:#fff;
}

.btn-secondary:hover{
    border-color:var(--primary);
    color:var(--primary);
}

/* ================= HERO ================= */

.page-hero{
    padding:90px 0;
    background:linear-gradient(180deg,#ffffff 0%,#F7FAF9 100%);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:center;
}

.eyebrow,
.section-label{
    display:inline-block;
    color:var(--primary);
    font-weight:700;
    letter-spacing:.08em;
    font-size:14px;
    margin-bottom:18px;
}

.hero-content h1{
    font-size:52px;
    line-height:1.12;
    color:var(--dark);
    margin-bottom:24px;
    font-weight:800;
}

.hero-content h1 span{
    color:var(--primary);
}

.hero-content p{
    font-size:17px;
    color:var(--muted);
    margin-bottom:34px;
    max-width:560px;
}

.hero-actions{
    display:flex;
    gap:16px;
}

.hero-image img{
    border-radius:22px;
    box-shadow:var(--shadow);
    object-fit:cover;
}

/* ================= SECTION ================= */

.section{
    padding:90px 0;
}

.bg-light{
    background:var(--bg);
}

.bg-dark{
    background:#0E1726;
    color:#fff;
}

.section-heading{
    margin-bottom:55px;
}

.section-heading.center{
    text-align:center;
}

.section-heading h2{
    font-size:38px;
    color:var(--dark);
    line-height:1.2;
}

.section-heading.light h2,
.section-heading.light .section-label{
    color:#fff;
}

/* ================= OVERVIEW ================= */

.overview-grid{
    display:grid;
    grid-template-columns:1fr 1.05fr;
    gap:70px;
    align-items:center;
}

.overview-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.overview-content h2{
    font-size:36px;
    line-height:1.2;
    color:var(--dark);
    margin-bottom:22px;
}

.overview-content p{
    color:var(--muted);
    margin-bottom:18px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:35px;
}

.stat-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:22px;
    text-align:center;
}

.stat-item h3{
    color:var(--primary);
    font-size:34px;
    margin-bottom:6px;
}

.stat-item span{
    font-size:13px;
    color:var(--muted);
}

/* ================= VISION ================= */

.vm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.vm-card{
    background:#fff;
    border-radius:20px;
    padding:36px;
    box-shadow:var(--shadow);
}

.vm-icon{
    width:58px;
    height:58px;
    border-radius:14px;
    background:#E8F3EE;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:22px;
}

.vm-card h3{
    font-size:26px;
    margin-bottom:16px;
    color:var(--dark);
}

.vm-card p{
    color:var(--muted);
}

.vm-card ul{
    list-style:disc;
    padding-left:20px;
    color:var(--muted);
}

.vm-card li{
    margin-bottom:10px;
}

/* ================= VALUES ================= */

.value-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.value-card{
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px 24px;
    transition:.25s;
}

.value-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.value-card h3{
    color:var(--primary);
    margin-bottom:14px;
    font-size:22px;
}

.value-card p{
    color:var(--muted);
    font-size:15px;
}

/* ================= CAPABILITY ================= */

.capability-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.capability-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:28px;
    transition:.25s;
}

.capability-card:hover{
    background:rgba(255,255,255,.1);
    transform:translateY(-6px);
}

.capability-card img{
    width:52px;
    height:52px;
    object-fit:contain;
    margin-bottom:20px;
}

.capability-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.capability-card p{
    color:#D1D5DB;
    font-size:15px;
}

/* ================= CTA ================= */

.cta{
    padding:90px 0;
    background:#fff;
}

.cta-box{
    background:linear-gradient(135deg,var(--primary),#166534);
    border-radius:24px;
    padding:50px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    color:#fff;
}

.cta-box .section-label{
    color:#CDEBD8;
}

.cta-box h2{
    font-size:36px;
    line-height:1.2;
    margin-bottom:14px;
}

.cta-box p{
    max-width:600px;
    color:#E5F3EC;
}

.cta-box .btn-primary{
    background:var(--accent);
    color:#111827;
    white-space:nowrap;
}

/* ================= FOOTER ================= */

.footer{
    background:#0B1220;
    color:#D1D5DB;
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr;
    gap:50px;
    padding:70px 0;
}

.footer-brand img{
    width:170px;
    margin-bottom:18px;
}

.footer h4{
    color:#fff;
    margin-bottom:18px;
}

.footer a,
.footer p{
    display:block;
    margin-bottom:10px;
    color:#D1D5DB;
    font-size:15px;
}

.footer a:hover{
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:22px;
    color:#9CA3AF;
    font-size:14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width:1100px){

    .hero-grid,
    .overview-grid{
        grid-template-columns:1fr;
    }

    .value-grid,
    .capability-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-content{
        grid-template-columns:1fr 1fr;
    }

}

@media (max-width:768px){

    .navbar{
        display:none;
    }

    .hero-content h1{
        font-size:38px;
    }

    .section-heading h2,
    .overview-content h2,
    .cta-box h2{
        font-size:30px;
    }

    .stats,
    .vm-grid,
    .value-grid,
    .capability-grid,
    .footer-content{
        grid-template-columns:1fr;
    }

    .hero-actions{
        flex-direction:column;
    }

    .cta-box{
        flex-direction:column;
        align-items:flex-start;
        padding:40px 30px;
    }

    .section{
        padding:70px 0;
    }

}
/* ===== Header Scroll Effect ===== */

.header.scrolled{
    box-shadow:0 8px 30px rgba(15,81,50,.08);
}


/* ===== Reveal Animation ===== */

.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:all .7s ease;
}

.reveal.show{
    opacity:1;
    transform:none;
}

/* =====================================================
   HOMEPAGE
===================================================== */

.home-hero{
    padding:90px 0 70px;
    background:linear-gradient(180deg,#FFFFFF 0%,#F7FAF9 100%);
}

.cap-strip{
    margin-top:-25px;
    position:relative;
    z-index:5;
}

.strip-grid{
    background:#fff;
    border-radius:18px;
    padding:26px 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border:1px solid #E5E7EB;
}

.strip-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
}

.strip-item img{
    width:34px;
    height:34px;
    object-fit:contain;
}

.strip-item span{
    font-weight:600;
    color:#374151;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}


.service-card{
    background:#fff;
    border:1px solid #E7ECEF;
    border-radius:18px;
    overflow:hidden;
    transition:.3s ease;

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);

}
.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;

}
.service-card .number{
    color:#0F766E;
    font-size:42px;
    font-weight:700;
}
.service-card a{
    color:#0F766E;
    font-weight:700;
    text-decoration:none;
}

.service-card a::after{
    content:" →";
}

.service-body{
    padding:28px;
}

.service-number{
    font-size:44px;
    font-weight:800;
    color:#E2E8F0;
    line-height:1;

}

.service-body h3{
    font-size:24px;
    margin-bottom:12px;
    color:#111827;
}

.service-body p{
    color:#6B7280;
    margin-bottom:18px;
}

.service-body a{
    color:#0f766e;
    font-weight:600;
}

.service-card{
    background:#fff;
    border:1px solid #E8EEF0;
    border-radius:18px;
    overflow:hidden;
    transition:all .3s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-number{
    color:#0F766E;
}

.service-body a::after{
    content:" →";
}

.service-body a:hover{
    color:#0B5E58;
}


.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.project-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.project-item img{
    height:300px;
    object-fit:cover;
    transition:.4s;
}

.project-item:hover img{
    transform:scale(1.06);
}

.overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:22px;
    background:linear-gradient(to top,rgba(0,0,0,.75),transparent);
    color:#fff;
}

.overlay h4{
    margin-bottom:4px;
}

.center-btn{
    text-align:center;
    margin-top:40px;
}

@media(max-width:900px){

    .strip-grid,
    .service-grid,
    .project-grid{
        grid-template-columns:1fr;
    }

}

/* =====================================================
   SERVICES PAGE
===================================================== */

.service-detail{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.service-detail.reverse .service-photo{
    order:2;
}

.service-detail.reverse .service-text{
    order:1;
}

.service-photo img{
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    height:430px;
    object-fit:cover;
}

.service-no{
    font-size:54px;
    font-weight:800;
    color:#0F5132;
    opacity:.15;
    margin-bottom:10px;
}

.service-text h2{
    font-size:34px;
    color:#111827;
    margin-bottom:18px;
}

.service-text p{
    color:#6B7280;
    margin-bottom:22px;
}

.check-list{
    list-style:none;
    padding:0;
}

.check-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#374151;
}

.check-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#0F5132;
    font-weight:700;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.process-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:30px 24px;
    text-align:center;
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.process-card div{
    width:56px;
    height:56px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#E8F3EE;
    color:#0F5132;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.process-card h3{
    margin-bottom:10px;
    color:#111827;
}

.process-card p{
    color:#6B7280;
    font-size:14px;
}

@media(max-width:900px){

    .service-detail{
        grid-template-columns:1fr;
    }

    .service-detail.reverse .service-photo,
    .service-detail.reverse .service-text{
        order:unset;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

}
/* =====================================================
   PROJECT PAGE
===================================================== */

.scope-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.scope-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:28px 22px;
    text-align:center;
    transition:.3s;
}

.scope-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.scope-card img{
    width:54px;
    height:54px;
    object-fit:contain;
    margin:0 auto 18px;
}

.scope-card h3{
    color:#111827;
    margin-bottom:10px;
    font-size:20px;
}

.scope-card p{
    color:#6B7280;
    font-size:14px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.gallery-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.gallery-card:hover{
    transform:translateY(-6px);
}

.gallery-card img{
    height:230px;
    object-fit:cover;
}

.gallery-body{
    padding:22px;
}

.gallery-body h3{
    margin-bottom:8px;
    color:#111827;
}

.gallery-body p{
    color:#6B7280;
    font-size:14px;
}

.table-wrapper{
    overflow:auto;
}

.capability-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.capability-table thead{
    background:#0F5132;
    color:#fff;
}

.capability-table th,
.capability-table td{
    padding:18px 22px;
    text-align:left;
    border-bottom:1px solid #E5E7EB;
}

.capability-table tbody tr:hover{
    background:#F8FAFC;
}

@media(max-width:900px){

    .scope-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .scope-grid{
        grid-template-columns:1fr;
    }

}
/* =====================================================
   RESOURCES PAGE
===================================================== */

.resource-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.resource-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:20px;
    padding:28px;
    display:flex;
    flex-direction:column;
    gap:20px;
    transition:.3s;
}

.resource-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.resource-icon img{
    width:54px;
    height:54px;
    object-fit:contain;
}

.resource-body span{
    color:#0F5132;
    font-size:13px;
    font-weight:600;
    letter-spacing:.04em;
}

.resource-body h3{
    margin:8px 0 12px;
    font-size:24px;
    color:#111827;
}

.resource-body p{
    color:#6B7280;
    font-size:15px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.info-card{
    background:#fff;
    border-radius:18px;
    padding:28px;
    border:1px solid #E5E7EB;
}

.info-card h3{
    color:#111827;
    margin-bottom:10px;
}

.info-card p{
    color:#6B7280;
}

@media(max-width:900px){

    .resource-grid,
    .info-grid{
        grid-template-columns:1fr;
    }

}
/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

.contact-info h2{
    font-size:34px;
    color:#111827;
    margin-bottom:16px;
}

.contact-info>p{
    color:#6B7280;
    margin-bottom:30px;
}

.contact-item{
    display:flex;
    gap:18px;
    margin-bottom:22px;
    align-items:flex-start;
}

.contact-item .icon{
    width:48px;
    height:48px;
    border-radius:12px;
    background:#E8F3EE;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-item h4{
    color:#111827;
    margin-bottom:4px;
}

.contact-item p{
    color:#6B7280;
    font-size:15px;
}

.btn-whatsapp{
    display:inline-block;
    margin-top:12px;
    background:#25D366;
    color:#fff;
    padding:14px 26px;
    border-radius:999px;
    font-weight:600;
}

.contact-form{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:20px;
    padding:34px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-form h3{
    margin-bottom:24px;
    color:#111827;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#374151;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #D1D5DB;
    border-radius:12px;
    font-family:inherit;
    font-size:15px;
    transition:.25s;
    background:#fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#0F5132;
    box-shadow:0 0 0 3px rgba(15,81,50,.08);
}

.submit-btn{
    width:100%;
    border:none;
    cursor:pointer;
}

.map-card{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.map-card img{
    height:420px;
    object-fit:cover;
}

@media(max-width:900px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .map-card img{
        height:300px;
    }

}
/* ===== GOOGLE MAPS ===== */

.map-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.map-item{
    background:#fff;
    border-radius:18px;
    padding:20px;
    border:1px solid #E5E7EB;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.map-item h3{
    color:#111827;
    margin-bottom:6px;
}

.map-item p{
    color:#6B7280;
    font-size:14px;
    margin-bottom:14px;
}

.map-item iframe{
    width:100%;
    height:280px;
    border:0;
    border-radius:12px;
}

@media(max-width:900px){
    .map-card{
        grid-template-columns:1fr;
    }
}
/* ===== ALERT ===== */

.alert{
    padding:16px 18px;
    border-radius:12px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:500;
}

.alert.success{
    background:#ECFDF5;
    color:#166534;
    border:1px solid #BBF7D0;
}

.alert.error{
    background:#FEF2F2;
    color:#991B1B;
    border:1px solid #FECACA;
}
/* ===== HERO ===== */

.hero{
    padding:80px 0 50px;
    background:#fff;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:60px;
    align-items:center;
}

.eyebrow{
    display:block;
    margin-bottom:18px;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    color:#0F766E;
}

.hero h1{
    font-size:56px;
    line-height:1.08;
    font-weight:800;
    color:#183B35;
    margin-bottom:24px;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    color:#5B6B68;
    margin-bottom:34px;
}

.hero-actions{
    display:flex;
    gap:16px;
}

.btn-primary,
.btn-secondary{
    padding:14px 28px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary{
    background:#1F5C4C;
    color:#fff;
}

.btn-secondary{
    border:1px solid #D7E2DF;
    color:#1F5C4C;
    background:#fff;
}

.hero-image img{
    width:100%;
    border-radius:22px;
    display:block;
    object-fit:cover;
}

@media(max-width:991px){
    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:42px;
    }
}
/* ===== HERO MODERN ===== */

.hero-modern{
    position:relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(90deg,
        rgba(5,12,18,.72) 0%,
        rgba(5,12,18,.58) 30%,
        rgba(5,12,18,.28) 55%,
        rgba(5,12,18,.08) 77%,
        rgba(5,12,18,.0) 100%),
     url("/images/hero-home.jpg");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
     
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:620px;
    margin-left: 52px;
    padding-top:90px;
    padding-bottom:90px;
}

.eyebrow{
    color:#FFD54A;
    font-size:15px;
    letter-spacing:2.8px;
    font-weight:700;
    display: none;
    margin-bottom:20px;
}

.hero-modern h1{
    font-size:68px;
    line-height:1.05;
    color:rgba(255,255,255,.98);
    max-width:8540;
    text-shadow: 0 4px 20px rgba(0,0,0,.45);
    margin:18px 0 36px;
    }

.hero-modern p{
    position: relative;
    z-index: 3;
    display: block;
    
    font-size:18px;
    line-height:1.8;
    font-weight:400px;
    color: #FFFFFF;
    
    max-width:680px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:8px;
}

.btn-primary{
    background:#0F766E;
    color:#fff;
    padding:16px 28px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary{
    background:rgba(255,255,255,.10);
    color:#fff;
    border:1px solid rgba(255,255,255,.35);
    backdrop-filter:blur(12px);
}
.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    gap:10px:
    transition:.25s;
    
}
.btn-primary:after,
.btn-secondary:after{
    content:"->";
    font-size:18px;
    font-weight:700px;
    transition:transfor .25s ease;

}
.btn-primary:after,
.btn-secondary:after{
    transform:translateX(4px);
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-2px);
}

@media (max-width:768px){
    .hero-modern{
        min-height:560px;
    }

    .hero-modern h1{
        font-size:38px;
    }

    .hero-buttons{
        flex-direction:column;
    }
}

/* ===== ABOUT NETCO ===== */

.about-netco{
    padding:90px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 55px;
}

.section-title .eyebrow{
    color:#0F766E;
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
}

.section-title h2{
    font-size:42px;
    color:#213547;
    margin:16px 0;
}

.section-title p{
    color:#6B7280;
    line-height:1.8;
}

.about-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:18px;
    display:block;
}

.about-item{
    display:flex;
    gap:18px;
    margin-bottom:24px;
}

.check{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#0F766E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    flex-shrink:0;
}

.about-item h4{
    margin:0 0 6px;
    color:#213547;
}

.about-item p{
    margin:0;
    color:#667085;
    line-height:1.7;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:60px;
}

.stat-box{
    background:#F8FAFC;
    border:1px solid #E5E7EB;
    border-radius:16px;
    text-align:center;
    padding:28px 20px;
}

.stat-box h3{
    margin:0;
    color:#0F766E;
    font-size:34px;
}

.stat-box span{
    color:#64748B;
    font-size:14px;
}

@media(max-width:768px){

.about-grid{
    grid-template-columns:1fr;
}

.about-stats{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:32px;
}

}