*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f5f5f5;
}

/* NAVBAR */

.navbar{
    background:#2f2f2f;
    padding:15px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
	position: sticky;
top: 0;
z-index: 9999;
}

.logo img{
    width:180px;
}

.menu{
    display:flex;
    list-style:none;
    gap:30px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

.quote-btn{
    background:#ed1c24;
    color:white;
    padding:12px 20px;
    border-radius:30px;
    text-decoration:none;
}

/* HERO */

.hero{
    height:80vh;
    background:linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)
    );
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero h1{
    font-size:60px;
}

.hero p{
    font-size:22px;
    margin:20px 0;
}

.btn-red{
    background:#ed1c24;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:30px;
    cursor:pointer;
}

.btn-white{
    background:white;
    color:black;
    border:none;
    padding:15px 30px;
    border-radius:30px;
    cursor:pointer;
}

/* COUNTER */

.counter{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.box{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.box h2{
    color:#ed1c24;
}

/* RESPONSIVE */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
        margin:20px 0;
    }

    .hero h1{
        font-size:35px;
    }

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

.hero{
    height:100vh;
    background:
    linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.65)
    ),
    url('../images/hero.jpeg');

    background-size:cover;
    background-position:center;

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

.hero-content{
    animation: fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }

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

.box{
    transition:0.3s;
}

.box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}


.hero-slider{
    position:relative;
    height:85vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.05);
    transition:opacity 1.2s ease, transform 5s ease;
}

.slide.active{
    opacity:1;
    transform:scale(1);
}


.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.55)
    );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    padding:20px;
    animation:fadeUp 1s ease;
}

.hero-content h1{
    font-size:64px;
    letter-spacing:2px;
    font-weight:800;
}

