h1,
h2,
h3,
.hero h1,
.showcase-text h2,
.application-content h2,
.accessories h2,
.product-card-large h3{
    color:#ffffff !important;
}


.site-content{
    max-width:100% !important;
    width:100% !important;
    padding:0 !important;
}

.content-area{
    width:100% !important;
    max-width:100% !important;
}

.site-main{
    width:100% !important;
    max-width:100% !important;
}
.container{
    width:100% !important;
    max-width:100% !important;
    padding:0 !important;
}


/* =========================
   GLOBAL
========================= */


html{
    scroll-behavior:smooth;
}

#content{
    background:
        linear-gradient(
            rgba(5,11,20,.90),
            rgba(5,11,20,.90)
        ),
        url('../images10/16.webp');

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

section{
    position:relative;
}

/* =========================
   BUTTON
========================= */

.btn-red{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 34px;
    background:#e31e24;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 0 30px rgba(227,30,36,.25);
}

.btn-red:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 40px rgba(227,30,36,.4);
}

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

/* HERO */

.hero{
    position:relative;
    padding:60px 0 0;
    overflow:hidden;

    background:
    radial-gradient(circle at right,
    rgba(227,30,36,.15),
    transparent 40%),
    linear-gradient(
    90deg,
    #050b14 0%,
    #07101d 100%
    );

    text-align:center;
}

.hero-content{
    width:90%;
    max-width:1000px;
    margin:0 auto 50px;
}

.hero h1{
    font-size:7rem;
    font-weight:900;
    line-height:.9;
    margin:0 0 25px;
    color:#001a4d;
}

.hero h1 span{
    display:block;
}

.hero p{
    max-width:800px;
    margin:auto;
    font-size:1.2rem;
    line-height:1.8;
    color:#fff;
}

.hero-image{
    width:100%;
}

.hero-image img{
    display:block;
    width:100%;
    max-width:350px;
    margin:auto;
    height:auto;
}

@media(max-width:992px){

    .hero{
        padding:60px 20px;
    }

    .hero h1{
        font-size:4rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-image img{
        max-width:40px;
    }
}
/* =========================
   SHOWCASE SECTIONS
========================= */

.showcase-section{
    width:100%;
    max-width:1400px;
    margin:80px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center;
}

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

.section-no{
    color:#e31e24;
    font-size:14px;
    letter-spacing:4px;
    display:block;
    margin-bottom:20px;
}

.showcase-text h2{
    font-size:4rem;
    line-height:1;
    margin-bottom:25px;
}

.showcase-text p{
    color:#9ea7b7;
    font-size:1.05rem;
    line-height:1.8;
    margin-bottom:35px;
    max-width:550px;
}

.showcase-image{
    position:relative;
}

.showcase-image img{
    max-width:750px;
    margin:auto;
    animation:float 6s ease-in-out infinite;
    filter:drop-shadow(0 20px 50px rgba(227,30,36,.2));
    transition:all .5s ease;
}
.showcase-image:hover img{
    transform:
    scale(1.05)
    translateY(-10px);

    filter:
    drop-shadow(
    0 30px 60px
    rgba(227,30,36,.25)
    );
}
/* =========================
   BRIDGE PLUG / RETAINER
========================= */

.dual-products{
    width:90%;
    max-width:1400px;
    margin:150px auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.product-card-large{
    position:relative;
    overflow:hidden;

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

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:30px;

    padding:50px;

    text-align:center;

    transition:.5s;
}

.product-card-large::before{
    content:'';

    position:absolute;
    top:0;
    left:-150%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transition:.8s;
}

.product-card-large:hover::before{
    left:150%;
}
.product-card-large:hover{
    transform:
        translateY(-12px)
        scale(1.02);

    border-color:#e31e24;

    box-shadow:
        0 25px 60px rgba(0,0,0,.35),
        0 0 30px rgba(227,30,36,.15);
}

.card-image{
    margin-bottom:30px;
}

.card-image img{
    max-width:500px;
    margin:auto;
}

.product-card-large h3{
    font-size:2rem;
    margin-bottom:15px;
}

.product-card-large p{
    color:#9ea7b7;
    margin-bottom:30px;
    line-height:1.8;
}

/* =========================
   ACCESSORIES
========================= */

.accessories{
    padding:80px 0;
}

.accessories h2{
    text-align:center;
    font-size:4rem;
    margin-bottom:80px;
}

.accessories .section-no{
    text-align:center;
}

.accessories-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    max-width:1000px;
    margin:0 auto 60px;
}

.accessory-item{
    background:rgba(255,255,255,.04);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    padding:35px;

    border-radius:20px;
}

.accessory-item:hover{
    transform:translateX(10px);

    border-color:#e31e24;

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

.accessories .btn-red{
    display:flex;
    width:max-content;
    margin:auto;
}

/* =========================
   APPLICATION
========================= */

.application-section{
    padding:150px 0;
}

.application-section .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.application-content h2{
    font-size:4rem;
    margin-bottom:25px;
}

.application-content p{
    color:#9ea7b7;
    line-height:1.9;
    margin-bottom:30px;
}

.application-content ul{
    list-style:none;
}

.application-content li{
    margin-bottom:15px;
    position:relative;
    padding-left:30px;
}

.application-content li::before{
    content:"";
    width:10px;
    height:10px;
    background:#e31e24;
    border-radius:50%;
    position:absolute;
    left:0;
    top:8px;
}


/* =========================
   FLOAT ANIMATION
========================= */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }
}

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

