/*====================================================
    MACOSAN LOGISTICS
    Premium Corporate Website
    Version 2.0
=====================================================*/


/*====================================================
GOOGLE FONT
=====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*====================================================
ROOT VARIABLES
=====================================================*/

:root{

    --primary:#071D49;
    --secondary:#0B4D9A;
    --accent:#F59E0B;

    --white:#ffffff;
    --light:#F7F9FC;
    --gray:#6B7280;
    --dark:#111827;

    --radius:22px;

    --shadow-sm:0 10px 30px rgba(0,0,0,.08);

    --shadow-md:0 20px 45px rgba(0,0,0,.12);

    --shadow-lg:0 35px 70px rgba(0,0,0,.18);

    --transition:.35s ease;

}


/*====================================================
RESET
=====================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--dark);

    overflow-x:hidden;

    line-height:1.8;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    padding:0;

    margin:0;

}

.container{

    max-width:1320px;

}


/*====================================================
TYPOGRAPHY
=====================================================*/

.section-heading{

    margin-bottom:60px;

}

.section-heading.center{

    text-align:center;

}

.section-heading span{

    display:inline-block;

    color:var(--accent);

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-heading h2{

    font-size:clamp(34px,4vw,56px);

    color:var(--primary);

    font-weight:700;

    margin-bottom:20px;

}

.section-heading p{

    color:var(--gray);

    max-width:700px;

}

.section-heading.center p{

    margin:auto;

}


/*====================================================
COMMON SECTION
=====================================================*/

section{

    padding:110px 0;

    position:relative;

}


/*====================================================
BUTTONS
=====================================================*/

.btn-primary-custom{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    background:var(--accent);

    color:white;

    border-radius:60px;

    font-weight:600;

    box-shadow:0 20px 45px rgba(245,158,11,.30);

    transition:var(--transition);

}

.btn-primary-custom:hover{

    transform:translateY(-5px);

    color:white;

    box-shadow:0 30px 60px rgba(245,158,11,.45);

}

.btn-secondary-custom{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    border-radius:60px;

    color:white;

    border:2px solid rgba(255,255,255,.25);

    backdrop-filter:blur(10px);

    transition:var(--transition);

}

.btn-secondary-custom:hover{

    background:white;

    color:var(--primary);

}


/*====================================================
NAVBAR
=====================================================*/

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    padding:22px 0;

    transition:.4s;

}

.navbar.scrolled{

    background:rgba(7,29,73,.95);

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow-sm);

}

.navbar .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    width:180px;

}

.menu{

    display:flex;

    gap:40px;

    align-items:center;

}

.menu a{

    color:white;

    font-weight:500;

    position:relative;

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;

}

.menu a:hover::after,

.menu a.active::after{

    width:100%;

}

.nav-buttons{

    display:flex;

    align-items:center;

}

.quote-btn{

    background:var(--accent);

    color:white;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

}

.quote-btn:hover{

    color:white;

    transform:translateY(-4px);

}

.mobile-menu{

    display:none;

    color:white;

    font-size:30px;

    cursor:pointer;

}

/*====================================================
HERO
=====================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:var(--primary);

}


/*====================================================
BACKGROUND IMAGE
=====================================================*/

.hero-image{

    position:absolute;

    inset:0;

    background:url("../images/hero.jpg") center center;

    background-size:cover;

    background-repeat:no-repeat;

    animation:heroZoom 25s ease-in-out infinite alternate;

    z-index:1;

}

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}


/*====================================================
OVERLAY
=====================================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        115deg,

        rgba(7,29,73,.95) 10%,

        rgba(7,29,73,.80) 45%,

        rgba(7,29,73,.45) 100%

    );

    z-index:2;

}


/*====================================================
LIGHT EFFECT
=====================================================*/

.hero-light{

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(245,158,11,.12);

    filter:blur(120px);

    right:-120px;

    top:80px;

    z-index:2;

    animation:floatLight 8s ease-in-out infinite;

}

@keyframes floatLight{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-30px);

    }

    100%{

        transform:translateY(0);

    }

}


/*====================================================
CONTENT
=====================================================*/

.hero .container{

    position:relative;

    z-index:5;

}

.hero-content{

    max-width:680px;

}


/*====================================================
BADGE
=====================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:100px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(18px);

    color:white;

    margin-bottom:30px;

    font-size:14px;

    letter-spacing:1px;

}

.hero-badge i{

    color:var(--accent);

}


/*====================================================
TITLE
=====================================================*/

.hero h1{

    font-size:clamp(48px,7vw,82px);

    line-height:1.05;

    font-weight:800;

    color:white;

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--accent);

    display:block;

}


/*====================================================
DESCRIPTION
=====================================================*/

.hero p{

    color:rgba(255,255,255,.92);

    font-size:19px;

    margin-bottom:40px;

    max-width:620px;

}


/*====================================================
BUTTONS
=====================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:40px;

    flex-wrap:wrap;

}


/*====================================================
FEATURES
=====================================================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    color:white;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:15px;

}

.hero-features i{

    color:#39d98a;

}


/*====================================================
GLASS CARD
=====================================================*/

.hero-glass{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:30px;

    padding:40px;

    box-shadow:var(--shadow-lg);

    animation:floatCard 5s ease-in-out infinite;

}

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

.glass-header{

    color:white;

    font-size:22px;

    font-weight:600;

    margin-bottom:35px;

}


/*====================================================
GLASS ITEMS
=====================================================*/

.glass-item{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:28px;

}

.glass-item:last-child{

    margin-bottom:0;

}

.glass-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:rgba(255,255,255,.10);

    display:flex;

    align-items:center;

    justify-content:center;

}

