/*==============================
RESET
==============================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/*==============================
TOP HEADER
==============================*/

.top-header{
    background:#000;
    padding:18px 0;
    border-bottom:1px solid #e5e5e5;
}

.top-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.logo img{
    height:65px;
}

/*==============================
SEARCH
==============================*/

.search-box{
    flex:1;
    max-width:420px;
    position:relative;
}

.search-box input{
    width:100%;
    height:48px;
    border:1px solid #d9d9d9;
    border-radius:30px;
    padding:0 55px 0 22px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.search-box input:focus{
    border-color:#FEDB00;
}

.search-box button{
    position:absolute;
    right:5px;
    top:5px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#FEDB00;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.search-box button:hover{
    background:#d1b70a;
}

/*==============================
CONTACT
==============================*/

.contact-info{
    display:flex;
    align-items:center;
    gap:25px;
}

.contact-info .item{
    display:flex;
    align-items:center;
    gap:10px;
}

.contact-info i{
    color:#FEDB00;
    font-size:22px;
}

.contact-info span{
    display:block;
    color:#888;
    font-size:12px;
}

.contact-info p{
    font-weight:600;
    font-size:14px;
}

.contact-info .header-email,
.contact-info .header-email:visited{
    display:inline-block;
    color:#fff;
    font-size:14px;
    font-weight:600;
    transition:color .25s ease, transform .25s ease;
}

.contact-info .header-email:hover,
.contact-info .header-email:focus-visible{
    color:#FEDB00;
    transform:translateX(3px);
}

.contact-info .header-phone,
.contact-info .header-phone:visited{
    display:inline-block;
    color:#fff;
    font-size:14px;
    font-weight:600;
    transition:color .25s ease, transform .25s ease;
}

.contact-info .header-phone:hover,
.contact-info .header-phone:focus-visible{
    color:#FEDB00;
    transform:translateX(3px);
}

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

.quote-btn{
    background:#fec300;
    color:#fff;
    border:0;
    padding:14px 24px;
    border-radius:30px;
    font-weight:600;
    font-size:inherit;
    cursor:pointer;
    transition:.3s;
}

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

/*==============================
NAVIGATION
==============================*/

nav{
    background:#FEDB00;
    position:sticky;
    top:0;
    z-index:999;
}

nav .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-links{
    display:flex;
}

.nav-links li{
    position:relative;
}

.nav-links a,
.products-toggle{
    display:block;
    color:#000000;
    padding:18px 22px;
    border:0;
    background:transparent;
    font:inherit;
    font-size:15px;
    transition:.3s;
}

.nav-links a:hover,
.products-toggle:hover,
.products-toggle:focus-visible{
    background:rgba(255,255,255,.12);
}

.products-toggle{
    cursor:pointer;
}

.products-toggle i{
    margin-left:5px;
    font-size:11px;
    transition:transform .25s ease;
}

.nav-products.open .products-toggle i{
    transform:rotate(180deg);
}

.products-menu{
    position:absolute;
    top:100%;
    left:0;
    z-index:20;
    width:250px;
    padding:7px 0;
    background:#fff;
    border-radius:0 0 8px 8px;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-products.open .products-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.products-menu a{
    display:flex;
    flex-direction:column;
    gap:2px;
    padding:10px 16px;
    color:#222;
    border-bottom:1px solid #fedb00;
    font-size:13px;
}

.products-menu a:hover,
.products-menu a:focus-visible{
    background:#fff8d3;
    color:#111;
}

.products-menu span{
    font-weight:700;
}

.products-menu small{
    color:#777;
    font-size:11px;
}

.products-menu .view-more-products{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    margin:7px 9px 0;
    padding:10px 12px;
    border:0;
    border-radius:5px;
    background:#000000;
    color:#fedb00;
    font-weight:700;
}

.products-menu .view-more-products:hover,
.products-menu .view-more-products:focus-visible{
    background:#fedb00;
    color:#0c0c0c;
}

.mobile-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

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

.hero{
    position:relative;
    height:850px;
    overflow:hidden;
}

.slider{
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    visibility:hidden;
    transition:1s;
}

.slide.active{
    opacity:1;
    visibility:visible;
}

.overlay{
    display:none;
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    color:#fff;
    z-index:2;
    width:85%;
}

.hero-content h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:700;
}

.hero-content p{
    font-size:20px;
    margin-bottom:35px;
}

.hero-btn{
    position:absolute;
    left:50%;
    bottom: -400px;
    transform:translateX(-50%);
    display:inline-block;
    background:#000000;
    color:#fedb00;
    padding:15px 35px;
    border-radius:40px;
    transition:.3s;
    z-index:5;
}

.hero-btn:hover{
    background:#fedb00;
    color: #000000;
}
/*==============================
SLIDER ARROWS
==============================*/

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(0, 0, 0, 0.9);
    color:#FEDB00;
    font-size:28px;
    cursor:pointer;
    transition:.3s;
    z-index:10;
}