.hero-content p{
    font-size:24px;
    margin:18px 0 28px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn-red,
.btn-white{
    display:inline-block;
    text-decoration:none;
    padding:15px 34px;
    border-radius:40px;
    font-weight:600;
    transition:0.3s;
}

.btn-red{
    background:#ed1c24;
    color:white;
}

.btn-white{
    background:white;
    color:#222;
}

.btn-red:hover,
.btn-white:hover{
    transform:translateY(-4px);
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){
    .hero-slider{
        height:75vh;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:17px;
    }
}

.navbar{
    background:#2f2f2f;
    padding:15px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:9999;
}

.logo img{
    width:170px;
}

.menu{
    display:flex;
    list-style:none;
    gap:25px;
    align-items:center;
}

.menu li{
    position:relative;
}

.menu a{
    color:white;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
}

.menu a:hover{
    color:#ed1c24;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:white;
    min-width:230px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.18);
    padding:10px 0;
    z-index:999;
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu a{
    color:#333;
    display:block;
    padding:12px 18px;
    font-size:14px;
}

.dropdown-menu a:hover{
    background:#ed1c24;
    color:white;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.quote-btn{
    background:#ed1c24;
    color:white;
    padding:12px 22px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.hamburger{
    display:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}

/* PHONE & TABLET */
@media(max-width:900px){

    .navbar{
        flex-wrap:wrap;
        padding:15px 5%;
    }

    .hamburger{
        display:block;
    }

    .menu{
        display:none;
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        background:#2f2f2f;
        padding:20px 0;
        gap:0;
    }

    .menu.active{
        display:flex;
    }

    .menu li{
        width:100%;
    }

    .menu a{
        display:block;
        padding:13px 10px;
        width:100%;
    }

    .dropdown-menu{
        position:static;
        display:none;
        box-shadow:none;
        background:#3a3a3a;
        border-radius:0;
        width:100%;
    }

    .dropdown-menu a{
        color:white;
        padding-left:30px;
    }

    .dropdown:hover .dropdown-menu{
        display:block;
    }

    .quote-btn{
        margin-top:12px;
    }
}

.services-section{
    padding:80px 8%;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#2f2f2f;
}

.section-title p{
    color:#666;
}

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

.service-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-top:5px solid #ed1c24;
}

.service-card h3{
    color:#ed1c24;
    margin-bottom:10px;
}

@media(max-width:900px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .services-grid{
        grid-template-columns:1fr;
    }
}

.categories-section{
    padding:80px 8%;
    background:white;
}

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

.category-card{
    min-height:180px;
    background:linear-gradient(135deg,#2f2f2f,#555);
    color:white;
    padding:35px;
    border-radius:22px;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    transition:0.3s;
}

.category-card::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:#ed1c24;
    border-radius:50%;
    right:-40px;
    bottom:-40px;
    opacity:0.85;
}

.category-card h3{
    font-size:24px;
    margin-bottom:10px;
    position:relative;
    z-index:2;
}

.category-card p{
    position:relative;
    z-index:2;
    line-height:1.5;
}

.category-card:hover{
    transform:translateY(-10px);
}

@media(max-width:900px){
    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .category-grid{
        grid-template-columns:1fr;
    }
}

.featured-section{
    padding:80px 8%;
    background:#f8f8f8;
}

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

.product-card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,0.09);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-img{
    height:230px;
    background:#eee;
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-card h3{
    padding:22px 22px 8px;
    color:#ed1c24;
}

.product-card p{
    padding:0 22px 20px;
    color:#555;
    line-height:1.5;
}

.product-btn{
    display:inline-block;
    margin:0 22px 25px;
    background:#ed1c24;
    color:white;
    text-decoration:none;
    padding:12px 22px;
    border-radius:30px;
    font-weight:600;
}

@media(max-width:900px){
    .featured-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .featured-grid{
        grid-template-columns:1fr;
    }
}

.about-cta{
    padding:80px 8%;
    background:#2f2f2f;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    align-items:center;
}

.about-text h2{
    color:white;
    font-size:38px;
    margin-bottom:20px;
}

.about-text p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:25px;
}

.cta-box{
    background:white;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 35px rgba(0,0,0,0.18);
}

.cta-box h3{
    color:#ed1c24;
    font-size:28px;
    margin-bottom:12px;
}

.cta-box p{
    color:#555;
    line-height:1.6;
    margin-bottom:25px;
}

.whatsapp-btn{
    display:inline-block;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    font-weight:700;
}

@media(max-width:900px){
    .about-cta{
        grid-template-columns:1fr;
    }
}

/* CLIENT SLIDER */

.clients-section{
    padding:80px 0;
    background:#fff;
    overflow:hidden;
}

.client-slider{
    width:100%;
    overflow:hidden;
}

.client-track{
    display:flex;
    width:calc(250px * 16);
    animation:scrollClients 35s linear infinite;
}

.client-track:hover{
    animation-play-state:paused;
}

.client-item{
    width:220px;
    height:120px;
    background:#fff;
    border-radius:20px;
    margin:0 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border:1px solid #f0f0f0;
    flex-shrink:0;
    transition:0.3s;
}

.client-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.client-item img{
    max-width:150px;
    max-height:85px;
    object-fit:contain;
    transition:0.3s;
    opacity:1;
}

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

/* Animation kiri ke kanan */
@keyframes scrollClients{
    0%{
        transform:translateX(-50%);
    }
    100%{
        transform:translateX(0);
    }
}

/* FOOTER */

.footer{
    background:#2f2f2f;
    color:white;
    padding:60px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:45px;
}

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

.footer-box h3{
    font-size:20px;
    margin-bottom:18px;
    position:relative;
}

.footer-box h3::after{
    content:"";
    width:35px;
    height:3px;
    background:#ed1c24;
    position:absolute;
    left:0;
    bottom:-8px;
}

.footer-box p{
    color:#ddd;
    line-height:1.7;
    margin-bottom:8px;
}

.footer-box a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:10px;
    transition:0.3s;
}

.footer-box a:hover{
    color:#ed1c24;
    padding-left:5px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.15);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#ddd;
}

/* FLOATING WHATSAPP */

.floating-whatsapp{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s;
}

.floating-whatsapp:hover{
    transform: scale(1.1);
    background: #1ebe5d;
}