.glass-icon i{

    color:var(--accent);

    font-size:28px;

}

.glass-item h5{

    color:white;

    margin-bottom:5px;

}

.glass-item small{

    color:rgba(255,255,255,.75);

}


/*====================================================
SCROLL INDICATOR
=====================================================*/

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    z-index:10;

    text-align:center;

}

.scroll-indicator span{

    display:block;

    font-size:12px;

    letter-spacing:4px;

    margin-bottom:10px;

}

.scroll-indicator i{

    font-size:22px;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translateY(0);

    }

    40%{

        transform:translateY(-10px);

    }

    60%{

        transform:translateY(-5px);

    }

}


/*====================================================
HERO RESPONSIVE
=====================================================*/

@media(max-width:991px){

.hero{

    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.hero-features{

    justify-content:center;

}

.hero-glass{

    margin-top:60px;

}

}

@media(max-width:576px){

.hero h1{

    font-size:42px;

}

.hero p{

    font-size:16px;

}

.hero-glass{

    padding:30px;

}

.glass-item{

    gap:15px;

}

.glass-icon{

    width:55px;

    height:55px;

}

}
/*====================================================
ABOUT
=====================================================*/

.about{

    background:var(--white);

}

.about-image{

    position:relative;

    padding-right:40px;

}

.about-image img{

    border-radius:30px;

    box-shadow:var(--shadow-lg);

    object-fit:cover;

}

.experience-card{

    position:absolute;

    bottom:30px;

    right:0;

    width:180px;

    background:var(--accent);

    color:white;

    border-radius:24px;

    text-align:center;

    padding:30px 20px;

    box-shadow:var(--shadow-md);

}

.experience-card h2{

    font-size:54px;

    font-weight:800;

    margin-bottom:5px;

    color:white;

}

.experience-card p{

    color:white;

    margin:0;

    font-size:15px;

    line-height:1.4;

}

.about p{

    color:var(--gray);

    margin-bottom:25px;

}

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.about-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

}

.about-list i{

    color:#34D399;

    font-size:18px;

}


/*====================================================
SERVICES
=====================================================*/

.services{

    background:var(--light);

}

.service-card{

    position:relative;

    background:white;

    border-radius:28px;

    padding:40px;

    height:100%;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

    border:1px solid rgba(0,0,0,.04);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        var(--accent),

        #FFC857

    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-icon{

    width:90px;

    height:90px;

    border-radius:24px;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

    transition:.4s;

}

.service-card:hover .service-icon{

    background:var(--primary);

    transform:rotate(-8deg) scale(1.05);

}

.service-icon i{

    font-size:38px;

    color:var(--accent);

}

.service-card h4{

    font-size:26px;

    color:var(--primary);

    margin-bottom:15px;

}

.service-card p{

    color:var(--gray);

    margin-bottom:30px;

}

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

}

.service-card a i{

    transition:.3s;

}

.service-card:hover a i{

    transform:translateX(8px);

}


/*====================================================
SERVICE GRID EFFECT
=====================================================*/

.services .row{

    row-gap:30px;

}

.service-card:nth-child(even){

    transition-delay:.05s;

}

.service-card:nth-child(odd){

    transition-delay:.1s;

}


/*====================================================
ABOUT + SERVICES RESPONSIVE
=====================================================*/

@media(max-width:991px){

.about-image{

    padding-right:0;

    margin-bottom:60px;

}

.experience-card{

    right:20px;

}

.about-list{

    grid-template-columns:1fr;

}

}

@media(max-width:576px){

.service-card{

    padding:30px;

}

.service-icon{

    width:75px;

    height:75px;

}

.service-icon i{

    font-size:30px;

}

.experience-card{

    position:relative;

    right:auto;

    bottom:auto;

    width:100%;

    margin-top:25px;

}

}

/*====================================================
PROCESS
=====================================================*/

.process{

    background:#fff;

}

.process-timeline{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:20px;

    margin-top:70px;

}

.process-step{

    flex:1;

    position:relative;

    text-align:center;

}

.process-line{

    flex:0 0 80px;

    height:2px;

    background:#dbe4f3;

    margin-top:45px;

}

.step-circle{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

    box-shadow:var(--shadow-md);

    transition:var(--transition);

}

.process-step:hover .step-circle{

    background:var(--accent);

    transform:translateY(-8px);

}

.process-step h4{

    margin:30px 0 15px;

    color:var(--primary);

}

.process-step p{

    color:var(--gray);

    font-size:15px;

}


/*====================================================
GLOBAL NETWORK
=====================================================*/

.network{

    background:linear-gradient(

        rgba(7,29,73,.96),

        rgba(7,29,73,.96)

    );

    overflow:hidden;

}

.network-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,

    rgba(245,158,11,.10),

    transparent 35%);

}

.network .container{

    position:relative;

    z-index:2;

}

.network .section-heading h2,

.network .section-heading span{

    color:white;

}

.network p{

    color:rgba(255,255,255,.80);

    margin-bottom:35px;

}

.network-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.network-list div{

    display:flex;

    align-items:center;

    gap:10px;

    color:white;

}

.network-list i{

    color:var(--accent);

}


/*====================================================
WORLD MAP
=====================================================*/

.world-map{

    position:relative;

    text-align:center;

}

.world-map img{

    opacity:.75;

}

.pin{

    position:absolute;

    width:16px;

    height:16px;

    border-radius:50%;

    background:var(--accent);

    box-shadow:0 0 0 rgba(245,158,11,.5);

    animation:ping 2.5s infinite;

}

.pin1{

    top:35%;

    left:32%;

}