@media(max-width:992px){

    .hero-wrapper,
    .showcase-section,
    .application-section .container{
        grid-template-columns:1fr;
    }

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

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

    .hero{
        text-align:center;
        padding:120px 0;
    }

    .hero h1{
        font-size:4rem;
    }

    .showcase-text{
        text-align:center;
    }

    .showcase-text p{
        margin:auto auto 30px;
    }

    .showcase-text h2{
        font-size:3rem;
    }

    .application-content{
        text-align:center;
    }
}
/* =========================
   SCROLL REVEAL
========================= */

.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:all 1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.reveal-left{
    opacity:0;
    transform:translateX(-100px);
    transition:all 1s ease;
}

.reveal-left.active{
    opacity:1;
    transform:translateX(0);
}

.reveal-right{
    opacity:0;
    transform:translateX(100px);
    transition:all 1s ease;
}

.reveal-right.active{
    opacity:1;
    transform:translateX(0);
}

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

.footer{
    background:#000;
    color:#fff;
}

.footer-top{
    max-width:1400px;
    margin:auto;
    padding:70px 8%;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-box{
    padding-right:30px;
}

.footer-box h3{
    color:#d32f2f;
    font-size:22px;
    margin-bottom:20px;
}

.footer-box h4{
    margin-bottom:15px;
    font-size:18px;
    color:#fff;
}

.footer-box p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#cfcfcf;
    text-decoration:none;
    transition:0.3s;
}

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

.footer-sub-box{
    margin-bottom:35px;
}

.footer-sub-box:last-child{
    margin-bottom:0;
}

/* Social Icons */

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.footer-social a:hover{
    background:#d32f2f;
    border-color:#d32f2f;
    transform:translateY(-3px);
}

/* Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:25px 8%;
    text-align:center;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:15px;
}

.footer-links a{
    color:#cfcfcf;
    text-decoration:none;
}

.footer-links a:hover{
    color:#d32f2f;
}

.footer-bottom p{
    color:#999;
    margin:0;
}

/* Mobile */

@media(max-width:991px){

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-box{
        padding-right:0;
    }

}
.floating-social{
    position:fixed;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:9999;
}

.floating-social a{
    width:42px;
    height:42px;
    background:#071b38;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    transition:.3s;
}

.floating-social a:hover{
    background:#d32f2f;
    transform:translateX(-4px);
}

.supplier-logo{
    width:140px;
    height:auto;
    margin-top:10px;
    display:block;
    border-radius:4px;
    background:#fff;
    padding:5px;
}
/* Links */
.contact-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:inherit;
    text-decoration:none;
}
/* WhatsApp Contact Link */

.whatsapp-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

.whatsapp-link i{
    font-size:20px;
    color:#25D366;
}

.whatsapp-link:hover{
    color:#25D366;
}

