
:root{
  --navy:#0b1f36;
  --navy-2:#12385d;
  --blue:#1d5f91;
  --amber:#f59e0b;
  --amber-dark:#d97706;
  --green:#16a34a;
  --bg:#f6f8fb;
  --card:#ffffff;
  --text:#172033;
  --muted:#64748b;
  --border:#e2e8f0;
  --shadow:0 18px 45px rgba(11,31,54,.10);
  --radius:18px;
  --container:min(1180px,92%);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Inter,system-ui,-apple-system,"Segoe UI",Arial,sans-serif;color:var(--text);background:#fff;line-height:1.65;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
:focus-visible{outline:3px solid rgba(245,158,11,.75);outline-offset:3px}
.container{width:var(--container);margin:auto}
.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* top contact strip */
.top-bar{background:var(--navy);color:#fff;font-size:.9rem}
.top-bar .container{min-height:42px;display:flex;align-items:center;justify-content:space-between;gap:16px}
.top-left,.top-right{display:flex;align-items:center;gap:20px}
.top-bar a{text-decoration:none;color:#fff}
.top-bar i{color:var(--amber);margin-right:6px}

/* =========================================================
   SAWARIYA ENGINEERING
   RESPONSIVE NAVBAR - FINAL
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.10);
}

.site-header .navbar {
    width: 100%;
    min-height: 82px;

    padding: 10px 5%;

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

    position: relative;
}

.site-header .logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.site-header .logo img {
    width: auto;
    height: 65px;

    display: block;
}

/* DESKTOP NAVIGATION */

.site-header .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    list-style: none;
    margin: 0;
    padding: 0;

    position: static;

    background: transparent;
    box-shadow: none;

    max-height: none;
    overflow: visible;
}

.site-header .nav-links li {
    margin: 0;
    padding: 0;
}

.site-header .nav-links a {
    display: block;

    padding: 12px 16px;

    color: #123b67;
    text-decoration: none;

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

    border-radius: 8px;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.site-header .nav-links a:hover {
    color: #ffffff;
    background: #123b67;

    transform: translateY(-2px);
}

/* GET QUOTE */

.nav-quote-btn {
    display: inline-flex;

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

    padding: 12px 22px;

    background: #e9a400;
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    border-radius: 30px;

    white-space: nowrap;

    transition:
        transform .25s ease,
        background .25s ease;
}

.nav-quote-btn:hover {
    background: #c98900;
    transform: translateY(-2px);
}

/* HAMBURGER */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

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

    border: none;
    border-radius: 9px;

    background: #123b67;
    color: #ffffff;

    font-size: 21px;

    cursor: pointer;

    flex-shrink: 0;
}

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

@media (max-width: 1000px) {

    .site-header .nav-links {
        gap: 2px;
    }

    .site-header .nav-links a {
        padding: 10px 11px;
        font-size: 14px;
    }

    .nav-quote-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

}


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

@media (max-width: 768px) {

    .site-header .navbar {
        min-height: 72px;
        padding: 8px 5%;
    }

    .site-header .logo img {
        height: 56px;
    }

    /* HAMBURGER */

    .mobile-menu-btn {
        display: flex;
    }

    /* HIDE DESKTOP QUOTE */

    .nav-quote-btn {
        display: none;
    }

    /* MOBILE MENU */

    .site-header .nav-links {

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        display: flex;

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

        gap: 0;

        background: #ffffff;

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);

        padding: 0;

        max-height: 0;

        overflow: hidden;

        opacity: 0;
        visibility: hidden;

        transition:
            max-height .35s ease,
            opacity .25s ease,
            visibility .25s ease;
    }

    /* OPEN MENU */

    .site-header .nav-links.active {

        max-height: 420px;

        padding: 10px 0;

        opacity: 1;
        visibility: visible;
    }

    .site-header .nav-links li {
        width: 100%;
    }

    .site-header .nav-links a {

        width: 100%;

        padding: 15px 25px;

        border-radius: 0;

        font-size: 16px;

        text-align: left;
    }

    .site-header .nav-links a:hover {

        background: #f1f5f9;

        color: #123b67;

        transform: none;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .site-header .navbar {
        padding: 8px 4%;
    }

    .site-header .logo img {
        height: 50px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

}
/* buttons */
.btn,.cta-btn,.hero-btn,.product-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;text-decoration:none;border:0;border-radius:999px;font-weight:800;padding:13px 22px;transition:transform .2s,box-shadow .2s,background .2s}
.btn:hover,.cta-btn:hover,.hero-btn:hover,.product-btn:hover{transform:translateY(-2px)}
.btn-primary,.hero-btn,.cta-btn{background:var(--amber);color:#171717;box-shadow:0 10px 24px rgba(245,158,11,.24)}
.btn-primary:hover,.hero-btn:hover,.cta-btn:hover{background:var(--amber-dark);color:#fff}
.btn-secondary{border:1px solid rgba(255,255,255,.6);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(6px)}
.btn-secondary:hover{background:#fff;color:var(--navy)}

/* home hero */
.hero-slider{position:relative;min-height:calc(100vh - 124px);height:760px;max-height:860px;overflow:hidden;background:#091827}
.slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity .7s ease}
.slide.active{opacity:1;visibility:visible}
.slide img{width:100%;height:100%;object-fit:cover}
.slide::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,17,31,.88) 0%,rgba(4,17,31,.60) 48%,rgba(4,17,31,.18) 100%)}
.slide-content{position:absolute;z-index:2;left:max(4%,calc((100% - 1180px)/2));top:50%;transform:translateY(-50%);width:min(700px,88%)}
.slide-content .eyebrow{color:var(--amber);font-weight:900;letter-spacing:.16em;text-transform:uppercase;font-size:.82rem;margin-bottom:13px}
.slide-content h1{color:#fff;font-size:clamp(2.5rem,5vw,4.7rem);line-height:1.05;margin-bottom:20px;letter-spacing:-.03em}
.slide-content p{color:#e2e8f0;font-size:clamp(1rem,1.6vw,1.25rem);margin-bottom:30px;max-width:600px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.slider-dots{position:absolute;z-index:3;left:max(4%,calc((100% - 1180px)/2));bottom:35px;display:flex;gap:8px}
.slider-dots button{width:9px;height:9px;border:0;border-radius:50%;background:rgba(255,255,255,.45);padding:0}
.slider-dots button.active{background:var(--amber);width:28px;border-radius:999px}
.trust-strip{background:var(--navy);color:#fff}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{padding:22px 15px;text-align:center;border-right:1px solid rgba(255,255,255,.12)}
.trust-item:last-child{border-right:0}
.trust-item strong{display:block;color:var(--amber);font-size:1.7rem;line-height:1.1}
.trust-item span{font-size:.86rem;color:#cbd5e1}

/* common sections */
.section{padding:88px 0}
.section.alt{background:var(--bg)}
.section-heading{text-align:center;max-width:760px;margin:0 auto 45px}
.section-heading .tag,.section-tag{display:inline-block;color:var(--amber-dark);font-size:.78rem;font-weight:900;letter-spacing:.16em;text-transform:uppercase;margin-bottom:9px}
.section-heading h2,.page-content h1{color:var(--navy);font-size:clamp(2rem,4vw,3.15rem);line-height:1.12;letter-spacing:-.025em}
.section-heading p{color:var(--muted);margin-top:12px}

/* product home */
.product-search{width:min(620px,100%);margin:0 auto 28px;position:relative}
.product-search input,.catalog-controls input{width:100%;border:1px solid var(--border);background:#fff;border-radius:999px;padding:15px 20px;box-shadow:0 7px 20px rgba(11,31,54,.06)}
.product-grid,.catalog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.product-card,.catalog-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:0 8px 28px rgba(11,31,54,.06);transition:.25s;display:flex;flex-direction:column}
.product-card:hover,.catalog-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.product-card>img,.catalog-card>img{width:100%;height:245px;object-fit:cover;background:#eef2f7}
.product-content,.catalog-content{padding:22px;display:flex;flex-direction:column;flex:1}
.product-content h3,.catalog-content h3{color:var(--navy);font-size:1.2rem;line-height:1.3;margin-bottom:8px}
.product-content p,.catalog-content p{color:var(--muted);font-size:.94rem;margin-bottom:18px}
.product-actions{display:flex;gap:9px;margin-top:auto}
.product-btn{padding:10px 15px;background:var(--navy);color:#fff;border-radius:10px;font-size:.9rem}
.product-btn:hover{background:var(--blue)}
.product-btn.secondary{background:#fff;color:var(--navy);border:1px solid var(--border)}
.empty-state{text-align:center;padding:50px;color:var(--muted);grid-column:1/-1}

/* why */
.why-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center}
.why-copy h2{font-size:clamp(2rem,4vw,3rem);line-height:1.12;color:var(--navy);margin:8px 0 15px}
.why-copy>p{color:var(--muted);max-width:650px}
.features{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:30px}
.feature{display:flex;gap:13px;padding:18px;border:1px solid var(--border);border-radius:15px;background:#fff}
.feature i{width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:#fff4d9;color:var(--amber-dark);flex:0 0 auto}
.feature h4{color:var(--navy);margin-bottom:3px}
.feature p{color:var(--muted);font-size:.86rem}
.stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.stat-card{background:var(--navy);color:#fff;padding:28px;border-radius:18px;min-height:145px;display:flex;flex-direction:column;justify-content:center}
.stat-card:nth-child(2){background:var(--blue)}
.stat-card:nth-child(3){background:#182d45}
.stat-card:nth-child(4){background:#244b6d}
.stat-card h3{font-size:2.5rem;color:var(--amber);line-height:1}
.stat-card p{color:#dbeafe;margin-top:8px}

/* page hero */
.page-hero{min-height:350px;display:grid;place-items:center;text-align:center;position:relative;background:url("../images/hero-machine.jpg") center/cover no-repeat;color:#fff}
.page-hero .overlay{position:absolute;inset:0;background:linear-gradient(120deg,rgba(7,26,45,.88),rgba(7,26,45,.62))}
.page-content{position:relative;z-index:1;width:min(850px,92%);padding:70px 0}
.page-content h1{color:#fff}
.page-content p{color:#dbeafe;margin-top:14px;font-size:1.1rem}

/* about */
.split-grid{display:grid;grid-template-columns:1fr 1fr;gap:65px;align-items:center}
.rounded-image{width:100%;height:470px;object-fit:cover;border-radius:24px;box-shadow:var(--shadow)}
.split-copy h2{color:var(--navy);font-size:clamp(2rem,3.5vw,3rem);line-height:1.12;margin:8px 0 18px}
.split-copy p{color:var(--muted);margin-bottom:15px}
.icon-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.icon-card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:26px 20px;text-align:center}
.icon-card i{font-size:1.5rem;color:var(--amber-dark);margin-bottom:13px}
.icon-card h3{color:var(--navy);font-size:1.05rem;margin-bottom:7px}
.icon-card p{color:var(--muted);font-size:.88rem}
.process-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:15px}
.process-step{position:relative;padding:25px 18px;background:#fff;border:1px solid var(--border);border-radius:17px;text-align:center}
.process-step strong{display:grid;place-items:center;width:46px;height:46px;margin:0 auto 13px;border-radius:50%;background:var(--navy);color:var(--amber)}
.process-step h3{font-size:1rem;color:var(--navy)}

/* gallery */
.gallery-filter{display:flex;justify-content:center;flex-wrap:wrap;gap:9px;padding:35px 0 10px}
.gallery-filter button{border:1px solid var(--border);background:#fff;color:var(--navy);border-radius:999px;padding:10px 17px;font-weight:800}
.gallery-filter button.active,.gallery-filter button:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.gallery-card{position:relative;border-radius:18px;overflow:hidden;background:#e2e8f0;aspect-ratio:4/3;cursor:zoom-in}
.gallery-card img{width:100%;height:100%;object-fit:cover;transition:.35s}
.gallery-card:hover img{transform:scale(1.06)}
.factory-grid{display:grid;grid-template-columns:1fr 1fr;gap:55px;align-items:center}
.factory-grid img{height:430px;width:100%;object-fit:cover;border-radius:22px}
.check-list{list-style:none;margin-top:20px;display:grid;gap:10px}
.check-list li{color:var(--muted)}
.check-list i{color:var(--green);margin-right:9px}
.video-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.video-card{aspect-ratio:16/9;border-radius:18px;overflow:hidden;background:#0b1f36}
.video-card iframe{width:100%;height:100%;border:0}

/* catalog */
.catalog-controls{width:var(--container);margin:35px auto 10px}
.filter-buttons{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;margin-top:15px}
.filter-buttons button{border:1px solid var(--border);background:#fff;padding:9px 15px;border-radius:999px;font-weight:800;color:var(--navy)}
.filter-buttons button.active,.filter-buttons button:hover{background:var(--amber);border-color:var(--amber)}
.catalog-card .catalog-category{display:inline-flex;align-self:flex-start;background:#fff5dc;color:#a16207;border-radius:999px;padding:4px 9px;font-size:.75rem;font-weight:900;margin-bottom:10px}
.catalog-btn{display:inline-flex;align-items:center;justify-content:center;margin-top:auto;text-decoration:none;background:var(--navy);color:#fff;border-radius:10px;padding:11px 14px;font-weight:800}
.catalog-btn:hover{background:var(--amber);color:#111}

/* contact */
.contact-cards{width:var(--container);margin:50px auto;display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.contact-card{padding:25px 18px;border:1px solid var(--border);border-radius:18px;text-align:center;background:#fff;box-shadow:0 8px 25px rgba(11,31,54,.05)}
.contact-card i{font-size:1.45rem;color:var(--amber-dark);margin-bottom:10px}
.contact-card h3{color:var(--navy);font-size:1rem}
.contact-card p{color:var(--muted);font-size:.9rem;margin-top:4px}
.contact-layout{display:grid;grid-template-columns:.85fr 1.15fr;gap:55px;align-items:start}
.contact-info h2{color:var(--navy);font-size:clamp(2rem,3.5vw,2.8rem);line-height:1.15;margin:8px 0 15px}
.contact-info>p{color:var(--muted);margin-bottom:22px}
.info-box{display:flex;gap:15px;padding:17px 0;border-bottom:1px solid var(--border)}
.info-box i{color:var(--amber-dark);font-size:1.15rem;width:24px;padding-top:4px}
.info-box h4{color:var(--navy)}
.info-box p,.info-box a{color:var(--muted);text-decoration:none}
.contact-form{background:#fff;border:1px solid var(--border);border-radius:22px;padding:30px;box-shadow:var(--shadow)}
.contact-form h3{color:var(--navy);font-size:1.45rem;margin-bottom:17px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;border:1px solid var(--border);border-radius:12px;padding:13px 14px;background:#f8fafc;color:var(--text)}
.contact-form textarea{min-height:140px;resize:vertical}
.form-full{grid-column:1/-1}
.contact-form button{width:100%;border:0;border-radius:12px;background:var(--amber);padding:13px;font-weight:900;margin-top:14px}
.form-note{font-size:.8rem;color:var(--muted);margin-top:10px;text-align:center}
.map-wrap{width:var(--container);height:430px;margin:auto;border-radius:22px;overflow:hidden;box-shadow:var(--shadow)}
.map-wrap iframe{width:100%;height:100%;border:0}
.hours-grid{width:min(760px,92%);margin:auto;display:grid;grid-template-columns:1fr 1fr;border:1px solid var(--border);border-radius:16px;overflow:hidden}
.hours-grid div{padding:15px 18px;background:#fff;border-bottom:1px solid var(--border)}
.hours-grid div:nth-child(odd){font-weight:800;color:var(--navy);border-right:1px solid var(--border)}
.faq-grid{width:min(850px,92%);margin:auto;display:grid;gap:12px}
.faq{background:#fff;border:1px solid var(--border);border-radius:15px;padding:18px 20px}
.faq h3{font-size:1rem;color:var(--navy)}
.faq p{color:var(--muted);font-size:.9rem;margin-top:5px}

/* CTA */
.cta-section{background:linear-gradient(120deg,var(--navy),#173f65);color:#fff;text-align:center;padding:75px 20px}
.cta-section h2{font-size:clamp(2rem,4vw,3rem);line-height:1.1}
.cta-section p{color:#cbd5e1;max-width:650px;margin:13px auto 25px}

/* footer */
footer{background:#071626;color:#cbd5e1;padding-top:55px}
.footer-grid{width:var(--container);display:grid;grid-template-columns:1.4fr .8fr 1fr 1fr;gap:35px;padding-bottom:40px}
.footer-brand img{width:180px;height:auto;max-height:70px;object-fit:contain;margin-bottom:13px}
.footer-grid h3{color:#fff;font-size:1rem;margin-bottom:14px}
.footer-grid p{font-size:.9rem;color:#94a3b8}
.footer-links{display:grid;gap:8px}
.footer-links a{color:#cbd5e1;text-decoration:none;font-size:.9rem}
.footer-links a:hover{color:var(--amber)}
.footer-contact{display:grid;gap:9px}
.footer-contact a{color:#cbd5e1;text-decoration:none;font-size:.9rem}
.footer-contact i{width:20px;color:var(--amber)}
.footer-social{width:var(--container);display:flex;gap:9px;padding:18px 0;border-top:1px solid rgba(255,255,255,.09)}
.footer-social a{width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.08);color:#fff;text-decoration:none}
.footer-social a:hover{background:var(--amber);color:#111}
.copyright{border-top:1px solid rgba(255,255,255,.09);padding:17px 4%;text-align:center;font-size:.82rem;color:#64748b}

/* floating actions */
.floating-actions{position:fixed;right:18px;bottom:18px;z-index:900;display:grid;gap:9px}
.floating-actions a{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;text-decoration:none;color:#fff;box-shadow:0 10px 25px rgba(0,0,0,.18)}
.floating-call{background:var(--blue)}
.floating-wa{background:#25d366}
.back-top{position:fixed;right:18px;bottom:138px;width:42px;height:42px;border:0;border-radius:50%;background:#fff;color:var(--navy);box-shadow:0 8px 22px rgba(0,0,0,.15);display:none;z-index:900}
.back-top.show{display:grid;place-items:center}

/* modals */
.modal{position:fixed;inset:0;background:rgba(3,13,25,.72);display:none;place-items:center;padding:20px;z-index:2000}
.modal.open{display:grid}
.modal-box{width:min(720px,100%);max-height:90vh;overflow:auto;background:#fff;border-radius:22px;padding:30px;position:relative;box-shadow:0 30px 90px rgba(0,0,0,.3)}
.modal-close{position:absolute;right:17px;top:14px;border:0;background:#f1f5f9;width:38px;height:38px;border-radius:50%;font-size:1.4rem;color:var(--navy)}
.product-modal-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:25px;align-items:center}
.product-modal-grid img{width:100%;height:300px;object-fit:cover;border-radius:15px}
.product-modal-grid h3{color:var(--navy);font-size:1.6rem;margin-bottom:8px}
.product-modal-grid p{color:var(--muted);margin-bottom:16px}
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.92);display:none;place-items:center;padding:35px;z-index:2100}
.lightbox.open{display:grid}
.lightbox img{max-width:95vw;max-height:90vh;object-fit:contain;border-radius:8px}
.lightbox-close{position:absolute;right:22px;top:15px;border:0;background:transparent;color:#fff;font-size:42px}

/* responsive */
@media(max-width:1000px){
  .nav-cta{display:none!important}
  .nav-links{position:absolute;left:0;right:0;top:100%;background:#fff;display:none;flex-direction:column;align-items:stretch;padding:14px var(--container);box-shadow:0 15px 25px rgba(11,31,54,.10)}
  .nav-links.open{display:flex}
  .nav-links a{display:block}
  .mobile-menu-btn{display:block}
  .product-grid,.catalog-grid{grid-template-columns:repeat(2,1fr)}
  .icon-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(3,1fr)}
  .contact-cards{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  .top-bar .container{justify-content:center}
  .top-left{gap:10px}.top-left span:nth-child(2){display:none}
  .top-right{display:none}
  .navbar{min-height:72px}.logo img{height:52px}
  .hero-slider{height:650px;min-height:650px}
  .slide-content{left:5%;top:52%;width:90%}
  .slide-content h1{font-size:clamp(2.25rem,10vw,3.5rem)}
  .trust-grid{grid-template-columns:1fr 1fr}
  .trust-item{border-bottom:1px solid rgba(255,255,255,.12)}
  .section{padding:65px 0}
  .product-grid,.catalog-grid,.gallery-grid{grid-template-columns:1fr}
  .why-grid,.split-grid,.factory-grid,.contact-layout{grid-template-columns:1fr;gap:35px}
  .features,.stats-grid{grid-template-columns:1fr 1fr}
  .rounded-image,.factory-grid img{height:320px}
  .video-grid{grid-template-columns:1fr}
  .contact-cards{grid-template-columns:1fr 1fr;margin:35px auto}
  .page-hero{min-height:300px}
  .form-grid{grid-template-columns:1fr}.form-full{grid-column:auto}
  .footer-grid{grid-template-columns:1fr}
  .product-modal-grid{grid-template-columns:1fr}
}
@media(max-width:480px){
  .hero-slider{height:590px;min-height:590px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .hero-actions .btn{width:100%}
  .trust-item{padding:18px 8px}.trust-item strong{font-size:1.35rem}
  .features,.stats-grid,.contact-cards,.icon-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr 1fr}
  .gallery-filter{padding-inline:10px}
  .contact-form,.modal-box{padding:22px}
  .floating-actions{right:12px;bottom:12px}
  .floating-actions a{width:48px;height:48px}
  .back-top{right:12px;bottom:124px}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;transition:none!important;animation:none!important}
}

/* FINAL MOBILE NAVBAR FIX */
.site-header{position:sticky;top:0;z-index:5000;background:rgba(255,255,255,.98);box-shadow:0 6px 20px rgba(10,34,64,.10)}
.site-header .navbar{width:min(1200px,92%);min-height:76px;margin:auto;padding:10px 0;display:flex;align-items:center;justify-content:space-between;gap:20px;background:transparent;box-shadow:none}
.site-header .logo{display:flex;align-items:center}.site-header .logo img{height:58px;width:auto;max-width:190px;object-fit:contain}
.site-header .nav-menu{display:flex;align-items:center;gap:22px}.site-header .nav-links{display:flex;align-items:center;gap:4px;list-style:none;margin:0;padding:0}.site-header .nav-links li{margin:0}.site-header .nav-links a{display:flex;align-items:center;min-height:42px;padding:8px 13px;color:#123B67;text-decoration:none;font-weight:700;border-radius:10px;white-space:nowrap}.site-header .nav-links a:hover{background:#f1f5f9;color:#0A2240}.site-header .nav-cta{display:flex;align-items:center;justify-content:center;min-height:44px;padding:0 20px;border-radius:999px;background:#F59E0B;color:white;text-decoration:none;font-weight:800;white-space:nowrap}.site-header .nav-toggle{display:none;width:46px;height:46px;padding:0;border:1px solid #dbe3ec;border-radius:12px;background:#fff;cursor:pointer;align-items:center;justify-content:center;flex-direction:column;gap:5px}.site-header .nav-toggle span{width:21px;height:2px;background:#123B67;border-radius:99px;transition:.2s}.site-header.menu-open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}.site-header.menu-open .nav-toggle span:nth-child(2){opacity:0}.site-header.menu-open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media(max-width:920px){.site-header .navbar{width:calc(100% - 28px);min-height:70px}.site-header .logo img{height:52px;max-width:165px}.site-header .nav-toggle{display:flex}.site-header .nav-menu{position:absolute;top:calc(100% + 7px);left:0;right:0;display:flex;flex-direction:column;align-items:stretch;gap:8px;padding:0 12px;max-height:0;overflow:hidden;background:white;border:1px solid #e5eaf0;border-radius:18px;box-shadow:0 18px 40px rgba(10,34,64,.15);opacity:0;visibility:hidden;transform:translateY(-8px);pointer-events:none;transition:max-height .25s ease,opacity .2s ease,transform .2s ease,visibility .2s}.site-header.menu-open .nav-menu{max-height:430px;padding:12px;opacity:1;visibility:visible;transform:none;pointer-events:auto}.site-header .nav-links{width:100%;flex-direction:column;align-items:stretch;gap:3px}.site-header .nav-links a{width:100%;min-height:48px;padding:10px 14px}.site-header .nav-cta{width:100%;min-height:48px;margin-top:3px}}
@media(max-width:480px){.site-header .navbar{width:calc(100% - 20px);min-height:64px}.site-header .logo img{height:46px;max-width:145px}.site-header .nav-toggle{width:44px;height:44px}}


/* =========================================================
   PREMIUM CARD DESIGN + MOTION SYSTEM
   ========================================================= */

:root {
    --card-radius: 22px;
    --card-shadow: 0 14px 40px rgba(10, 34, 64, .10);
    --card-shadow-hover: 0 24px 55px rgba(10, 34, 64, .18);
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* ---------- Global reveal animation ---------- */

@keyframes se-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes se-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes se-scale-in {
    from {
        opacity: 0;
        transform: scale(.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---------- Product cards ---------- */

.product-card,
.catalog-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(18, 59, 103, .09);
    border-radius: var(--card-radius);
    background: #fff;
    box-shadow: var(--card-shadow);
    transform: translateY(0);
    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s ease,
        border-color .35s ease;
    animation: se-fade-up .6s both;
}

.product-card::before,
.catalog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(245,158,11,.10),
        transparent 38%,
        rgba(18,59,103,.04)
    );
    opacity: 0;
    transition: opacity .35s ease;
}

.product-card:hover,
.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(245,158,11,.35);
}

.product-card:hover::before,
.catalog-card:hover::before {
    opacity: 1;
}

/* Stagger cards automatically */
.product-grid > :nth-child(1),
.catalog-grid > :nth-child(1) { animation-delay: .05s; }
.product-grid > :nth-child(2),
.catalog-grid > :nth-child(2) { animation-delay: .10s; }
.product-grid > :nth-child(3),
.catalog-grid > :nth-child(3) { animation-delay: .15s; }
.product-grid > :nth-child(4),
.catalog-grid > :nth-child(4) { animation-delay: .20s; }
.product-grid > :nth-child(5),
.catalog-grid > :nth-child(5) { animation-delay: .25s; }
.product-grid > :nth-child(6),
.catalog-grid > :nth-child(6) { animation-delay: .30s; }
.product-grid > :nth-child(7),
.catalog-grid > :nth-child(7) { animation-delay: .35s; }
.product-grid > :nth-child(8),
.catalog-grid > :nth-child(8) { animation-delay: .40s; }
.product-grid > :nth-child(n+9),
.catalog-grid > :nth-child(n+9) { animation-delay: .45s; }

/* Product image treatment */
.product-card > img,
.catalog-card > img {
    display: block;
    width: 100%;
    height: 235px;
    object-fit: cover;
    background: #f1f5f9;
    transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}

.product-card:hover > img,
.catalog-card:hover > img {
    transform: scale(1.055);
    filter: saturate(1.06);
}

/* Image shine */
.product-card::after,
.catalog-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 65%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.24),
        transparent
    );
    transform: skewX(-18deg);
    transition: left .7s ease;
}

.product-card:hover::after,
.catalog-card:hover::after {
    left: 145%;
}

/* Product content */
.product-content,
.catalog-content {
    position: relative;
    padding: 22px;
}

.product-content h3,
.catalog-content h3 {
    color: #0A2240;
    font-size: 1.16rem;
    line-height: 1.35;
    margin: 0 0 9px;
    transition: color .25s ease;
}

.product-card:hover h3,
.catalog-card:hover h3 {
    color: #123B67;
}

.product-content p,
.catalog-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
}

.product-content > span,
.catalog-content > span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(245,158,11,.11);
    color: #b45309;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Card buttons */
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-btn,
.catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.product-btn:hover,
.catalog-btn:hover {
    transform: translateY(-2px);
}

/* ---------- Catalog cards ---------- */

.catalog-card .catalog-btn {
    background: #123B67;
    color: #fff;
    box-shadow: 0 8px 18px rgba(18,59,103,.16);
}

.catalog-card .catalog-btn:hover {
    background: #0A2240;
    box-shadow: 0 12px 25px rgba(18,59,103,.22);
}

/* ---------- Why-us / feature cards ---------- */

.feature,
.choose-card,
.contact-card,
.stat-card,
.mission-box,
.info-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(18,59,103,.08);
    border-radius: 20px;
    transition:
        transform .3s cubic-bezier(.2,.8,.2,1),
        box-shadow .3s ease,
        border-color .3s ease;
}

.feature::before,
.choose-card::before,
.contact-card::before,
.stat-card::before,
.mission-box::before,
.info-box::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(245,158,11,.10);
    transition: transform .4s ease;
}

.feature:hover,
.choose-card:hover,
.contact-card:hover,
.stat-card:hover,
.mission-box:hover,
.info-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(10,34,64,.12);
    border-color: rgba(245,158,11,.28);
}

.feature:hover::before,
.choose-card:hover::before,
.contact-card:hover::before,
.stat-card:hover::before,
.mission-box:hover::before,
.info-box:hover::before {
    transform: scale(1.8);
}

.feature i,
.choose-card i,
.contact-card i,
.mission-box i {
    transition: transform .3s ease;
}

.feature:hover i,
.choose-card:hover i,
.contact-card:hover i,
.mission-box:hover i {
    transform: translateY(-3px) scale(1.08);
}

/* ---------- Gallery cards ---------- */

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(10,34,64,.10);
    animation: se-scale-in .55s both;
    transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-card::after {
    content: "View Image";
    position: absolute;
    inset: auto 14px 14px auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10,34,64,.78);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(10,34,64,.18);
}

.gallery-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}

.gallery-card:hover img {
    transform: scale(1.07);
    filter: brightness(.88);
}

/* ---------- Buttons ---------- */

.btn-primary,
.btn-secondary,
.cta-btn,
.quote-btn {
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.btn-primary:hover,
.cta-btn:hover,
.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(245,158,11,.24);
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

/* ---------- Search / filter controls ---------- */

.product-search input,
.catalog-controls input {
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.product-search input:focus,
.catalog-controls input:focus {
    border-color: #F59E0B;
    box-shadow: 0 0 0 4px rgba(245,158,11,.12);
    transform: translateY(-1px);
}

/* ---------- Mobile card refinements ---------- */

@media (max-width: 600px) {
    .product-card,
    .catalog-card {
        border-radius: 18px;
    }

    .product-card > img,
    .catalog-card > img {
        height: 210px;
    }

    .product-content,
    .catalog-content {
        padding: 18px;
    }

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

    .product-btn,
    .catalog-btn {
        width: 100%;
    }

    .gallery-card img {
        height: 230px;
    }
}


.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .65s ease var(--reveal-delay, 0ms),
        transform .65s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   FOUNDER & CO-FOUNDER SECTION
========================================================= */

.leadership-section {
    position: relative;
    overflow: hidden;
}

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

.leadership-heading h2 {
    margin-bottom: 12px;
}

.leadership-heading p {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}


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

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}


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

.leader-card {
    display: grid;
    grid-template-columns: 230px 1fr;
    align-items: stretch;

    background: #ffffff;

    border: 1px solid rgba(11, 31, 54, 0.10);
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(11, 31, 54, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

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

    box-shadow:
        0 20px 45px rgba(11, 31, 54, 0.15);
}


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

.leader-image {
    position: relative;

    width: 100%;
    min-height: 330px;

    overflow: hidden;

    background: #eef2f6;
}

.leader-image img {
    width: 100%;
    height: 100%;

    min-height: 330px;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}

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


/* =========================================================
   LEADER CONTENT
========================================================= */

.leader-content {
    padding: 35px 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-role {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: #f59e0b;
}

.leader-content h3 {
    margin: 0 0 15px;

    font-size: 1.65rem;

    color: #0b1f36;
}

.leader-content > p {
    margin: 0;

    color: #526174;

    line-height: 1.75;

    font-size: 0.96rem;
}


/* =========================================================
   LEADER QUOTE
========================================================= */

.leader-quote {
    margin-top: 25px;

    padding: 18px 20px;

    border-left: 4px solid #f59e0b;

    background: #f8fafc;

    border-radius: 0 10px 10px 0;
}

.leader-quote i {
    display: block;

    margin-bottom: 8px;

    font-size: 18px;

    color: #f59e0b;
}

.leader-quote p {
    margin: 0;

    color: #0b1f36;

    font-size: 0.92rem;

    line-height: 1.6;

    font-style: italic;
}


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

@media (max-width: 900px) {

    .leadership-grid {
        grid-template-columns: 1fr;

        max-width: 700px;
    }

    .leader-card {
        grid-template-columns: 220px 1fr;
    }

}


@media (max-width: 600px) {

    .leadership-heading {
        margin-bottom: 30px;
    }

    .leadership-grid {
        gap: 25px;
    }

    .leader-card {
        display: block;

        border-radius: 16px;
    }

    .leader-image {
        height: 330px;
        min-height: 330px;
    }

    .leader-image img {
        height: 330px;
        min-height: 330px;
    }

    .leader-content {
        padding: 25px 22px 28px;
    }

    .leader-content h3 {
        font-size: 1.4rem;
    }

    .leader-content > p {
        font-size: 0.93rem;
    }

    .leader-quote {
        margin-top: 20px;
        padding: 15px 16px;
    }

}


@media (max-width: 400px) {

    .leader-image {
        height: 280px;
        min-height: 280px;
    }

    .leader-image img {
        height: 280px;
        min-height: 280px;
    }

    .leader-content {
        padding: 22px 18px 24px;
    }

}

/* Founder image fallback */

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 330px;

    display: flex;
    flex-direction: column;

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

    gap: 10px;

    background: #eef2f6;

    color: #0b1f36;

    font-size: 16px;
}

.image-placeholder i {
    font-size: 55px;
    color: #f59e0b;
}

.image-placeholder span {
    font-weight: 600;
}

/* =========================================================
   SAWARIYA ENGINEERING
   PREMIUM PRODUCT PAGE
========================================================= */


/* =========================================================
   PRODUCT HERO
========================================================= */

.product-page-hero {
    min-height: 440px;
}

.product-hero-tag {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 2px;

    color: #f59e0b;
}


/* =========================================================
   PRODUCT STATS
========================================================= */

.product-stats-section {
    background: #0b1f36;

    padding: 0;
}

.product-stats-grid {
    display: grid;

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

    gap: 0;
}

.product-stat {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 28px 25px;

    border-right:
        1px solid rgba(255,255,255,0.10);
}

.product-stat:last-child {
    border-right: 0;
}

.product-stat-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

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

    border-radius: 12px;

    background:
        rgba(245,158,11,0.12);

    color: #f59e0b;

    font-size: 19px;
}

.product-stat strong {
    display: block;

    color: #ffffff;

    font-size: 1.35rem;

    line-height: 1.2;
}

.product-stat span {
    display: block;

    margin-top: 4px;

    color:
        rgba(255,255,255,0.68);

    font-size: 0.78rem;
}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.product-catalog-section {
    padding-top: 80px;
}

.product-section-heading {
    text-align: center;

    max-width: 720px;

    margin: 0 auto 40px;
}

.product-section-heading p {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   TOOLBAR
========================================================= */

.catalog-toolbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}

.catalog-search {
    position: relative;

    width: 100%;
    max-width: 600px;
}

.catalog-search > i {
    position: absolute;

    left: 18px;
    top: 50%;

    transform:
        translateY(-50%);

    color: #7a8796;

    pointer-events: none;
}

.catalog-search input {
    width: 100%;

    height: 52px;

    padding:
        0 48px;

    border:
        1px solid #dce3ea;

    border-radius: 10px;

    outline: none;

    background: #ffffff;

    color: #0b1f36;

    font-size: 0.95rem;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.catalog-search input:focus {
    border-color: #f59e0b;

    box-shadow:
        0 0 0 3px
        rgba(245,158,11,0.12);
}

.clear-search {
    position: absolute;

    right: 10px;
    top: 50%;

    transform:
        translateY(-50%);

    width: 34px;
    height: 34px;

    border: 0;

    border-radius: 8px;

    background: transparent;

    color: #7a8796;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.clear-search:hover {
    background: #f1f4f7;

    color: #0b1f36;
}


/* =========================================================
   SORT
========================================================= */

.catalog-sort {
    display: flex;

    align-items: center;

    gap: 10px;

    white-space: nowrap;
}

.catalog-sort label {
    font-size: 0.88rem;

    color: #667487;

    font-weight: 600;
}

.catalog-sort select {
    height: 48px;

    padding:
        0 35px 0 14px;

    border:
        1px solid #dce3ea;

    border-radius: 9px;

    background: #ffffff;

    color: #0b1f36;

    cursor: pointer;

    outline: none;
}


/* =========================================================
   FILTER BUTTONS
========================================================= */

.filter-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 22px;
}

.filter-buttons button {
    padding:
        10px 20px;

    border:
        1px solid #dce3ea;

    border-radius: 999px;

    background: #ffffff;

    color: #526174;

    font-size: 0.86rem;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.filter-buttons button:hover {
    transform: translateY(-2px);

    border-color: #f59e0b;

    color: #0b1f36;
}

.filter-buttons button.active {
    background: #0b1f36;

    border-color: #0b1f36;

    color: #ffffff;
}


/* =========================================================
   RESULT BAR
========================================================= */

.catalog-result-bar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;

    padding-bottom: 14px;

    border-bottom:
        1px solid #e7ebef;
}

.catalog-result-bar span {
    color: #667487;

    font-size: 0.88rem;

    font-weight: 600;
}


/* =========================================================
   PREMIUM PRODUCT GRID
========================================================= */

.premium-catalog-grid {
    display: grid;

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

    gap: 28px;
}


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

.premium-product-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid rgba(11,31,54,0.09);

    border-radius: 16px;

    box-shadow:
        0 8px 25px
        rgba(11,31,54,0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

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

    box-shadow:
        0 20px 45px
        rgba(11,31,54,0.14);
}


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

.catalog-image-wrap {
    position: relative;

    height: 250px;

    overflow: hidden;

    background:
        #edf1f5;
}

.catalog-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}

.premium-product-card:hover
.catalog-image-wrap img {
    transform:
        scale(1.06);
}

.catalog-category {
    position: absolute;

    top: 14px;
    left: 14px;

    padding:
        6px 11px;

    border-radius: 6px;

    background:
        rgba(11,31,54,0.90);

    color: #ffffff;

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.5px;
}

.product-number {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 34px;
    height: 34px;

    display: flex;

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

    border-radius: 50%;

    background:
        rgba(245,158,11,0.95);

    color: #0b1f36;

    font-size: 0.72rem;

    font-weight: 900;
}


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

.product-image-placeholder {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

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

    gap: 10px;

    background:
        linear-gradient(
            135deg,
            #e8edf2,
            #f7f9fb
        );

    color: #0b1f36;
}

.product-image-placeholder i {
    font-size: 48px;

    color: #f59e0b;
}

.product-image-placeholder span {
    font-size: 0.85rem;

    font-weight: 700;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.premium-product-card
.catalog-content {
    padding: 23px 22px 20px;
}

.premium-product-card
.catalog-content h3 {
    margin:
        0 0 9px;

    color: #0b1f36;

    font-size: 1.15rem;

    line-height: 1.35;
}

.premium-product-card
.catalog-content p {
    min-height: 48px;

    margin:
        0 0 20px;

    color: #657386;

    font-size: 0.88rem;

    line-height: 1.65;
}


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

.catalog-card-footer {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 15px;

    border-top:
        1px solid #edf0f3;
}

.catalog-btn {
    flex: 1;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 42px;

    padding:
        9px 15px;

    border-radius: 8px;

    background: #0b1f36;

    color: #ffffff;

    border: 0;

    font-size: 0.82rem;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.catalog-btn:hover {
    background: #123b67;

    transform:
        translateX(2px);
}

.catalog-btn i {
    font-size: 0.72rem;
}

.catalog-quote-btn {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

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

    border-radius: 8px;

    background: #25d366;

    color: #ffffff;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.catalog-quote-btn:hover {
    transform:
        translateY(-2px);

    filter:
        brightness(0.92);
}


/* =========================================================
   PRODUCT BENEFITS
========================================================= */

.product-benefits-section {
    padding-top: 80px;

    padding-bottom: 80px;
}

.product-benefits-grid {
    display: grid;

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

    gap: 22px;
}

.product-benefit {
    padding: 28px 24px;

    background: #ffffff;

    border:
        1px solid rgba(11,31,54,0.08);

    border-radius: 14px;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-benefit:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 15px 35px
        rgba(11,31,54,0.09);
}

.product-benefit-icon {
    width: 52px;
    height: 52px;

    margin:
        0 auto 18px;

    display: flex;

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

    border-radius: 12px;

    background:
        rgba(245,158,11,0.12);

    color: #f59e0b;

    font-size: 21px;
}

.product-benefit h3 {
    margin:
        0 0 9px;

    color: #0b1f36;

    font-size: 1.05rem;
}

.product-benefit p {
    margin: 0;

    color: #667487;

    font-size: 0.87rem;

    line-height: 1.65;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

body.modal-open {
    overflow: hidden;
}

.product-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

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

    padding: 25px;

    background:
        rgba(4,15,28,0.78);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.product-modal.open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.product-modal-box {
    position: relative;

    width: 100%;

    max-width: 1000px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 0;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.30);

    transform:
        translateY(20px)
        scale(0.97);

    transition:
        transform 0.3s ease;
}

.product-modal.open
.product-modal-box {
    transform:
        translateY(0)
        scale(1);
}

.product-modal-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
}

.product-modal-image {
    min-height: 540px;

    background: #edf1f5;
}

.product-modal-image img {
    width: 100%;
    height: 100%;

    min-height: 540px;

    display: block;

    object-fit: cover;
}

.product-modal-content {
    padding: 48px 42px;
}

.modal-product-category {
    display: inline-block;

    margin-bottom: 12px;

    padding:
        6px 11px;

    border-radius: 5px;

    background:
        rgba(245,158,11,0.12);

    color: #b66d00;

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.product-modal-content h2 {
    margin:
        0 0 15px;

    color: #0b1f36;

    font-size: 2rem;

    line-height: 1.2;
}

.modal-description {
    color: #5e6d7e;

    font-size: 0.95rem;

    line-height: 1.75;

    margin-bottom: 28px;
}

.modal-info-section {
    margin-top: 25px;
}

.modal-info-section h3 {
    margin:
        0 0 13px;

    color: #0b1f36;

    font-size: 1rem;
}

.modal-feature-list {
    display: grid;

    gap: 9px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.modal-feature-list li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #536174;

    font-size: 0.88rem;

    line-height: 1.5;
}

.modal-feature-list li i {
    margin-top: 3px;

    color: #f59e0b;

    font-size: 0.78rem;
}

.application-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.application-tags span {
    padding:
        7px 10px;

    border-radius: 6px;

    background: #f1f4f7;

    color: #526174;

    font-size: 0.76rem;

    font-weight: 600;
}


/* =========================================================
   MODAL ACTIONS
========================================================= */

.modal-actions {
    display: flex;

    gap: 10px;

    margin-top: 30px;
}

.modal-quote-btn,
.modal-whatsapp-btn {
    flex: 1;

    min-height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding:
        10px 15px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 0.84rem;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.modal-quote-btn {
    background: #0b1f36;

    color: #ffffff;
}

.modal-whatsapp-btn {
    background: #25d366;

    color: #ffffff;
}

.modal-quote-btn:hover,
.modal-whatsapp-btn:hover {
    transform:
        translateY(-2px);

    filter:
        brightness(0.95);
}


/* =========================================================
   MODAL CLOSE
========================================================= */

.product-modal .modal-close {
    position: absolute;

    z-index: 5;

    top: 16px;
    right: 16px;

    width: 40px;
    height: 40px;

    display: flex;

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

    border: 0;

    border-radius: 50%;

    background:
        rgba(11,31,54,0.90);

    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.product-modal .modal-close:hover {
    transform:
        rotate(90deg);

    background: #f59e0b;

    color: #0b1f36;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.product-empty-state {
    grid-column:
        1 / -1;

    min-height: 300px;

    display: flex;

    flex-direction: column;

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

    padding: 50px 20px;

    text-align: center;
}

.product-empty-state > i {
    margin-bottom: 18px;

    color: #f59e0b;

    font-size: 38px;
}

.product-empty-state h3 {
    margin:
        0 0 8px;

    color: #0b1f36;
}

.product-empty-state p {
    margin:
        0 0 20px;

    color: #667487;
}

.catalog-reset-btn {
    padding:
        10px 18px;

    border: 0;

    border-radius: 8px;

    background: #0b1f36;

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;
}


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

.product-final-cta {
    padding:
        85px 20px;
}

.product-cta-inner {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}

.cta-tag {
    display: inline-block;

    margin-bottom: 10px;

    color: #f59e0b;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.product-cta-inner h2 {
    margin:
        0 0 13px;

    color: #ffffff;
}

.product-cta-inner p {
    max-width: 650px;

    margin:
        0 auto 25px;

    color:
        rgba(255,255,255,0.72);

    line-height: 1.7;
}

.cta-actions {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.whatsapp-cta {
    background: #25d366 !important;
}


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

@media (max-width: 1100px) {

    .premium-catalog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

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

}


@media (max-width: 900px) {

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

    .product-stat {
        border-bottom:
            1px solid rgba(255,255,255,0.10);
    }

    .product-stat:nth-child(2) {
        border-right: 0;
    }

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

    .product-modal-image {
        min-height: 350px;

        height: 350px;
    }

    .product-modal-image img {
        min-height: 350px;

        height: 350px;
    }

}


@media (max-width: 700px) {

    .catalog-toolbar {
        flex-direction: column;

        align-items: stretch;
    }

    .catalog-search {
        max-width: none;
    }

    .catalog-sort {
        justify-content: space-between;
    }

    .catalog-sort select {
        flex: 1;

        max-width: 200px;
    }

    .premium-catalog-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .catalog-image-wrap {
        height: 240px;
    }

}


@media (max-width: 600px) {

    .product-page-hero {
        min-height: 360px;
    }

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

    .product-stat {
        border-right: 0;

        padding:
            22px 20px;
    }

    .product-stat:last-child {
        border-bottom: 0;
    }

    .filter-buttons {
        gap: 7px;
    }

    .filter-buttons button {
        padding:
            9px 15px;

        font-size: 0.8rem;
    }

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

    .product-modal {
        padding: 10px;
    }

    .product-modal-box {
        max-height: 94vh;

        border-radius: 14px;
    }

    .product-modal-image {
        height: 260px;

        min-height: 260px;
    }

    .product-modal-image img {
        height: 260px;

        min-height: 260px;
    }

    .product-modal-content {
        padding:
            30px 22px 25px;
    }

    .product-modal-content h2 {
        font-size: 1.55rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .product-final-cta {
        padding:
            65px 20px;
    }

}


@media (max-width: 400px) {

    .catalog-image-wrap {
        height: 220px;
    }

    .premium-product-card
    .catalog-content {
        padding:
            20px 18px 18px;
    }

    .product-stat {
        padding:
            20px 15px;
    }

}

.machine-showcase {
    padding: 100px 0;
    background: #f7f8fa;
    overflow: hidden;
}

.machine-showcase .section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.machine-showcase .section-title span {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d49a28;
}

.machine-showcase .section-title h2 {
    margin: 0 0 15px;
    font-size: clamp(30px, 4vw, 48px);
    color: #10233f;
}

.machine-showcase .section-title p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

.machine-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.machine-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: machineScroll 35s linear infinite;
}

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

.machine-slide {
    position: relative;
    flex: 0 0 380px;
    height: 430px;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

.machine-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.machine-slide:hover img {
    transform: scale(1.08);
}

.machine-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 70px 25px 25px;
    color: #fff;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0)
    );
}

.machine-overlay span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.machine-overlay h3 {
    margin: 8px 0 0;
    font-size: 23px;
}

@keyframes machineScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .machine-slide {
        flex-basis: 320px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .machine-showcase {
        padding: 70px 0;
    }

    .machine-track {
        gap: 16px;
        animation-duration: 28s;
    }

    .machine-slide {
        flex-basis: 280px;
        height: 350px;
        border-radius: 16px;
    }

    .machine-overlay {
        padding: 60px 20px 20px;
    }

    .machine-overlay h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .machine-slide {
        flex-basis: 270px;
        height: 330px;
    }
}