.pin2{

    top:30%;

    left:55%;

}

.pin3{

    top:46%;

    left:70%;

}

.pin4{

    top:55%;

    left:46%;

}

.pin5{

    top:28%;

    left:82%;

}

@keyframes ping{

    0%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(245,158,11,.6);

    }

    70%{

        box-shadow:0 0 0 18px rgba(245,158,11,0);

    }

    100%{

        transform:scale(1);

    }

}


/*====================================================
INDUSTRIES
=====================================================*/

.industries{

    background:#F7F9FC;

}

.industry-card{

    background:white;

    border-radius:24px;

    padding:45px 30px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.industry-card i{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:24px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#EEF4FF;

    color:var(--accent);

    font-size:38px;

    margin-bottom:25px;

}

.industry-card:hover i{

    background:var(--primary);

}

.industry-card h4{

    color:var(--primary);

}


/*====================================================
STATISTICS
=====================================================*/

.statistics{

    background:linear-gradient(

        rgba(7,29,73,.96),

        rgba(7,29,73,.96)

    ),

    url("../images/stats-bg.jpg");

    background-size:cover;

    background-position:center;

}

.stat-card{

    text-align:center;

    color:white;

    padding:20px;

}

.stat-card h2{

    display:inline-block;

    color:var(--accent);

    font-size:64px;

    font-weight:800;

}

.stat-card span{

    color:white;

    font-size:36px;

    font-weight:700;

}

.stat-card p{

    margin-top:18px;

    color:rgba(255,255,255,.85);

}


/*====================================================
RESPONSIVE
=====================================================*/

@media(max-width:991px){

.process-timeline{

    flex-direction:column;

    align-items:center;

}

.process-line{

    width:2px;

    height:60px;

    margin:0;

}

.network-list{

    grid-template-columns:1fr;

}

.world-map{

    margin-top:60px;

}

}

@media(max-width:576px){

.step-circle{

    width:70px;

    height:70px;

    font-size:22px;

}

.stat-card h2{

    font-size:44px;

}

.stat-card span{

    font-size:24px;

}

}
/*====================================================
TESTIMONIALS
=====================================================*/

.testimonials{

    background:#fff;

}

.testimonial-card{

    background:#fff;

    border-radius:28px;

    padding:40px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

    position:relative;

    overflow:hidden;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.quote{

    width:70px;

    height:70px;

    border-radius:20px;

    background:rgba(245,158,11,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.quote i{

    color:var(--accent);

    font-size:30px;

}

.testimonial-card p{

    color:var(--gray);

    margin-bottom:35px;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.client h5{

    margin-bottom:3px;

    color:var(--primary);

}

.client small{

    color:var(--gray);

}


/*====================================================
CTA
=====================================================*/

.cta{

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

    text-align:center;

    color:white;

}

.cta-content{

    max-width:760px;

    margin:auto;

}

.cta h2{

    color:white;

    font-size:clamp(38px,5vw,58px);

    margin-bottom:25px;

}

.cta p{

    color:rgba(255,255,255,.85);

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


/*====================================================
CONTACT
=====================================================*/

.contact{

    background:#F7F9FC;

}

.contact-info{

    margin-top:35px;

}

.contact-info div{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:22px;

    font-weight:500;

}

.contact-info i{

    width:55px;

    height:55px;

    border-radius:16px;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--accent);

    box-shadow:var(--shadow-sm);

}

.contact form{

    background:white;

    padding:45px;

    border-radius:28px;

    box-shadow:var(--shadow-md);

}

.contact .form-control{

    border:none;

    border-radius:18px;

    background:#F3F6FA;

    padding:18px 20px;

    margin-bottom:18px;

    box-shadow:none;

}

.contact textarea{

    resize:none;

}

.contact .form-control:focus{

    background:white;

    border:2px solid var(--accent);

}


/*====================================================
FOOTER
=====================================================*/

footer{

    background:#04152F;

    color:rgba(255,255,255,.75);

    padding:90px 0 35px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

footer p{

    color:rgba(255,255,255,.75);

}

footer h5{

    color:white;

    margin-bottom:25px;

}

footer ul li{

    margin-bottom:14px;

}

footer ul li a{

    color:rgba(255,255,255,.70);

}

footer ul li a:hover{

    color:var(--accent);

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    transition:var(--transition);

}

.social-links a:hover{

    background:var(--accent);

    transform:translateY(-5px);

}

footer hr{

    margin:60px 0 30px;

    border-color:rgba(255,255,255,.08);

}

.copyright{

    text-align:center;

    color:rgba(255,255,255,.60);

}


/*====================================================
BACK TO TOP
=====================================================*/

#backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--accent);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:var(--shadow-md);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    transform:translateY(-5px);

}


/*====================================================
RESPONSIVE
=====================================================*/

@media(max-width:991px){

.contact form{

    margin-top:50px;

}

footer{

    text-align:center;

}

.social-links{

    justify-content:center;

    margin-top:20px;

}

}

@media(max-width:576px){

.testimonial-card{

    padding:30px;

}

.contact form{

    padding:30px;

}

.cta-buttons{

    flex-direction:column;

}

.cta-buttons a{

    width:100%;

}

}
/*====================================================
ANIMATIONS
=====================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-left{

    opacity:0;

    transform:translateX(-50px);

    transition:all .8s ease;

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

.fade-right{

    opacity:0;

    transform:translateX(50px);

    transition:all .8s ease;

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

.zoom{

    opacity:0;

    transform:scale(.9);

    transition:all .7s ease;

}

.zoom.show{

    opacity:1;

    transform:scale(1);

}


/*====================================================
HOVER EFFECTS
=====================================================*/

img{

    transition:.4s;

}

img:hover{

    transform:scale(1.02);

}

button,

.btn-primary-custom,

.btn-secondary-custom{

    transition:.35s;

}

button:hover{

    cursor:pointer;

}


/*====================================================
SCROLLBAR
=====================================================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}


/*====================================================
TEXT SELECTION
=====================================================*/

::selection{

    background:var(--accent);

    color:white;

}


/*====================================================
HELPERS
=====================================================*/

.text-center{

    text-align:center;

}

.text-white{

    color:white;

}

.bg-light{

    background:var(--light);

}

.rounded{

    border-radius:var(--radius);

}

.shadow{

    box-shadow:var(--shadow-md);

}


/*====================================================
MOBILE NAVIGATION
=====================================================*/

@media(max-width:991px){

.menu{

    position:fixed;

    top:0;

    right:-100%;

    width:300px;

    height:100vh;

    background:var(--primary);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:35px;

    transition:.4s;

    z-index:9998;

}

.menu.active{

    right:0;

}

.mobile-menu{

    display:block;

    z-index:9999;

}

.nav-buttons{

    display:none;

}

.menu a{

    font-size:20px;

}

}


/*====================================================
SMALL DEVICES
=====================================================*/

@media(max-width:768px){

section{

    padding:80px 0;

}

.section-heading{

    margin-bottom:45px;

}

.section-heading h2{

    font-size:36px;

}

.hero{

    text-align:center;

}

.hero-features{

    justify-content:center;

}

.hero-glass{

    margin-top:50px;

}

.about-list{

    grid-template-columns:1fr;

}

.process-step{

    margin-bottom:35px;

}

.network-list{

    grid-template-columns:1fr;

}

.stat-card{

    margin-bottom:35px;

}

.contact-info{

    margin-bottom:40px;

}

}


/*====================================================
EXTRA SMALL
=====================================================*/

@media(max-width:576px){

.hero h1{

    font-size:38px;

}

.hero p{

    font-size:16px;

}

.btn-primary-custom,

.btn-secondary-custom{

    width:100%;

    justify-content:center;

}

.hero-buttons{

    flex-direction:column;

}

.logo img{

    width:150px;

}

.hero-glass{

    padding:25px;

}

.glass-item{

    gap:15px;

}

.glass-icon{

    width:55px;

    height:55px;

}

.glass-icon i{

    font-size:22px;

}

.service-card,

.industry-card,

.testimonial-card{

    padding:28px;

}

.contact form{

    padding:25px;

}

}


/*====================================================
PERFORMANCE
=====================================================*/

.hero-image,

.hero-overlay,

.hero-light{

    will-change:transform;

}

.service-card,

.process-step,

.industry-card,

.testimonial-card{

    will-change:transform;

}
/* =========================================
   MACOSAN CHAT WIDGET
========================================= */

.chat-widget {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9995;
}


/* =========================================
   FLOATING CHAT BUTTON
========================================= */

.chat-toggle {
    width: 60px;
    height: 60px;

    border: none;
    border-radius: 50%;

    background: var(--secondary);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;

    cursor: pointer;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);

    transition: .3s ease;
}

.chat-toggle:hover {
    transform: translateY(-4px) scale(1.05);
}


/* =========================================
   CHAT WINDOW
========================================= */

.chat-box {
    position: absolute;

    right: 0;
    bottom: 75px;

    width: 370px;
    max-width: calc(100vw - 30px);
    height: 520px;

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .25);

    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px) scale(.95);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
}

.chat-box.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0) scale(1);
}