.whatsapp-link:hover i{
    transform:scale(1.1);
}
.website-link{
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

.website-link:hover{
    color:#d32f2f;
}
.footer-address{
    color:inherit;
    text-decoration:none;
    display:inline-block;
    transition:0.3s ease;
}

.footer-address:hover{
    color:#d32f2f;
}
.phone-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

.phone-link:hover{
    color:#d32f2f;
}
.phone-link i{
    font-size:20px;
    color:#071b38;
}
.phone-link:hover i{
    transform:scale(1.1);
}

/* =========================================
   PACKER PAGE RESPONSIVE FOUNDATION
========================================= */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    overflow-x:clip;
}

body{
    overflow-x:hidden;
}

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

/* Sydney wraps this template in a 95%-wide container.  Make the page
   full bleed, then control width only on the content inside each section. */
#content.page-wrap,
#content .content-wrapper.container,
#content .content-wrapper.container > .row{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
}

#content .content-wrapper.container > .row > .hero,
#content .content-wrapper.container > .row > .products-section,
#content .content-wrapper.container > .row > .dual-products,
#content .content-wrapper.container > .row > .accessories,
#content .content-wrapper.container > .row > .footer{
    width:100%;
    max-width:none;
    margin-inline:0;
}

.hero{
    min-height:min(900px, 100svh);
    padding:clamp(5rem, 8vw, 7.5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
    display:flex;
    flex-direction:column;
    justify-content:center;
    isolation:isolate;
}

.hero-content{
    width:min(1000px, calc(100% - clamp(2rem, 6vw, 8rem)));
    margin:0 auto clamp(2rem, 4vw, 3.5rem);
}

.hero h1{
    font-size:clamp(3.25rem, 8vw, 7rem);
    letter-spacing:-.06em;
    overflow-wrap:anywhere;
}

.hero p{
    width:min(800px, 100%);
    font-size:clamp(1rem, 1.5vw, 1.2rem);
}

.hero-image img{
    width:min(100%, 34rem);
    max-width:none;
}

.products-section{
    width:100%;
    padding-block:clamp(3.5rem, 7vw, 7rem);
}

.showcase-section,
.dual-products{
    width:min(1400px, calc(100% - clamp(2rem, 6vw, 8rem)));
    max-width:none;
}

.showcase-section{
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
    gap:clamp(2.5rem, 7vw, 6.25rem);
    margin:clamp(4rem, 8vw, 7.5rem) auto;
}

.showcase-text,
.showcase-image,
.product-card-large,
.accessory-item,
.footer-box{
    min-width:0;
}

.showcase-text h2,
.application-content h2,
.accessories h2{
    font-size:clamp(2.4rem, 5vw, 4rem);
    overflow-wrap:anywhere;
}

.showcase-text p,
.product-card-large p,
.application-content p,
.footer-box p,
.footer-box a{
    overflow-wrap:break-word;
}

.showcase-image img{
    display:block;
    width:100%;
    max-width:750px;
}

.dual-products{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:clamp(1.5rem, 3vw, 2.5rem);
    margin:clamp(4rem, 9vw, 9.5rem) auto;
}

.product-card-large{
    padding:clamp(1.5rem, 4vw, 3.125rem);
}

.card-image img{
    width:100%;
    max-width:500px;
    max-height:300px;
    object-fit:contain;
}

.accessories{
    padding-block:clamp(4rem, 7vw, 6.5rem);
}

.accessories > .container,
.application-section > .container{
    width:min(1400px, calc(100% - clamp(2rem, 6vw, 8rem))) !important;
    max-width:none !important;
    margin-inline:auto !important;
}

.accessories h2{
    margin-bottom:clamp(2.5rem, 5vw, 5rem);
}

.accessories-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:1.5rem;
}

.footer-top{
    width:min(1400px, calc(100% - clamp(2rem, 6vw, 8rem)));
    max-width:none;
    padding:clamp(3.5rem, 6vw, 4.5rem) 0;
}