@media(max-width:900px){
    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .footer-container{
        grid-template-columns:1fr;
    }

    .client-item{
        width:180px;
        height:100px;
    }

    .client-track{
        width:calc(210px * 16);
    }

    @keyframes scrollClients{
        0%{
            transform:translateX(-50%);
        }
        100%{
            transform:translateX(0);
        }
    }
}

.admin-btn{
    background:#555;
    color:white;
    padding:12px 22px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    margin-left:12px;
    transition:0.3s;
}

.admin-btn:hover{
    background:#ed1c24;
    transform:translateY(-2px);
}


.product-page{
    display:flex;
    gap:30px;
    padding:50px 8%;
}

.product-sidebar{
    width:250px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    height:fit-content;
}

.product-sidebar h3{
    margin-bottom:20px;
    color:#ed1c24;
}

.product-sidebar a{
    display:block;
    text-decoration:none;
    color:#333;
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.product-sidebar a:hover{
    color:#ed1c24;
}

.product-content{
    flex:1;
}

.search-box{
    margin-bottom:25px;
}

.search-box input{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
}

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

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-info{
    padding:20px;
}

.product-info h3{
    font-size:18px;
    margin-bottom:8px;
}

.product-info p{
    color:#777;
    margin-bottom:15px;
}

.view-btn{
    display:inline-block;
    background:#ed1c24;
    color:white;
    padding:10px 20px;
    border-radius:25px;
    text-decoration:none;
}

@media(max-width:1024px){
    .product-grid{
        grid-template-columns:
        repeat(3,1fr);
    }
}

@media(max-width:768px){

    .product-page{
        flex-direction:column;
    }

    .product-sidebar{
        width:100%;
    }

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

}

@media(max-width:480px){

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

}

.detail-page{
    padding:70px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:start;
}

.detail-image{
    background:#fff;
    border-radius:24px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    padding:25px;
    overflow:hidden;
}

.detail-image{
    background:#fff;
    border-radius:24px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    padding:25px;
    overflow:hidden;
}

.zoom-box{
    width:100%;
    overflow:hidden;
    border-radius:18px;
    cursor:zoom-in;
}

.zoom-box img{
    width:100%;
    display:block;
    border-radius:18px;
    transition:transform 0.2s ease;
    transform-origin:center center;
}

.zoom-box:hover img{
    transform:scale(2);
}

.detail-image img{
    width:100%;
    border-radius:18px;
}

.detail-category{
    color:#ed1c24;
    font-weight:700;
    margin-bottom:10px;
}

.detail-info h1{
    font-size:40px;
    color:#2f2f2f;
    margin-bottom:15px;
}

.detail-info h3{
    margin-bottom:20px;
    color:#555;
}

.detail-info p{
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.detail-whatsapp{
    display:inline-block;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    font-weight:700;
}

@media(max-width:768px){
    .detail-page{
        grid-template-columns:1fr;
    }
}

.product-name{
    color:#666;
    font-size:14px;
    margin-bottom:10px;
}
.product-card{
    text-align: center;
}

.product-card .btn{
    display: inline-block;
    margin: 20px auto 0;
}

.back-btn{
    display:inline-block;
    margin:30px 8%;
    padding:12px 24px;
    background:#fff;
    color:#333;
    text-decoration:none;
    border-radius:30px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    font-weight:600;
    transition:0.3s;
}

.back-btn:hover{
    background:#ed1c24;
    color:#fff;
    transform:translateY(-2px);
}

.related-products{
    padding:80px 8%;
}

.related-products h2{
    margin-bottom:30px;
    font-size:32px;
    color:#2f2f2f;
}

.contact-page{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info,
.contact-form{
    background:white;
    padding:40px;
    border-radius:24px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.contact-info h1{
    font-size:42px;
    color:#2f2f2f;
    margin-bottom:15px;
}

.contact-info p{
    color:#555;
    line-height:1.8;
    margin-bottom:10px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:15px;
}

.contact-form textarea{
    height:150px;
    resize:none;
}

.contact-form button{
    background:#ed1c24;
    color:white;
    border:none;
    padding:14px 30px;
    border-radius:35px;
    font-weight:700;
    cursor:pointer;
}

.success-msg{
    background:#e6ffe9;
    color:#008f2d;
    padding:12px;
    border-radius:10px;
    margin-bottom:15px;
}

@media(max-width:768px){
    .contact-page{
        grid-template-columns:1fr;
    }
}

.map-grid{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.map-card{
    background:white;
    padding:25px;
    border-radius:24px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.map-card h3{
    color:#ed1c24;
    margin-bottom:10px;
}

.map-card p{
    color:#555;
    margin-bottom:15px;
    line-height:1.6;
}

.map-card iframe{
    width:100%;
    height:320px;
    border:0;
    border-radius:18px;
}

@media(max-width:768px){
    .map-grid{
        grid-template-columns:1fr;
    }
}

.pagination{
    margin-top:35px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.pagination a{
    background:white;
    color:#333;
    padding:10px 16px;
    border-radius:25px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    font-weight:600;
}

.pagination a:hover,
.pagination .active-page{
    background:#ed1c24;
    color:white;
}

.about-hero{
    height:50vh;
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('../images/about-banner.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.about-hero-content h1{
    font-size:55px;
    margin-bottom:15px;
}

.about-hero-content p{
    font-size:20px;
}

.company-story{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    background:#fff;
}

.story-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.story-content h2{
    color:#ed1c24;
    font-size:38px;
    margin-bottom:20px;
}

.story-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
    font-size:16px;
}

.vision-mission{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    background:#f8f8f8;
}

.vm-card{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.vm-card h2{
    color:#ed1c24;
    margin-bottom:15px;
}

.vm-card p{
    color:#555;
    line-height:1.8;
}

.why-us{
    padding:80px 8%;
    text-align:center;
    background:#fff;
}

.why-us h2{
    font-size:38px;
    color:#2f2f2f;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-8px);
    border-top:5px solid #ed1c24;
}

.why-card h3{
    color:#ed1c24;
    margin-bottom:12px;
}

.why-card p{
    color:#555;
    line-height:1.6;
}

.about-cta2{
    background:#2f2f2f;
    color:white;
    text-align:center;
    padding:80px 8%;
}

.about-cta2 h2{
    font-size:38px;
    margin-bottom:15px;
}

.about-cta2 p{
    color:#ddd;
    margin-bottom:30px;
}

@media(max-width:900px){
    .company-story,
    .vision-mission{
        grid-template-columns:1fr;
    }

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

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

@media(max-width:600px){
    .why-grid{
        grid-template-columns:1fr;
    }

    .story-image img{
        height:auto;
    }
}

/* WHO WE ARE */
.company-story{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;

    background:
        radial-gradient(circle at top left,
        rgba(237,28,36,0.06) 0%,
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(0,0,0,0.04) 0%,
        transparent 30%),

        #f8f8f8;
}

.story-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.story-content h2{
    color:#ed1c24;
    font-size:48px;
    margin-bottom:20px;
}

.story-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}


/* VISION & MISSION */
.vision-mission{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;

    background:
        linear-gradient(135deg,#fafafa,#f1f1f1);
}

.vm-card{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}


/* WHY CHOOSE US */
.why-us{
    padding:90px 8%;
    background:
        radial-gradient(circle at center,
        rgba(237,28,36,0.04) 0%,
        transparent 50%),
        #ffffff;
}

.why-us h2{
    text-align:center;
    font-size:52px;
    margin-bottom:60px;
}

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

.why-card{
    background:white;
    padding:35px;
    border-radius:25px;
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card h3{
    color:#ed1c24;
}


/* CTA */
.about-cta2{
    padding:100px 8%;
    text-align:center;
    color:white;

    background:
        linear-gradient(
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.85)
        ),
        url('../images/company-bg.jpg');

    background-size:cover;
    background-position:center;
}

.about-cta2 h2{
    font-size:48px;
    margin-bottom:20px;
}

.about-cta2 p{
    margin-bottom:30px;
}
.service-hero{
    height:45vh;
    background:
        linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
        url('../images/service-bg.jpg');
    background-size:cover;
    background-position:center;
    color:white;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.service-hero h1{
    font-size:56px;
    margin-bottom:12px;
}

.service-hero p{
    font-size:20px;
}

.service-page{
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    background:
        radial-gradient(circle at top left, rgba(237,28,36,0.07), transparent 25%),
        linear-gradient(135deg,#fafafa,#f2f2f2);
}

.service-box{
    background:white;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-8px);
    border-top:5px solid #ed1c24;
}

.service-box h2{
    color:#ed1c24;
    margin-bottom:20px;
}

.service-box ul{
    list-style:none;
}

.service-box li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    color:#444;
}

.service-box li::before{
    content:"✓ ";
    color:#ed1c24;
    font-weight:bold;
}

@media(max-width:900px){
    .service-page{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .service-page{
        grid-template-columns:1fr;
    }

    .service-hero h1{
        font-size:38px;
    }
}

.service-list-hero{
    height:40vh;
    background:
        linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
        url('../images/service-bg.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.service-list-hero h1{
    font-size:55px;
}

.service-product-page{
    padding:60px 8%;
    display:flex;
    gap:30px;
    background:#f5f5f5;
}

.service-sidebar{
    width:260px;
    background:white;
    padding:25px;
    border-radius:22px;
    height:fit-content;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.service-sidebar h3{
    color:#ed1c24;
    margin-bottom:20px;
}

.service-sidebar a{
    display:block;
    color:#333;
    text-decoration:none;
    padding:11px 0;
    border-bottom:1px solid #eee;
}

.service-sidebar a:hover{
    color:#ed1c24;
}

.service-content{
    flex:1;
}

.service-search{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:14px;
    margin-bottom:30px;
}

.service-product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:25px;
}

.service-product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
    text-align:center;
    padding-bottom:20px;
}

.service-product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}


.service-product-card img{
    width:100%;
    height:180px;      /* sebelum ni besar sangat */
    object-fit:cover;
    display:block;
}

.service-product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    padding:10px;
    background:#fff;
}

.service-card-info{
    padding:22px;
    text-align:center;
}

.service-card-info p{
    color:#777;
    font-size:14px;
    margin-bottom:5px;
}

.service-card-info h3{
    color:#ed1c24;
    font-size:18px;   /* sebelum ni besar */
    margin-bottom:15px;
    font-weight:700;
}

.service-quote-btn{
    display:inline-block;
    background:#ed1c24;
    color:white;
    text-decoration:none;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.service-quote-btn:hover{
    background:#000;
}

@media(max-width:900px){
   .service-product-page{
    padding:60px 8%;
    background:
        radial-gradient(circle at top left,
        rgba(237,28,36,0.04) 0%,
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(0,0,0,0.03) 0%,
        transparent 35%),

        #f7f7f7;
}

    .service-sidebar{
        width:100%;
    }

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

@media(max-width:600px){
    .service-product-grid{
        grid-template-columns:1fr;
    }

    .service-list-hero h1{
        font-size:38px;
    }
}

/* CONTACT PAGE UPGRADE */

.contact-page{
    padding:90px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    background:
        radial-gradient(circle at top left, rgba(237,28,36,0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.06), transparent 30%),
        linear-gradient(135deg,#ffffff,#f3f3f3);
}

.contact-info,
.contact-form{
    background:rgba(255,255,255,0.92);
    padding:45px;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(0,0,0,0.10);
    border:1px solid rgba(255,255,255,0.8);
}

.contact-info{
    position:relative;
    overflow:hidden;
}

.contact-info::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:#ed1c24;
    border-radius:50%;
    right:-70px;
    bottom:-70px;
    opacity:0.08;
}

.contact-info h1{
    font-size:48px;
    color:#2f2f2f;
    margin-bottom:18px;
}

.contact-info p{
    font-size:17px;
    color:#555;
    line-height:1.8;
    margin-bottom:14px;
}

.contact-info b{
    color:#ed1c24;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #e3e3e3;
    border-radius:14px;
    margin-bottom:16px;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#ed1c24;
    box-shadow:0 0 0 4px rgba(237,28,36,0.08);
}

.contact-form textarea{
    height:170px;
    resize:none;
}

.contact-form button{
    background:#ed1c24;
    color:white;
    border:none;
    padding:15px 34px;
    border-radius:35px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#2f2f2f;
    transform:translateY(-3px);
}

@media(max-width:768px){
    .contact-page{
        grid-template-columns:1fr;
        padding:60px 6%;
    }
}

.contact-modern-page{
    padding:90px 8%;
    background:
        radial-gradient(circle at top left, rgba(237,28,36,0.18), transparent 25%),
        linear-gradient(135deg,#5b0000,#200000);
}

.contact-modern-card{
    background:white;
    border-radius:30px;
    padding:60px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
}

.contact-left h1{
    font-size:34px;
    margin-bottom:35px;
    color:#111;
}

.contact-row{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}

.contact-row i{
    color:#b91418;
    font-size:22px;
    min-width:25px;
    margin-top:4px;
}

.contact-row p{
    color:#111;
    line-height:1.7;
    font-size:16px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.social-icons a{
    width:50px;
    height:50px;
    background:#111;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    transition:0.3s;
}

.social-icons a:hover{
    background:#ed1c24;
    transform:translateY(-5px);
}

.contact-right h2{
    font-size:28px;
    margin-bottom:28px;
    color:#111;
}

.contact-right input,
.contact-right textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:14px;
    margin-bottom:18px;
    font-size:15px;
    outline:none;
}

.contact-right textarea{
    height:170px;
    resize:none;
}

.contact-right input:focus,
.contact-right textarea:focus{
    border-color:#ed1c24;
    box-shadow:0 0 0 4px rgba(237,28,36,0.08);
}

.contact-right button{
    background:#bd171b;
    color:white;
    border:none;
    padding:15px 34px;
    border-radius:35px;
    font-weight:700;
    cursor:pointer;
    font-size:15px;
    transition:0.3s;
}

.contact-right button:hover{
    background:#2f2f2f;
    transform:translateY(-3px);
}

@media(max-width:900px){
    .contact-modern-card{
        grid-template-columns:1fr;
        padding:35px;
    }
}

.branch-maps{
    padding:70px 8%;
    background:#f8f8f8;
}

.branch-maps h2{
    text-align:center;
    font-size:36px;
    margin-bottom:40px;
    color:#222;
}

.maps-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.map-card{
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.map-card h3{
    margin-bottom:15px;
    color:#ed1c24;
}

.map-card iframe{
    border-radius:15px;
}

@media(max-width:900px){
    .maps-grid{
        grid-template-columns:1fr;
    }
}

.company-profile-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.company-profile-image img{
    width:100%;
    max-width:500px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
    transition:0.3s;
}

.company-profile-image img:hover{
    transform:scale(1.03);
}

.works-hero{
    padding:70px 8%;
    text-align:center;
    color:white;
    background:linear-gradient(135deg,#7a0000,#1f1f1f);
}

.works-hero h1{
    font-size:42px;
}

.works-gallery{
    padding:35px 5%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    background:#f5f5f5;
}

.work-card{
    height:95px;
    border-radius:8px;
    overflow:hidden;
    background:white;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.work-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.3s;
}

.work-card:hover img{
    transform:scale(1.08);
}

@media(max-width:900px){
    .works-gallery{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .works-gallery{
        grid-template-columns:1fr;
    }

    .work-card{
        height:160px;
    }
}

@media(max-width:900px){
    .navbar{
        padding:15px 5%;
        flex-wrap:wrap;
    }

    .logo img{
        width:130px;
    }

    .hamburger{
        display:block;
        margin-left:auto;
    }

    .menu{
        display:none;
        width:100%;
        flex-direction:column;
        background:#2f2f2f;
        padding:15px 0;
        margin-top:15px;
        gap:0;
    }

    .menu.active{
        display:flex;
    }

    .menu li{
        width:100%;
    }

    .menu a{
        display:block;
        width:100%;
        padding:13px 10px;
    }

    .admin-btn{
        margin-top:12px;
        margin-left:0;
        padding:10px 18px;
        font-size:14px;
    }

    body{
        overflow-x:hidden;
    }
}

/* =====================================================
   FINAL RESPONSIVE CLEAN FIX
   Interface desktop kekal. Phone & tablet jadi kemas, tidak terpotong.
===================================================== */
html, body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}
img{ max-width:100%; }

@media(max-width:1024px){
    body{
        background:#eef1f8;
        overflow-x:hidden !important;
    }

    /* NAVBAR */
    .navbar{
        width:100% !important;
        min-width:0 !important;
        padding:12px 5% !important;
        flex-wrap:wrap !important;
        gap:8px !important;
    }
    .logo img{ width:145px !important; }
    .hamburger{
        display:block !important;
        margin-left:auto !important;
        font-size:26px !important;
    }
    .menu{
        display:none !important;
        width:100% !important;
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:0 !important;
        margin-top:10px !important;
        padding:8px 0 !important;
        background:#2f2f2f !important;
    }
    .menu.active{ display:flex !important; }
    .menu li{ width:100% !important; }
    .menu a{
        width:100% !important;
        display:block !important;
        padding:10px 8px !important;
        font-size:14px !important;
        white-space:normal !important;
    }
    .dropdown-menu{
        position:static !important;
        width:100% !important;
        box-shadow:none !important;
        border-radius:0 !important;
        background:#3a3a3a !important;
    }
    .dropdown-menu a{ color:#fff !important; padding-left:25px !important; }
    .admin-btn,
    .quote-btn{
        margin-left:0 !important;
        margin-top:8px !important;
        padding:9px 16px !important;
        font-size:13px !important;
    }

    /* HOME */
    .hero-slider{
        width:100% !important;
        min-width:0 !important;
        height:520px !important;
    }
    .hero-content{
        width:92% !important;
        max-width:620px !important;
        padding:15px !important;
    }
    .hero-content h1{
        font-size:42px !important;
        line-height:1.1 !important;
        letter-spacing:1px !important;
    }
    .hero-content p{
        font-size:18px !important;
        line-height:1.4 !important;
        margin:12px 0 20px !important;
    }
    .hero-buttons{ gap:10px !important; }
    .btn-red,.btn-white{
        padding:12px 24px !important;
        font-size:14px !important;
    }
    .counter{
        width:100% !important;
        min-width:0 !important;
        grid-template-columns:repeat(2, minmax(0,1fr)) !important;
        gap:18px !important;
        padding:28px 5% !important;
    }
    .box{
        padding:24px 15px !important;
        border-radius:18px !important;
    }
    .services-section,.categories-section,.featured-section,.about-cta,.footer,.branch-maps,
    .contact-modern-page,.works-hero,.works-gallery{
        width:100% !important;
        min-width:0 !important;
        padding-left:5% !important;
        padding-right:5% !important;
    }
    .section-title{ margin-bottom:32px !important; }
    .section-title h2{ font-size:32px !important; }
    .services-grid,.category-grid,.featured-grid{
        grid-template-columns:repeat(2, minmax(0,1fr)) !important;
        gap:20px !important;
    }
    .service-card,.category-card,.product-card{
        width:auto !important;
        min-width:0 !important;
        height:auto !important;
    }
    .about-cta{
        grid-template-columns:1fr !important;
        gap:25px !important;
    }
    .about-text h2{ font-size:32px !important; }
    .client-item{ width:180px !important; height:100px !important; }
    .footer-container{ grid-template-columns:1fr 1fr !important; gap:28px !important; }
    .floating-whatsapp{
        width:52px !important;
        height:52px !important;
        right:18px !important;
        bottom:18px !important;
        font-size:28px !important;
    }

    /* PRODUCT PAGE */
    .product-page{
        width:100% !important;
        min-width:0 !important;
        flex-direction:column !important;
        gap:22px !important;
        padding:35px 5% !important;
    }
    .product-sidebar{
        width:100% !important;
        flex:none !important;
        padding:20px !important;
    }
    .product-sidebar a{ font-size:14px !important; padding:9px 0 !important; }
    .product-content{ width:100% !important; }
    .product-grid{
        grid-template-columns:repeat(2, minmax(0,1fr)) !important;
        gap:18px !important;
    }
    .product-card img{ height:150px !important; object-fit:contain !important; background:#fff !important; }
    .product-info{ padding:15px !important; }
    .product-info h3{ font-size:16px !important; }

    /* SERVICE PAGE */
    .service-product-page{
        width:100% !important;
        min-width:0 !important;
        flex-direction:column !important;
        gap:22px !important;
        padding:35px 5% !important;
    }
    .service-sidebar{ width:100% !important; flex:none !important; padding:20px !important; }
    .service-content{ width:100% !important; }
    .service-product-grid{
        grid-template-columns:repeat(2, minmax(0,1fr)) !important;
        gap:18px !important;
    }
    .service-product-card{
        width:auto !important;
        height:auto !important;
        min-width:0 !important;
        padding-bottom:16px !important;
    }
    .service-product-card img{ height:150px !important; object-fit:contain !important; }

    /* CONTACT */
    .contact-page,.contact-modern-card,.maps-grid{
        grid-template-columns:1fr !important;
    }
    .contact-modern-card{ padding:35px !important; gap:30px !important; }
    .maps-grid{ gap:22px !important; }
}

@media(max-width:600px){
    .navbar{ padding:10px 4% !important; }
    .logo img{ width:120px !important; }

    .hero-slider{ height:430px !important; }
    .hero-content h1{ font-size:28px !important; }
    .hero-content p{ font-size:14px !important; }
    .btn-red,.btn-white{
        padding:10px 17px !important;
        font-size:13px !important;
    }

    .counter{
        grid-template-columns:repeat(2, minmax(0,1fr)) !important;
        gap:14px !important;
        padding:22px 4% !important;
    }
    .box{ padding:20px 8px !important; }
    .box h2{ font-size:24px !important; }
    .box p{ font-size:13px !important; }

    .services-section,.categories-section,.featured-section,.about-cta,.footer{
        padding-top:45px !important;
        padding-bottom:45px !important;
        padding-left:4% !important;
        padding-right:4% !important;
    }
    .section-title h2{ font-size:26px !important; }
    .section-title p{ font-size:14px !important; }
    .services-grid,.category-grid,.featured-grid{
        grid-template-columns:1fr !important;
    }
    .service-card,.category-card{ padding:24px !important; }
    .product-img{ height:190px !important; }
    .about-text h2{ font-size:26px !important; }
    .footer-container{ grid-template-columns:1fr !important; }

    .product-page,.service-product-page{
        padding:25px 4% !important;
    }
    .product-grid,.service-product-grid{
        grid-template-columns:repeat(2, minmax(0,1fr)) !important;
        gap:14px !important;
    }
    .product-card img,.service-product-card img{ height:120px !important; }
    .product-info,.service-card-info{ padding:12px !important; }
    .product-info h3,.service-card-info h3{ font-size:14px !important; }
    .product-info p,.service-card-info p{ font-size:12px !important; }
    .view-btn,.service-quote-btn,.product-btn{ padding:8px 12px !important; font-size:12px !important; }

    .contact-modern-page,.branch-maps{ padding:30px 4% !important; }
    .contact-modern-card{ padding:24px 18px !important; border-radius:22px !important; }
    .contact-left h1,.contact-right h2{ font-size:24px !important; }
}

@media(max-width:380px){
    .product-grid,.service-product-grid,.counter{
        grid-template-columns:1fr !important;
    }
}