.chat-messages {
    flex: 1;

    padding: 20px;

    overflow-y: auto;

    background: #f7f9fc;
}


/* OPEN STATE */

.chat-box.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0) scale(1);
}


/* =========================================
   CHAT HEADER
========================================= */

.chat-header {
    background: var(--primary);

    color: #fff;

    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}


.chat-avatar {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: var(--secondary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
}


.chat-header h4 {
    margin: 0;

    font-size: 15px;

    font-weight: 600;
}


.chat-header span {
    display: block;

    margin-top: 3px;

    font-size: 11px;

    opacity: .85;
}


.chat-header span i {
    font-size: 7px;

    margin-right: 4px;
}


.chat-close {
    width: 34px;
    height: 34px;

    border: none;
    background: transparent;

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    border-radius: 50%;

    transition: .2s ease;
}


.chat-close:hover {
    background: rgba(255, 255, 255, .12);
}


/* =========================================
   CHAT MESSAGES
========================================= */

.chat-messages {
    flex: 1;

    padding: 20px;

    overflow-y: auto;

    background: #f7f9fc;
}


/* BOT MESSAGE */

.chat-message {
    display: flex;

    margin-bottom: 15px;
}


.chat-message.bot {
    justify-content: flex-start;
}


.message-bubble {
    max-width: 85%;

    padding: 12px 15px;

    background: #fff;

    color: #333;

    border-radius: 5px 16px 16px 16px;

    font-size: 13px;

    line-height: 1.3;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
}


/* USER MESSAGE */

.chat-message.user {
    justify-content: flex-end;
}


.chat-message.user .message-bubble {
    background: var(--secondary);

    color: #fff;

    border-radius: 16px 5px 16px 16px;
}


/* =========================================
   QUICK OPTIONS
========================================= */

.chat-options {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 10px;
}


.chat-option {
    width: 100%;

    padding: 10px 13px;

    background: #fff;

    border: 1px solid #e2e7ee;

    border-radius: 10px;

    color: var(--primary);

    text-align: left;

    font-family: inherit;

    font-size: 12px;

    cursor: pointer;

    transition: .25s ease;
}


.chat-option:hover {
    border-color: var(--secondary);

    background: #fff8ef;

    transform: translateX(3px);
}


/* =========================================
   USER MESSAGE ANIMATION
========================================= */

.chat-message.user .message-bubble {
    animation: chatMessageIn .25s ease;
}


@keyframes chatMessageIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   CHAT INPUT
========================================= */

.chat-input-area {
    padding: 12px;

    background: #fff;

    border-top: 1px solid #eee;

    display: flex;

    align-items: center;

    gap: 8px;
}


.chat-input-area input {
    flex: 1;

    height: 42px;

    padding: 0 14px;

    border: 1px solid #ddd;

    border-radius: 22px;

    outline: none;

    font-family: inherit;

    font-size: 13px;

    transition: .2s ease;
}


.chat-input-area input:focus {
    border-color: var(--secondary);

    box-shadow: 0 0 0 3px rgba(199, 139, 67, .12);
}


.chat-input-area button {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border: none;

    border-radius: 50%;

    background: var(--secondary);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: .25s ease;
}


.chat-input-area button:hover {
    transform: scale(1.05);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .chat-widget {
        right: 18px;
        bottom: 18px;
    }


    .chat-toggle {
        width: 54px;
        height: 54px;

        font-size: 21px;
    }


    .chat-box {
        right: -3px;
        bottom: 68px;

        width: calc(100vw - 30px);

        height: min(520px, 75vh);

        border-radius: 18px;
    }


    .chat-header {
        padding: 16px;
    }


    .chat-messages {
        padding: 16px;
    }

    .hero-content h1 #typing {
        white-space: normal;
        min-height: 2.3em;
    }

}