/* Premium motion: subtle at rest, expressive only for desktop pointer devices. */
@media (prefers-reduced-motion:no-preference){
    .hero::before{
        content:"";
        position:absolute;
        z-index:-1;
        width:34rem;
        height:34rem;
        top:-15rem;
        right:-12rem;
        border-radius:50%;
        background:radial-gradient(circle, rgba(227,30,36,.22), transparent 68%);
        animation:packerGlow 9s ease-in-out infinite alternate;
        pointer-events:none;
    }

    .showcase-image::after{
        content:"";
        position:absolute;
        z-index:-1;
        inset:15% 10%;
        background:radial-gradient(circle, rgba(227,30,36,.16), transparent 70%);
        filter:blur(12px);
        animation:packerGlow 7s ease-in-out infinite alternate;
        pointer-events:none;
    }
}

@keyframes packerGlow{
    from{
        opacity:.45;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1.1);
    }
}

@media (hover:hover) and (pointer:fine){
    .btn-red i{
        transition:transform .3s ease;
    }

    .btn-red:hover i{
        transform:translateX(.3rem);
    }
}

@media (max-width:992px){
    #content{
        background-attachment:scroll;
    }

    .hero{
        min-height:auto;
        padding-block:5.5rem 3rem;
    }

    .hero-image img{
        width:min(100%, 22rem);
    }

    .showcase-section,
    .application-section .container{
        grid-template-columns:minmax(0, 1fr);
        gap:2.5rem;
    }

    .showcase-section{
        text-align:center;
    }

    .showcase-text p{
        margin-inline:auto;
    }

    .showcase-section.reverse .showcase-text{
        order:1;
    }

    .showcase-section.reverse .showcase-image{
        order:2;
    }

    .footer-top{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:2.5rem;
    }
}

@media (max-width:767px){
    .hero-content,
    .showcase-section,
    .dual-products,
    .accessories > .container,
    .application-section > .container,
    .footer-top{
        width:calc(100% - 2.5rem) !important;
    }

    .hero h1{
        font-size:clamp(3rem, 16vw, 4.3rem);
        line-height:.95;
    }

    .showcase-section,
    .dual-products,
    .accessories-grid,
    .footer-top{
        grid-template-columns:minmax(0, 1fr);
    }

    .showcase-section{
        margin-block:4rem;
    }

    .showcase-text h2,
    .application-content h2,
    .accessories h2{
        font-size:clamp(2.25rem, 11vw, 3rem);
    }

    .product-card-large{
        border-radius:1.25rem;
    }

    .accessory-item{
        padding:1.25rem;
    }

    .accessories .btn-red{
        width:100%;
    }

    .footer-box{
        padding-right:0;
    }

    .footer-bottom{
        padding:1.5rem 1.25rem;
    }
}

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

/* =========================================
   DESKTOP FIT & FOOTER FINISHING
========================================= */

@media (min-width:993px){
    /* Keeps the complete hero composition within a typical desktop viewport
       below the fixed site header. */
    .hero{
        height:max(42rem, calc(100svh - 7rem));
        min-height:0;
        padding-block:clamp(3.25rem, 5vh, 4.5rem) 2rem;
    }

    .hero-content{
        margin-bottom:clamp(1.25rem, 2vh, 2rem);
    }

    .hero-image img{
        height:clamp(14rem, 32vh, 20rem);
        width:auto;
        object-fit:contain;
    }

    .footer-top{
        grid-template-columns:1.35fr 1fr 1fr 1fr;
        column-gap:clamp(2rem, 4vw, 3.5rem);
    }
}

.footer{
    overflow:hidden;
}

.footer-top{
    align-items:start;
}

.footer-box,
.footer-sub-box{
    min-width:0;
}

.footer-box a,
.footer-box p,
.footer-box li{
    overflow-wrap:anywhere;
}

.achilles-link img{
    display:block;
    width:min(100%, 14rem);
    height:auto;
}

.footer-bottom{
    padding-inline:clamp(1.25rem, 5vw, 5rem);
}

@media (max-width:767px){
    .footer-top{
        gap:2.5rem;
    }

    .footer-social{
        margin-top:1.5rem;
    }

    .footer-links{
        gap:.75rem 1.25rem;
        margin-bottom:1rem;
    }

    .footer-bottom p{
        max-width:20rem;
        margin-inline:auto;
        font-size:.82rem;
        line-height:1.65;
    }
}