.prev:hover,
.next:hover{
    background:#FEDB00;
    color:#080808;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

/*==============================
CLIENT LOGO SLIDER
==============================*/

.clients{
    padding:70px 0;
    background:#fff;
    overflow:hidden;
}

.clients-title{
    text-align:center;
    margin-bottom:40px;
}

.clients-title h2{
    font-size:32px;
    color:#111;
}

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

.logo-track{
    display:flex;
    width:max-content;
    animation:scrollLogos 56s linear infinite;
    align-items:center;
}

.logo-track img{
    width:160px;
    height:80px;
    object-fit:contain;
    margin:0 40px;
    transition:.3s;
}

.logo-track img:hover{
    filter:grayscale(0%);
    opacity:1;
}


@keyframes scrollLogos{

    from{
        transform:translateX(0);
    }

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

}
/*==============================
FEATURES
==============================*/

.features{
    padding:90px 0;
    background:#fff;
}

.features .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.features .card{
    background:#000;
    padding:45px 30px;
    border-radius:14px;
    text-align:center;
    cursor:pointer;

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s cubic-bezier(.2,.8,.2,1);

    box-shadow:
        0 8px 18px rgba(0,0,0,.15);
}

.features .card:hover{

    transform:translateY(-18px);

    box-shadow:
        0 18px 35px rgba(0,0,0,.22),
        0 35px 70px rgba(0,0,0,.30);

}

.features .card i{
    font-size:48px;
    color:#FEDB00;
    margin-bottom:20px;
    transition:transform .35s ease;
}

.features .card:hover i{
    transform:scale(1.15);
}

.features .card h3{
    color:#FEDB00;
    margin-bottom:15px;
    font-size:22px;
}

.features .card p{
    color:#FEDB00;
    line-height:1.7;
}

/*==============================
ABOUT US
==============================*/

.about{
    padding:100px 0;
    background:#f7f7f7;
}

.about-heading{
    max-width:700px;
    margin:0 auto 55px;
    text-align:center;
}

.section-kicker{
    margin:0 0 10px;
    color:#b99c00;
    font-size:13px;
    font-weight:800;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.about-heading h1,
.about-heading h2,
.about-services h2,
.about-services h3,
.about-results h2,
.about-results h3{
    color:#111;
    font-size:38px;
    line-height:1.2;
}

.about-heading > p:last-child{
    margin-top:16px;
    color:#666;
    line-height:1.7;
}

.about-intro{
    display:grid;
    grid-template-columns:minmax(280px, .85fr) minmax(0, 1.15fr);
    align-items:center;
    gap:70px;
    margin-bottom:85px;
}

.about-visual{
    position:relative;
    overflow:hidden;
    min-height:340px;
    padding:35px;
    border-radius:16px;
    background:#111;
    box-shadow:0 18px 40px rgba(0,0,0,.2);
}

.about-visual::before{
    content:"";
    position:absolute;
    inset:18px;
    border:1px solid rgba(254,219,0,.45);
    border-radius:9px;
}

.about-visual img{
    position:relative;
    z-index:1;
    width:100%;
    height:270px;
    object-fit:contain;
}

.about-visual-badge{
    position:absolute;
    right:18px;
    bottom:18px;
    z-index:2;
    padding:10px 14px;
    border-radius:6px;
    background:#FEDB00;
    color:#111;
    font-size:12px;
    font-weight:800;
}

.about-visual-badge i{ margin-right:5px; }

.about-copy h2,
.about-copy h3{
    margin-bottom:18px;
    color:#111;
    font-size:30px;
    line-height:1.25;
}

.about-copy > p,
.about-services > div > p{
    margin-bottom:16px;
    color:#555;
    line-height:1.8;
}

.about-brands{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:25px;
}

.about-brands span{
    padding:8px 11px;
    border:1px solid #dcdcdc;
    border-radius:5px;
    color:#222;
    font-size:12px;
    font-weight:700;
}

.about-results{
    padding:55px;
    border-radius:16px;
    background:#111;
}

.about-results-heading{
    margin-bottom:30px;
}

.about-results h2,
.about-results h3{ color:#fff; }

.about-results .section-kicker{ color:#FEDB00; }

.about-stats{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
}

.about-stats article{
    min-height:135px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:20px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:10px;
    background:rgba(255,255,255,.04);
}

.about-stats strong{
    margin-bottom:7px;
    color:#FEDB00;
    font-size:27px;
    line-height:1;
}

.about-stats span{
    color:#ddd;
    font-size:13px;
    line-height:1.45;
}

.about-services{
    display:grid;
    grid-template-columns:.78fr 1.22fr;
    gap:70px;
    align-items:start;
    padding:85px 0 50px;
}

.about-services h3{ margin-bottom:18px; }

.about-services ul{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:10px 22px;
}

.about-services li{
    position:relative;
    padding:12px 0 12px 28px;
    border-bottom:1px solid #ddd;
    color:#333;
    font-size:14px;
    font-weight:600;
}

.about-services li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#b99c00;
    font-weight:900;
}

.about-actions{
    display:flex;
    justify-content:center;
    gap:15px;
}

.about-actions a,
.about-actions button{
    border:2px solid #111;
    border-radius:30px;
    padding:14px 24px;
    background:#111;
    color:#fff;
    font:inherit;
    font-weight:700;
    cursor:pointer;
    transition:background .25s ease, color .25s ease, transform .25s ease;
}

.about-actions button{
    background:transparent;
    color:#111;
}

.about-actions a:hover,
.about-actions a:focus-visible{
    background:#FEDB00;
    border-color:#FEDB00;
    color:#111;
    transform:translateY(-3px);
}

.about-actions button:hover,
.about-actions button:focus-visible{
    background:#111;
    color:#FEDB00;
    transform:translateY(-3px);
}

/*==============================
CONTACT PAGE
==============================*/

.contact-hero{
    padding:105px 0;
    background:linear-gradient(120deg, rgba(0,0,0,.88), rgba(0,0,0,.7)), url("../images/slider/hero1.jpg") center/cover;
    color:#fff;
    text-align:center;
}

.contact-hero .section-kicker{ color:#FEDB00; }

.contact-hero h1{
    max-width:800px;
    margin:0 auto 16px;
    font-size:46px;
    line-height:1.15;
}

.contact-hero > .container > p:last-child{
    max-width:650px;
    margin:auto;
    color:#ddd;
    line-height:1.7;
}

.contact-page{
    padding:95px 0;
    background:#f7f7f7;
}

.contact-layout{
    display:grid;
    grid-template-columns:minmax(280px, .8fr) minmax(0, 1.2fr);
    gap:28px;
    align-items:stretch;
}

.contact-details,
.contact-form-card{
    padding:42px;
    border-radius:14px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.contact-details{
    background:#111;
    color:#fff;
}

.contact-details .section-kicker{ color:#FEDB00; }

.contact-details h2,
.contact-form-card h2,
.contact-map h2,
.contact-cta h2{
    margin-bottom:12px;
    font-size:30px;
    line-height:1.25;
}

.contact-details-intro{
    margin-bottom:28px;
    color:#cfcfcf;
    line-height:1.7;
}

.contact-detail{
    display:flex;
    align-items:center;
    gap:14px;
    margin:0 0 18px;
    color:#fff;
    transition:transform .2s ease, color .2s ease;
}

.contact-detail:hover,
.contact-detail:focus-visible{
    color:#FEDB00;
    transform:translateX(5px);
}

.contact-detail > i{
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(254,219,0,.15);
    color:#FEDB00;
    transition:transform .2s ease;
}

.contact-detail:hover > i{ transform:scale(1.15); }

.contact-detail span{
    display:grid;
    gap:2px;
    font-size:14px;
    font-weight:600;
}

.contact-detail small{
    color:#bdbdbd;
    font-size:11px;
    font-weight:500;
}

.contact-whatsapp{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:9px;
    margin-top:30px;
    padding:14px;
    border-radius:7px;
    background:#25D366;
    color:#fff;
    font-weight:700;
    transition:transform .2s ease, filter .2s ease;
}

.contact-whatsapp:hover,
.contact-whatsapp:focus-visible{
    color:#fff;
    filter:brightness(.92);
    transform:translateY(-3px);
}

.contact-form-card{ background:#fff; }

.contact-form-card > p:not(.section-kicker){
    margin-bottom:25px;
    color:#666;
    line-height:1.65;
}

.contact-page-form{
    display:grid;
    gap:16px;
}

.contact-form-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
}

.contact-page-form label{
    display:grid;
    gap:7px;
    color:#333;
    font-size:13px;
    font-weight:700;
}

.contact-page-form input,
.contact-page-form textarea{
    width:100%;
    padding:12px 13px;
    border:1px solid #ddd;
    border-radius:7px;
    font:inherit;
    resize:vertical;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus{
    outline:0;
    border-color:#FEDB00;
    box-shadow:0 0 0 3px rgba(254,219,0,.25);
}

.contact-page-form button{
    justify-self:start;
    border:0;
    border-radius:28px;
    padding:14px 24px;
    background:#111;
    color:#FEDB00;
    font:inherit;
    font-weight:800;
    cursor:pointer;
    transition:background .2s ease, color .2s ease, transform .2s ease;
}

.contact-page-form button:hover,
.contact-page-form button:focus-visible{
    background:#FEDB00;
    color:#111;
    transform:translateY(-3px);
}

.contact-map{
    padding:0 0 95px;
    background:#f7f7f7;
}

.contact-map-heading{
    margin-bottom:25px;
    text-align:center;
}

.contact-map iframe{
    display:block;
    width:100%;
    height:410px;
    border:0;
    border-radius:14px;
    box-shadow:0 12px 30px rgba(0,0,0,.1);
}

.contact-cta{
    padding:55px 0;
    background:#111;
    color:#fff;
}

.contact-cta > .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.contact-cta .section-kicker{ color:#FEDB00; }
.contact-cta h2{ margin:0; }

.contact-cta-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.contact-cta-actions a{
    padding:13px 20px;
    border:2px solid #FEDB00;
    border-radius:26px;
    background:#FEDB00;
    color:#111;
    font-weight:800;
    transition:transform .2s ease, background .2s ease, color .2s ease;
}

.contact-cta-actions a:last-child{
    background:transparent;
    color:#FEDB00;
}

.contact-cta-actions a:hover,
.contact-cta-actions a:focus-visible{
    background:#fff;
    border-color:#fff;
    color:#111;
    transform:translateY(-3px);
}

/*==============================
ONLINE SUPPORT
==============================*/

.online-support{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:1000;
    display:flex;
    align-items:center;
}

.support-toggle{
    display:flex;
    align-items:center;
    gap:9px;
    writing-mode:vertical-rl;
    background:#111;
    color:#fff;
    border:0;
    border-radius:10px 0 0 10px;
    padding:16px 11px;
    font-weight:600;
    letter-spacing:.04em;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.22);
}

.support-toggle i{
    color:#FEDB00;
    font-size:20px;
}

.support-toggle:hover,
.support-toggle[aria-expanded="true"]{
    background:#FEDB00;
    color:#111;
}

.support-toggle:hover i,
.support-toggle[aria-expanded="true"] i{
    color:#111;
}

.support-panel{
    width:205px;
    background:#fff;
    border-radius:10px 0 0 10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.support-panel[hidden],
.support-modal[hidden]{
    display:none;
}

.support-panel-title{
    margin:0;
    padding:16px 18px;
    color:#fff;
    background:#111;
    font-weight:600;
}

.support-action{
    width:100%;
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    border:0;
    border-bottom:1px solid #ececec;
    background:#fff;
    color:#444;
    font:inherit;
    text-align:left;
    cursor:pointer;
}

.support-action:hover{
    background:#fff9d8;
    color:#111;
}

.support-email i{ color:#fedb00; }
.support-whatsapp i{ color:#18b97a; font-size:23px; }

.support-modal{
    position:fixed;
    inset:0;
    z-index:1100;
    display:grid;
    place-items:center;
    padding:20px;
}

.support-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.support-modal-dialog{
    position:relative;
    z-index:1;
    width:min(100%, 520px);
    padding:30px;
    background:#000000;
    border-radius:10px;
    box-shadow:0 20px 60px rgba(0,0,0,.38);
}

.support-modal-dialog h2{
    margin:0 35px 8px 0;
    color:#ffffff;
    font-size:26px;
}

.support-modal-dialog > p{
    margin:0 0 22px;
    color:#ffffff;
}

.support-modal-close{
    position:absolute;
    top:14px;
    right:14px;
    width:34px;
    height:34px;
    border:0;
    border-radius:50%;
    background:#111;
    color:#fff;
    cursor:pointer;
}

.support-form{
    display:grid;
    gap:14px;
}

.support-form label{
    display:grid;
    gap:6px;
    color:#fedb00;
    font-size:14px;
    font-weight:600;
}

.support-form input,
.support-form textarea{
    width:100%;
    border:1px solid #d9d9d9;
    border-left:3px solid #fedb00;
    padding:12px;
    resize:vertical;
}

.support-form input:focus,
.support-form textarea:focus{
    outline:2px solid rgba(254,219,0,.55);
    border-color:#fedb00;
}

.support-form button{
    border:0;
    padding:14px;
    background:#fedb00;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.support-form button:hover{
    background: #fedc009c;
}

.form-status,
.search-feedback{
    min-height:1.35em;
    margin:0;
    color:#666;
    font-size:13px;
}

.support-modal .form-status{ color:#fff; }

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

.footer{
    background:#111;
    color:#fff;
    padding:40px 8% 20px;
    border-top:4px solid #FEDB00;
}

.footer-top{
    text-align:center;
    margin-bottom:35px;
}

.footer-top img{
    width:70px;
    display:block;
    margin:0 auto 10px;
}

.footer-top h2{
    color:#FEDB00;
    font-size:30px;
    margin-bottom:5px;
}

.footer-top p{
    color:#bbb;
    font-size:15px;
}

.footer-content{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:start;
    gap:120px;

    width:80%;
    max-width:1000px;
    margin:0 auto 35px;
}

.footer-links{
    justify-self:start;
}

.footer-links h3,
.footer-contact h3{
    color:#FEDB00;
    margin-bottom:18px;
}

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

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

.footer-links a{
    text-decoration:none;
    color:#bbb;
    transition:.3s;
}

.footer-links a:hover{
    color:#FEDB00;
    padding-left:8px;
}

.footer-contact{
    justify-self:end;
    text-align:left;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    color:#bbb;
    margin-bottom:14px;
}

.footer-contact .footer-contact-link{
    display:flex;
    align-items:center;
    gap:12px;
    width:max-content;
    margin-bottom:14px;
    color:#bbb;
    transition:color .25s ease, transform .25s ease;
}

.footer-contact .footer-contact-link:hover,
.footer-contact .footer-contact-link:focus-visible{
    color:#FEDB00;
    transform:translateX(5px);
}

.footer-contact .footer-whatsapp i{ color:#25D366; }

.footer-contact .footer-email{
    width:max-content;
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    padding:0;
    border:0;
    background:transparent;
    color:#bbb;
    font-family:'Poppins',sans-serif;
    font-size:inherit;
    line-height:1.5;
    text-align:left;
    cursor:pointer;
    transition:color .25s ease, transform .25s ease;
}

.footer-contact .footer-email:hover,
.footer-contact .footer-email:focus-visible{
    color:#FEDB00;
    transform:translateX(5px);
}

.footer-contact i{
    color:#FEDB00;
    width:18px;
}

.copyright{
    border-top:1px solid #333;
    padding-top:18px;
    text-align:center;
    color:#888;
    font-size:14px;
}

@media(max-width:768px){

 .online-support{
     top:auto;
     bottom:18px;
     transform:none;
 }

 .support-toggle{
     writing-mode:initial;
     border-radius:24px 0 0 24px;
     padding:12px 16px;
 }

 .support-panel{
     position:absolute;
     right:0;
     bottom:52px;
     border-radius:10px 0 0 10px;
 }

 .footer-content{
    grid-template-columns:1fr;
    width:100%;
    gap:35px;
}

.footer-links,
.footer-contact{
    justify-self:center;
    text-align:center;
}

.footer-contact p{
    justify-content:center;
}

}
/*==============================
ANIMATIONS
==============================*/

.hero-content{
    animation:fadeLeft .9s ease;
}

.machines{
    animation:fadeRight 1s ease;
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translate(-60px,-50%);
    }
    to{
        opacity:1;
        transform:translate(0,-50%);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translate(60px,0);
    }
    to{
        opacity:1;
        transform:translate(0,0);
    }
}

/*==============================
UTILITY
==============================*/

section{
    width:100%;
}

button{
    font-family:inherit;
}

input{
    font-family:inherit;
}