/* =========================================
   BACK TO TOP + CHAT POSITIONING
========================================= */

#backToTop {
    bottom: 100px !important;
    right: 25px !important;
    z-index: 9990;
}

/* =========================================
   END CHAT BUTTON
========================================= */

.chat-end-area {
    background: #fff;
    padding: 0 12px 10px;
    text-align: center;
}

.chat-end-button {
    border: none;
    background: transparent;
    color: #888;

    font-family: inherit;
    font-size: 11px;

    cursor: pointer;

    padding: 4px 10px;

    transition: .2s ease;
}

.chat-end-button:hover {
    color: var(--secondary);
}
/* =========================================
   MACOSAN CHATBOT - SPACING POLISH
========================================= */

/* Chat message spacing */
.chat-message {
    margin-bottom: 8px;
}

/* Bot / user message bubble */
.message-bubble {
    line-height: 1.35;
    padding: 10px 14px;
}

/* Quick option container */
.chat-options {
    gap: 7px;
    margin-top: 6px;
}

/* Quick option buttons */
.chat-option {
    min-height: 42px;
    padding: 9px 14px;

    line-height: 1.25;

    border-radius: 12px;
}

/* Slightly tighter chat content */
.chat-messages {
    padding: 16px;
}

/* Input area */
.chat-input-area {
    padding: 10px 12px 6px;
}

/* End Chat */
.chat-end-area {
    padding: 3px 12px 9px;
}

/* =========================================
   MACOSAN CHATBOT - BUTTON INTERACTIONS
========================================= */

.chat-option {
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease;
}

/* Hover */
.chat-option:hover {
    transform: translateY(-1px);

    border-color: #0b5cad;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Mouse click */
.chat-option:active {
    transform: translateY(0);

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.06);
}

/* Keyboard accessibility */
.chat-option:focus-visible {
    outline: 2px solid #0b5cad;
    outline-offset: 2px;
}

.message-bubble {
    white-space: pre-line;
}
/* =========================================
   MACO ONLINE STATUS
========================================= */

.chat-header small {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.online-dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    min-width: 7px;

    background: #35c759;

    border-radius: 50%;

    margin: 0;

    vertical-align: middle;

    box-shadow:
        0 0 0 0 rgba(53, 199, 89, 0.5);

    animation:
        macoOnlinePulse 2s infinite;
}


@keyframes macoOnlinePulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(53, 199, 89, 0.5);

    }

    70% {

        box-shadow:
            0 0 0 5px
            rgba(53, 199, 89, 0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(53, 199, 89, 0);

    }

}

/* =========================================
   MACO RATING BUTTONS
========================================= */

.chat-options .chat-option.rating-option {
    text-align: center;
}

/* =========================================
   MACO STAR RATING
========================================= */

.maco-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;

    width: 100%;

    padding: 8px 0;
}


.maco-star {
    border: none;
    background: transparent;

    color: #f5b301;

    font-size: 30px;
    line-height: 1;

    padding: 3px;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        color 0.15s ease;
}


.maco-star:hover {
    transform: scale(1.18);
}


.maco-star:active {
    transform: scale(1.05);
}


.maco-star:disabled {
    cursor: default;
}


.maco-star:focus {
    outline: none;
}

/* =========================================
   HERO TYPING - FIXED HEIGHT
   Prevents the hero content from jumping
========================================= */

.hero-content h1 #typing {
    display: block;

    min-height: 1.15em;

    line-height: 1.15;

    white-space: nowrap;
}

/* =========================================
   CONTACT INFORMATION — PREMIUM LAYOUT
========================================= */

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;

    margin-top: 28px;
    max-width: 520px;
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}


/* -----------------------------------------
   CONTACT ICON
----------------------------------------- */

.contact-icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(10, 43, 95, 0.06);

    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.contact-item:hover .contact-icon {
    transform: translateY(-2px);

    background: rgba(10, 43, 95, 0.1);
}


/* -----------------------------------------
   CONTACT TEXT
----------------------------------------- */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;

    min-width: 0;
}


.contact-label {
    display: block;

    margin-bottom: 2px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: #7b8495;
}


.contact-details strong,
.contact-link {
    display: block;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.35;

    color: #0b2250;
}


.contact-details small {
    display: block;

    margin-top: 2px;

    font-size: 10px;

    line-height: 1.35;

    color: #7b8495;
}


/* -----------------------------------------
   LINKS
----------------------------------------- */

.contact-link {
    text-decoration: none;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


a.contact-link:hover {
    color: #f5a000;

    opacity: 1;
}


/* -----------------------------------------
   CHAT WITH MACO
----------------------------------------- */

button.contact-chat-button {
    border: 0;

    padding: 0;

    margin: 0;

    background: transparent;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    color: #0b2250;

    cursor: pointer;

    text-align: left;

    transition:
        color 0.2s ease;
}


button.contact-chat-button:hover {
    color: #f5a000;
}


/* =========================================
   CONTACT FORM ALIGNMENT
========================================= */

.contact-section {
    align-items: center;
}


/* =========================================
   MOBILE CONTACT
========================================= */

@media (max-width: 768px) {

    .contact-info {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 24px;

        max-width: 100%;
    }


    .contact-item {
        gap: 11px;
    }


    .contact-icon {
        width: 38px;
        height: 38px;

        min-width: 38px;

        font-size: 15px;
    }


    .contact-details strong,
    .contact-link,
    button.contact-chat-button {
        font-size: 13px;
    }

}

/* =========================================
   CONTACT SPACING OVERRIDE
========================================= */

.contact-info .contact-item {
    margin: 0 !important;
    padding: 0 !important;

    min-height: 0 !important;
}


.contact-info .contact-details {
    margin: 0 !important;
}


.contact-info .contact-details small {
    margin-bottom: 0 !important;
}

/* =========================================
   CONTACT INFORMATION — 4 x 1
========================================= */

.contact-info {
    display: flex;
    flex-direction: column;

    gap: 24px;

    margin-top: 28px;

    width: 100%;
    max-width: 480px;
}


/* -----------------------------------------
   CONTACT ITEM
----------------------------------------- */

.contact-info .contact-item {
    display: flex;
    align-items: center;

    gap: 14px;

    margin: 0 !important;
    padding: 0 !important;

    min-height: 0 !important;

    text-align: left;
}


/* -----------------------------------------
   ICON
----------------------------------------- */

.contact-info .contact-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(10, 43, 95, 0.06);

    font-size: 17px;

    line-height: 1;

    flex-shrink: 0;
}


/* -----------------------------------------
   TEXT
----------------------------------------- */

.contact-info .contact-details {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 2px;

    margin: 0 !important;

    text-align: left;

    min-width: 0;
}


.contact-info .contact-label {
    display: block;

    margin: 0 0 2px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: #7b8495;
}


.contact-info .contact-details strong,
.contact-info .contact-link,
.contact-info button.contact-chat-button {
    display: block;

    margin: 0;

    padding: 0;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.4;

    color: #0b2250;

    text-align: left;
}


.contact-info .contact-details small {
    display: block;

    margin: 2px 0 0 !important;

    font-size: 10px;

    line-height: 1.35;

    color: #7b8495;

    text-align: left;
}


/* -----------------------------------------
   LINKS
----------------------------------------- */

.contact-info a.contact-link {
    text-decoration: none;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


.contact-info a.contact-link:hover,
.contact-info button.contact-chat-button:hover {
    color: #f5a000;
}


/* -----------------------------------------
   CHAT BUTTON
----------------------------------------- */

.contact-info button.contact-chat-button {
    border: 0;

    background: transparent;

    font-family: inherit;

    cursor: pointer;
}


/* -----------------------------------------
   HOVER
----------------------------------------- */

.contact-info .contact-item {
    transition:
        transform 0.2s ease;
}


.contact-info .contact-item:hover {
    transform: translateX(3px);
}


.contact-info .contact-item:hover
.contact-icon {
    background: rgba(10, 43, 95, 0.10);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .contact-info {
        gap: 20px;

        margin-top: 24px;

        max-width: 100%;
    }


    .contact-info .contact-icon {
        width: 38px;
        height: 38px;

        min-width: 38px;

        font-size: 15px;
    }


    .contact-info .contact-details strong,
    .contact-info .contact-link,
    .contact-info button.contact-chat-button {
        font-size: 13px;
    }

}

/* =========================================
   CLICKABLE CONTACT LOCATION
========================================= */

.contact-location {
    display: block;

    margin: 0;

    color: #0b2250;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


.contact-location:hover {
    color: #f5a000;

    text-decoration: underline;
}

/* =========================================
   CONTACT ITEMS — PERFECT ALIGNMENT
========================================= */

.contact-info .contact-item {
    display: flex;

    align-items: center;

    gap: 14px;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;
}


/* Fixed icon column */

.contact-info .contact-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    box-sizing: border-box;
}


/* Fixed text column */

.contact-info .contact-details {
    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 2px;

    margin: 0 !important;
    padding: 0 !important;

    text-align: left;
}


/* Label */

.contact-info .contact-label {
    display: block;

    margin: 0 0 2px !important;

    padding: 0;

    line-height: 1.2;

    text-align: left;
}


/* Main contact value */

.contact-info .contact-details strong,
.contact-info .contact-location,
.contact-info .contact-link,
.contact-info .contact-chat-button {
    display: block;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 1.35;

    text-align: left;
}


/* Description */

.contact-info .contact-details small {
    display: block;

    margin: 1px 0 0 !important;
    padding: 0;

    line-height: 1.3;

    text-align: left;
}


/* Location link */

.contact-info .contact-location {
    color: #0b2250;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}


.contact-info .contact-location:hover {
    color: #f5a000;

    text-decoration: underline;
}

/* =========================================
   CONTACT ICON VISIBILITY
========================================= */

.contact-info .contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #eef2f7;

    font-size: 18px;

    line-height: 1;

    opacity: 1;

    filter: none;
}


/* Make email and chat icons stronger */

.contact-info .contact-item:nth-child(3) .contact-icon,
.contact-info .contact-item:nth-child(4) .contact-icon {
    font-size: 18px;

    background: #e8edf5;

    opacity: 1;

    filter: none;
}


/* Slightly stronger hover */

.contact-info .contact-item:hover .contact-icon {
    background: #e1e8f2;

    transform: translateY(-1px);
}

/* =========================================
   CUSTOM CONTACT ICONS
========================================= */


/* EMAIL */

.contact-info .email-icon {
    position: relative;

    background: #eef2f7;
}


.contact-info .email-icon::before {
    content: "";

    width: 19px;
    height: 14px;

    border: 1.8px solid #0b2250;

    border-radius: 3px;

    box-sizing: border-box;

    position: absolute;
}


.contact-info .email-icon::after {
    content: "";

    width: 10px;
    height: 10px;

    border-left: 1.8px solid #0b2250;
    border-bottom: 1.8px solid #0b2250;

    transform:
        rotate(-45deg)
        translate(1px, -1px);

    position: absolute;

    top: 11px;
}


/* CHAT */

.contact-info .chat-icon {
    position: relative;

    background: #eef2f7;
}


.contact-info .chat-icon::before {
    content: "";

    width: 19px;
    height: 14px;

    border: 1.8px solid #0b2250;

    border-radius: 8px;

    position: absolute;

    top: 11px;
    left: 11px;

    box-sizing: border-box;
}


.contact-info .chat-icon::after {
    content: "";

    width: 6px;
    height: 6px;

    border-left: 1.8px solid #0b2250;
    border-bottom: 1.8px solid #0b2250;

    background: #eef2f7;

    transform: rotate(-25deg);

    position: absolute;

    bottom: 10px;
    right: 11px;
}

/* =========================================
   MACOSAN CONTACT ICON SET
========================================= */

.contact-info .contact-icon {
    position: relative;

    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #eef2f7;

    flex-shrink: 0;
}


/* =========================================
   LOCATION
========================================= */

.contact-info .location-icon::before {
    content: "";

    position: absolute;

    width: 14px;
    height: 14px;

    border: 2px solid #0b2250;

    border-radius: 50% 50% 50% 0;

    transform: rotate(-45deg);

    top: 11px;
}


.contact-info .location-icon::after {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #0b2250;

    top: 16px;
}


/* =========================================
   PHONE
========================================= */

.contact-info .phone-icon::before {
    content: "☎";

    position: absolute;

    font-size: 21px;

    font-weight: 500;

    color: #0b2250;

    line-height: 1;

    transform: rotate(-10deg);
}


/* =========================================
   EMAIL
========================================= */

.contact-info .email-icon::before {
    content: "";

    position: absolute;

    width: 19px;
    height: 14px;

    border: 1.8px solid #0b2250;

    border-radius: 3px;

    box-sizing: border-box;
}


.contact-info .email-icon::after {
    content: "";

    position: absolute;

    width: 10px;
    height: 10px;

    border-left: 1.8px solid #0b2250;
    border-bottom: 1.8px solid #0b2250;

    transform:
        rotate(-45deg);

    top: 11px;
}


/* =========================================
   CHAT
========================================= */

.contact-info .chat-icon::before {
    content: "";

    position: absolute;

    width: 19px;
    height: 14px;

    border: 1.8px solid #0b2250;

    border-radius: 8px;

    top: 11px;
    left: 11px;

    box-sizing: border-box;
}


.contact-info .chat-icon::after {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    border-left: 1.8px solid #0b2250;
    border-bottom: 1.8px solid #0b2250;

    background: #eef2f7;

    transform: rotate(-25deg);

    bottom: 10px;
    right: 11px;
}


/* =========================================
   HOVER
========================================= */

.contact-info .contact-item:hover .contact-icon {
    background: #e3e9f2;

    transform: translateY(-1px);
}

/* =========================================
   PROCESS VISUAL
========================================= */

.process-visual {
    width: 100%;

    max-width: 1200px;

    margin: 45px auto 55px;

    overflow: hidden;

    border-radius: 24px;

    background: #071d45;

    box-shadow:
        0 18px 45px rgba(7, 29, 69, 0.14);
}


.process-visual img {
    display: block;

    width: 100%;

    height: auto;

    aspect-ratio: 16 / 7;

    object-fit: cover;
}


/* =========================================
   PROCESS VISUAL — MOBILE
========================================= */

@media (max-width: 768px) {

    .process-visual {
        margin: 30px auto 40px;

        border-radius: 18px;
    }


    .process-visual img {
        aspect-ratio: 16 / 9;
    }

}

/* =========================================
   PROCESS SECTION — IMAGE BACKGROUND
========================================= */

.process-section {
    position: relative;

    background-image:
        linear-gradient(
            rgba(7, 29, 69, 0.82),
            rgba(7, 29, 69, 0.82)
        ),
        url("images/logistics-process.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    color: #ffffff;

    overflow: hidden;
}


/* Keep content above background */

.process-section .container {
    position: relative;

    z-index: 2;
}


/* Section heading */

.process-section .section-header h2 {
    color: #ffffff;
}


.process-section .section-header p {
    color: rgba(255, 255, 255, 0.82);
}


/* Eyebrow */

.process-section .section-eyebrow {
    color: #f5a000;
}


/* =========================================
   PROCESS TIMELINE
========================================= */

.process-section .process-timeline {
    position: relative;

    z-index: 2;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .process-section {

        background-position:
            center center;

        background-attachment: scroll;

    }

}

/* =========================================
   PROCESS VISUAL
========================================= */

.process-visual {
    width: 100%;
    max-width: 1200px;

    margin: 45px auto 55px;

    overflow: hidden;

    border-radius: 24px;

    background: #071d45;

    box-shadow:
        0 18px 45px rgba(7, 29, 69, 0.14);
}


.process-visual img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 7;

    object-fit: cover;
}


/* =========================================
   PROCESS VISUAL — MOBILE
========================================= */

@media (max-width: 768px) {

    .process-visual {
        margin: 30px auto 40px;

        border-radius: 18px;
    }


    .process-visual img {
        aspect-ratio: 16 / 9;
    }

}

/* =========================================
   FORM SUCCESS MODAL
========================================= */

.form-success-modal {
    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    z-index: 10000;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


.form-success-modal.active {
    opacity: 1;

    visibility: visible;
}


/* -----------------------------------------
   OVERLAY
----------------------------------------- */

.form-success-overlay {
    position: absolute;

    inset: 0;

    background: rgba(4, 21, 47, .72);

    backdrop-filter: blur(8px);
}


/* -----------------------------------------
   MODAL BOX
----------------------------------------- */

.form-success-box {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 500px;

    padding: 45px 40px;

    background: #ffffff;

    border-radius: 28px;

    text-align: center;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .25);

    transform:
        translateY(25px)
        scale(.96);

    transition:
        transform .35s ease;
}


.form-success-modal.active
.form-success-box {

    transform:
        translateY(0)
        scale(1);
}


/* -----------------------------------------
   SUCCESS ICON
----------------------------------------- */

.form-success-icon {

    width: 72px;

    height: 72px;

    margin: 0 auto 22px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(52, 211, 153, .12);

    color: #22c55e;

    font-size: 30px;

}


/* -----------------------------------------
   TITLE
----------------------------------------- */

.form-success-box h3 {

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 30px;

    font-weight: 700;

}


/* -----------------------------------------
   MESSAGE
----------------------------------------- */

.form-success-box p {

    margin: 0 auto 30px;

    max-width: 390px;

    color: var(--gray);

    font-size: 15px;

    line-height: 1.7;

}


/* -----------------------------------------
   CLOSE BUTTON
----------------------------------------- */

.form-success-close {

    position: absolute;

    top: 15px;

    right: 18px;

    width: 38px;

    height: 38px;

    border: none;

    background: transparent;

    color: #7b8495;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    border-radius: 50%;

    transition:
        background .2s ease,
        color .2s ease;
}


.form-success-close:hover {

    background: #f3f6fa;

    color: var(--primary);

}


/* -----------------------------------------
   BUTTON
----------------------------------------- */

.form-success-button {

    min-width: 190px;

    border: none;

    cursor: pointer;

}


/* -----------------------------------------
   MOBILE
----------------------------------------- */

@media (max-width: 576px) {

    .form-success-box {

        padding: 40px 25px;

        border-radius: 22px;

    }


    .form-success-box h3 {

        font-size: 26px;

    }


    .form-success-box p {

        font-size: 14px;

    }

}

/* =========================================
   FORM SUCCESS MODAL
========================================= */

.form-success-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 99999;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* =========================================
   ACTIVE STATE
========================================= */

.form-success-modal.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   DARK BACKGROUND
========================================= */

.form-success-overlay {
    position: absolute;
    inset: 0;

    background: rgba(4, 21, 47, 0.72);

    backdrop-filter: blur(7px);
}


/* =========================================
   SUCCESS BOX
========================================= */

.form-success-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 500px;

    padding: 45px 40px;

    background: #ffffff;

    border-radius: 24px;

    text-align: center;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);

    transform:
        translateY(25px)
        scale(0.96);

    transition:
        transform 0.35s ease;
}


/* =========================================
   BOX ANIMATION
========================================= */

.form-success-modal.active
.form-success-box {

    transform:
        translateY(0)
        scale(1);

}


/* =========================================
   SUCCESS ICON
========================================= */

.form-success-icon {

    width: 72px;
    height: 72px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(34, 197, 94, 0.12);

    color: #22c55e;

    font-size: 30px;

}


/* =========================================
   TITLE
========================================= */

.form-success-box h3 {

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 30px;

    font-weight: 700;

}


/* =========================================
   MESSAGE
========================================= */

.form-success-box p {

    max-width: 390px;

    margin: 0 auto 30px;

    color: var(--gray);

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================
   CLOSE BUTTON
========================================= */

.form-success-close {

    position: absolute;

    top: 15px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: none;

    background: transparent;

    color: #7b8495;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    border-radius: 50%;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.form-success-close:hover {

    background: #f3f6fa;

    color: var(--primary);

}


/* =========================================
   BACK TO SITE BUTTON
========================================= */

.form-success-button {

    min-width: 190px;

    border: none;

    cursor: pointer;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .form-success-box {

        padding: 40px 25px;

        border-radius: 20px;

    }


    .form-success-box h3 {

        font-size: 26px;

    }


    .form-success-box p {

        font-size: 14px;

    }

}

/*====================================================
END
=====================================================*/