/* =============================================================
   ILONG COMPANY LIMITED — UNIFIED STYLESHEET
   Palette: Navy #001a57 / Gold #FDB913 / Light bg #f8f9fc
   ============================================================= */

:root{
    --navy:#001a57;
    --navy-deep:#07194e;
    --navy-mid:#0c2d74;
    --gold:#FDB913;
    --gold-deep:#ffb300;
    --light:#f8f9fc;
    --text:#333333;
    --text-soft:#555555;
    --text-mute:#666666;
}

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

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    background:#ffffff;
    color:var(--text);
}

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

a{
    color:inherit;
}

/* =================== NAVBAR =================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:999;
    transition:.4s;
}

.header.sticky{
    background:var(--navy);
    padding:14px 8%;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.logo img{
    width:64px;
}

.navbar{
    display:flex;
    gap:32px;
}

.navbar a{
    color:#ffffff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    position:relative;
    transition:.4s;
    white-space:nowrap;
}

.navbar a i{
    margin-right:6px;
}

.navbar a::after{
    content:'';
    position:absolute;
    width:0;
    height:3px;
    background:var(--gold);
    left:0;
    bottom:-8px;
    transition:.4s;
}

.navbar a:hover::after,
.navbar a.active::after{
    width:100%;
}

.navbar a:hover,
.navbar a.active{
    color:var(--gold);
}

.menu-btn{
    display:none;
    color:white;
    font-size:26px;
    cursor:pointer;
}

@media(max-width:900px){

    .navbar{
        position:absolute;
        top:100%;
        left:-100%;
        flex-direction:column;
        background:var(--navy);
        width:100%;
        text-align:center;
        padding:25px;
        gap:20px;
        transition:.4s;
        box-shadow:0 15px 25px rgba(0,0,0,.2);
    }

    .navbar.active{
        left:0;
    }

    .menu-btn{
        display:block;
    }
}

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

.hero{
    height:100vh;
    background:url("images/deal.png") center/cover;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(0,26,87,.85),rgba(0,0,0,.55));
}

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

.company-card{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    background:var(--navy);
    padding:22px 45px;
    border-radius:120px;
    box-shadow:0 0 40px rgba(253,185,19,.4);
    animation:float 5s infinite ease-in-out;
}

.company-card img{
    width:100px;
    height:100px;
    border-radius:50%;
    background:white;
    padding:8px;
}

.company-card h1{
    color:var(--gold);
    font-size:2.6rem;
    line-height:1.1;
}

.company-card h2{
    color:white;
    font-size:1.7rem;
    letter-spacing:2px;
}

.tagline{
    margin-top:35px;
    font-size:1.6rem;
    color:white;
    background:var(--gold);
    display:inline-block;
    padding:10px 30px;
    color:var(--navy);
    font-weight:700;
    border-radius:4px;
}

.hero-sub{
    font-size:1.05rem;
    line-height:1.8;
    max-width:700px;
    margin:25px auto 0;
    color:rgba(255,255,255,.9);
}

.buttons{
    margin-top:40px;
}

.btn{
    text-decoration:none;
    display:inline-block;
    padding:15px 35px;
    margin:8px;
    border-radius:50px;
    font-weight:bold;
    transition:.4s;
    cursor:pointer;
    border:none;
    font-size:15px;
}

.primary{
    background:var(--gold);
    color:var(--navy);
}

.secondary{
    border:2px solid white;
    color:white;
    background:transparent;
}

.primary:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(253,185,19,.5);
}

.secondary:hover{
    background:white;
    color:var(--navy);
    transform:translateY(-6px);
}

.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:white;
    font-size:28px;
    animation:bounce 2s infinite;
    z-index:2;
    text-decoration:none;
}

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

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

@keyframes float{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-15px); }
}

@keyframes bounce{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(15px); }
}

@keyframes scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-1100px); }
}

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

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

/* =================== SECTION / TITLES =================== */

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.section-title .eyebrow,
.eyebrow{
    display:block;
    color:var(--gold-deep);
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:2.2rem;
    color:var(--navy);
}

.section-title .section-sub{
    margin-top:12px;
    color:var(--text-soft);
}

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

.stats{
    background:var(--navy);
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    padding:70px 8%;
    text-align:center;
}

.stat-box{
    color:white;
}

.stat-box .counter{
    font-size:3rem;
    color:var(--gold);
    font-weight:800;
}

.stat-box p{
    margin-top:8px;
    font-size:15px;
    opacity:.85;
}

/* =================== HOME ABOUT =================== */

.home-about{
    padding:100px 8%;
    background:var(--light);
}

.about-grid{
    display:flex;
    align-items:center;
    gap:60px;
    max-width:1200px;
    margin:0 auto;
    flex-wrap:wrap;
}

.about-img{
    flex:1;
    min-width:320px;
}

.about-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-copy{
    flex:1;
    min-width:320px;
}

.about-copy h2{
    color:var(--navy);
    font-size:2rem;
    margin-bottom:20px;
    line-height:1.3;
}

.about-copy p{
    color:var(--text-soft);
    line-height:1.9;
    margin-bottom:30px;
}

/* =================== MISSION / VISION / VALUES =================== */

.mvv{
    padding:100px 8%;
    background:white;
}

.mvv-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

.mvv-card{
    background:var(--light);
    padding:45px 35px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
}

.mvv-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.mvv-card i{
    font-size:44px;
    color:var(--gold);
    margin-bottom:20px;
}

.mvv-card h3{
    color:var(--navy);
    margin-bottom:15px;
    font-size:22px;
}

.mvv-card p{
    color:var(--text-soft);
    line-height:1.8;
}

/* =================== HOME SERVICES PREVIEW =================== */

.home-services{
    padding:100px 8%;
    background:var(--light);
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    max-width:1200px;
    margin:0 auto;
}

.service-card{
    background:white;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    text-decoration:none;
    display:block;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.4s;
}

.service-card:hover{
    background:var(--navy);
    transform:translateY(-10px);
}

.service-card i{
    font-size:42px;
    color:var(--gold);
    margin-bottom:18px;
}

.service-card h3{
    color:var(--navy);
    margin-bottom:10px;
    font-size:18px;
    transition:.4s;
}

.service-card p{
    color:var(--text-mute);
    font-size:14px;
    line-height:1.7;
    transition:.4s;
}

.service-card:hover h3,
.service-card:hover p{
    color:white;
}

/* =================== PARTNERS SLIDER =================== */

.partners{
    padding:100px 0;
    background:white;
    overflow:hidden;
}

.partners .section-title{
    padding:0 8%;
}

.slider{
    overflow:hidden;
    position:relative;
    -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
    mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}

.slide-track{
    display:flex;
    width:calc(220px * 10);
    animation:scroll 25s linear infinite;
}

.partner{
    width:220px;
    flex-shrink:0;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.partner img{
    max-width:160px;
    max-height:85px;
    transition:.4s;
    filter:grayscale(100%);
    opacity:.7;
    margin:0 auto;
}

.partner img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.1);
}

/* =================== CTA BAND =================== */

.cta{
    background:linear-gradient(135deg,var(--navy),var(--navy-deep));
    color:white;
    text-align:center;
    padding:90px 8%;
}

.cta h2{
    font-size:2.2rem;
    margin-bottom:15px;
}

.cta p{
    opacity:.85;
    margin-bottom:30px;
    font-size:1.05rem;
}

/* =================== INNER PAGE HERO =================== */

.page-hero{
    min-height:46vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    position:relative;
    overflow:hidden;
    background-size:cover;
    background-position:center;
}

.page-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(0,26,87,.9),rgba(7,25,78,.78));
}

.page-hero-content{
    position:relative;
    z-index:2;
    padding:110px 20px 20px;
}

.page-hero h1{
    font-size:2.8rem;
    letter-spacing:1px;
    margin-bottom:12px;
}

.page-hero p{
    font-size:1.05rem;
    opacity:.9;
    max-width:650px;
    margin:0 auto;
}

.breadcrumb{
    margin-top:20px;
    font-size:14px;
    opacity:.85;
}

.breadcrumb a{
    color:var(--gold);
    text-decoration:none;
}

.breadcrumb a:hover{
    text-decoration:underline;
}

@media(max-width:768px){
    .page-hero h1{
        font-size:2rem;
    }
}

/* =================== SPLIT SECTIONS (About page) =================== */

.split-section{
    padding:100px 8%;
    background:white;
}

.split-section.alt{
    background:var(--light);
}

.split-grid{
    display:flex;
    align-items:center;
    gap:60px;
    max-width:1200px;
    margin:0 auto;
    flex-wrap:wrap;
}

.split-grid.reverse{
    flex-direction:row-reverse;
}

.split-img{
    flex:1;
    min-width:320px;
}

.split-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    border-top:6px solid var(--gold);
}

.split-copy{
    flex:1;
    min-width:320px;
}

.split-copy h2{
    color:var(--navy);
    font-size:2rem;
    margin-bottom:20px;
    line-height:1.3;
}

.split-copy p{
    color:var(--text-soft);
    line-height:1.9;
    margin-bottom:16px;
}

.scope-list{
    list-style:none;
    max-width:1200px;
    margin:0 auto;
}

.scope-list li{
    display:flex;
    align-items:center;
    gap:14px;
    background:white;
    padding:18px 25px;
    border-radius:12px;
    margin-bottom:14px;
    color:var(--text);
    font-weight:500;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.scope-list li i{
    color:var(--gold);
    font-size:20px;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

.project-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 25px rgba(0,0,0,.08);
    transition:.4s;
}

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

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

.project-card-body{
    padding:25px;
}

.project-card-body h3{
    color:var(--navy);
    margin-bottom:10px;
    font-size:19px;
}

.project-card-body p{
    color:var(--text-mute);
    line-height:1.7;
    font-size:14.5px;
}

/* =================== COMPANY PROFILE / PDF PREVIEW =================== */

.profile-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

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

.profile-box p{
    font-size:15px;
    color:var(--text-soft);
    margin-bottom:22px;
    line-height:1.6;
}

.profile-btn{
    display:inline-block;
    background:var(--navy);
    color:white;
    text-decoration:none;
    padding:14px 28px;
    font-size:15px;
    font-weight:600;
    border-radius:10px;
    transition:.3s;
    cursor:pointer;
    border:none;
}

.profile-btn:hover{
    background:var(--gold);
    color:var(--navy);
    transform:translateY(-3px);
}

.pdf-preview{
    display:none;
    margin-top:22px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
    background:#eee;
}

.pdf-preview iframe{
    width:100%;
    height:520px;
    border:none;
    display:block;
}

/* =================== SERVICES PAGE =================== */

.svc-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
    max-width:1300px;
    margin:0 auto;
}

.svc-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #eef0f6;
    transition:.4s;
}

.svc-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.svc-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-bottom:4px solid var(--gold);
    transition:.5s;
}

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

.svc-body{
    padding:32px;
}

.svc-body h3{
    color:var(--navy);
    font-size:22px;
    margin-bottom:14px;
}

.svc-body > p{
    color:var(--text-mute);
    line-height:1.75;
    font-size:14.5px;
    margin-bottom:18px;
}

.svc-body ul{
    list-style:none;
    margin-bottom:0;
}

.svc-body ul li{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--text-soft);
    font-size:14px;
    margin-bottom:10px;
}

.svc-body ul li i{
    color:var(--gold);
}

/* =================== GALLERY PAGE =================== */

.gallery-section{
    padding:100px 8% 120px;
    text-align:center;
    background:var(--light);
}

.slider-container{
    width:100%;
    max-width:1300px;
    margin:0 auto;
    position:relative;
    overflow:hidden;
}

.gallery-section .slider{
    position:relative;
    height:500px;
    mask-image:none;
    -webkit-mask-image:none;
}

.gallery-section .slide{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    transition:all .7s ease;
    border-radius:20px;
    overflow:hidden;
    opacity:.5;
}

.gallery-section .slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.gallery-section .slide.active{
    width:700px;
    height:440px;
    left:50%;
    transform:translate(-50%,-50%);
    opacity:1;
    z-index:10;
    border:3px solid var(--gold);
}

.gallery-section .slide.prev{
    width:340px;
    height:340px;
    left:6%;
    opacity:.75;
    z-index:5;
}

.gallery-section .slide.next{
    width:340px;
    height:340px;
    right:6%;
    opacity:.75;
    z-index:5;
}

.gallery-section .slide.hidden{
    opacity:0;
    pointer-events:none;
}

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:var(--navy);
    color:white;
    border:none;
    width:52px;
    height:52px;
    border-radius:50%;
    font-size:26px;
    line-height:1;
    cursor:pointer;
    z-index:20;
    transition:.3s;
}

.nav-btn:hover{
    background:var(--gold);
    color:var(--navy);
    transform:translateY(-50%) scale(1.1);
}

.prev-btn{ left:0; }
.next-btn{ right:0; }

.gallery-caption{
    margin-top:40px;
}

.gallery-caption h2{
    color:var(--navy);
    margin-bottom:10px;
}

.gallery-caption p{
    color:var(--text-mute);
    font-size:16px;
    max-width:600px;
    margin:0 auto;
}

@media(max-width:900px){

    .gallery-section .slider{
        height:340px;
    }

    .gallery-section .slide.active{
        width:90%;
        height:320px;
    }

    .gallery-section .slide.prev,
    .gallery-section .slide.next{
        display:none;
    }

    .nav-btn{
        width:42px;
        height:42px;
        font-size:20px;
    }
}

/* =================== TEAM PAGE =================== */

.team-section{
    padding:100px 8% 120px;
    background:var(--light);
}

.team-intro{
    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
    color:var(--text-soft);
    line-height:1.8;
}

.org-chart{
    max-width:1100px;
    margin:0 auto;
}

.org-level{
    display:flex;
    justify-content:center;
    margin-bottom:24px;
}

.org-person{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.org-avatar{
    width:74px;
    height:74px;
    border-radius:50%;
    border:5px solid white;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    background:var(--navy);
}

.org-card{
    margin-top:-6px;
    background:white;
    border-radius:12px;
    padding:12px 22px;
    text-align:center;
    font-weight:600;
    color:var(--navy);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    border-top:4px solid var(--gold);
}

.org-level.ceo .org-card{ font-size:20px; }
.org-level.md .org-avatar{ width:64px; height:64px; background:var(--navy-deep); }
.org-level.gm .org-avatar{ width:68px; height:68px; background:var(--navy-mid); }

.org-connector{
    width:2px;
    height:30px;
    background:#c9cee0;
    margin:0 auto 24px;
}

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

.dept-group{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.small-person{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.small-avatar{
    width:56px;
    height:56px;
    border-radius:50%;
    background:var(--gold);
    color:var(--navy);
    border:4px solid white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    box-shadow:0 6px 15px rgba(0,0,0,.12);
}

.small-card{
    background:white;
    border-radius:8px;
    margin-top:-4px;
    padding:8px 14px;
    width:150px;
    text-align:center;
    font-size:12.5px;
    font-weight:600;
    color:var(--text);
    box-shadow:0 6px 15px rgba(0,0,0,.06);
}

@media(max-width:900px){
    .departments{
        flex-direction:column;
        align-items:center;
        gap:30px;
    }
}

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

.contact-section{
    padding:100px 8%;
    background:var(--navy-deep);
}

.contact-title{
    text-align:center;
    margin-bottom:60px;
    color:white;
}

.contact-title h1{
    font-size:2.6rem;
    color:var(--gold-deep);
}

.contact-title p{
    margin-top:15px;
    font-size:18px;
    opacity:.9;
    max-width:650px;
    margin-left:auto;
    margin-right:auto;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    max-width:1200px;
    margin:0 auto;
}

.contact-info{
    background:var(--navy-mid);
    padding:40px;
    border-radius:20px;
    color:white;
}

.contact-info h2{
    color:var(--gold-deep);
    margin-bottom:20px;
}

.contact-info > p{
    line-height:1.8;
    opacity:.9;
}

.info-box{
    display:flex;
    gap:20px;
    margin:30px 0;
}

.info-icon{
    width:56px;
    height:56px;
    flex-shrink:0;
    background:var(--gold);
    color:var(--navy-deep);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
}

.info-icon img{
    width:24px;
    filter:brightness(0);
}

.info-box h4{
    margin-bottom:8px;
    font-size:16px;
}

.info-box a,
.info-box span{
    color:white;
    text-decoration:none;
    transition:.3s;
    display:block;
    line-height:1.7;
    opacity:.9;
    font-size:14.5px;
}

.info-box a:hover{
    color:var(--gold-deep);
}

.contact-form{
    background:white;
    padding:40px;
    border-radius:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:18px;
    border:1px solid #e5e7ee;
    background:#f4f4f4;
    border-radius:10px;
    font-size:16px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:2px solid var(--gold-deep);
}

.contact-form button{
    width:100%;
    padding:18px;
    background:var(--gold);
    border:none;
    border-radius:10px;
    font-size:18px;
    font-weight:700;
    color:var(--navy-deep);
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:var(--navy-deep);
    color:var(--gold);
}

.form-note{
    font-size:12.5px;
    color:var(--text-mute);
    margin-top:-8px;
    margin-bottom:18px;
}

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

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

.footer{
    background:var(--navy-deep);
    color:#fff;
    padding:60px 8% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    max-width:1300px;
    margin:0 auto;
}

.footer h3{
    margin-bottom:15px;
    position:relative;
    display:inline-block;
}

.footer h3::after{
    content:"";
    position:absolute;
    width:40px;
    height:2px;
    background:var(--gold-deep);
    left:0;
    bottom:-6px;
}

.footer p{
    line-height:1.8;
    opacity:.9;
    font-size:14.5px;
}

.footer ul{
    list-style:none;
    line-height:2;
    margin-top:10px;
}

.footer ul li{
    cursor:pointer;
    transition:.3s;
}

.footer ul li:hover{
    transform:translateX(5px);
}

.footer a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-size:14.5px;
}

.footer a:hover{
    color:var(--gold-deep);
}

.footer .contact{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:12px 0;
    font-size:14px;
}

.footer .contact img{
    width:18px;
    margin-top:2px;
    filter:brightness(0) invert(1);
}

.footer .bottom{
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    align-items:center;
    max-width:1300px;
    margin-left:auto;
    margin-right:auto;
    gap:15px;
}

.follow{
    display:flex;
    align-items:center;
    gap:15px;
}

.follow span{
    font-weight:bold;
    font-size:14px;
}

.social{
    display:flex;
    gap:15px;
}

.social .icon{
    width:20px;
    cursor:pointer;
    transition:.3s;
    filter:brightness(0) invert(1);
}

.social .icon:hover{
    transform:translateY(-4px) scale(1.1);
}

.facebook:hover{ filter:brightness(0) invert(1) drop-shadow(0 0 8px #1877f2); }
.twitter:hover{ filter:brightness(0) invert(1) drop-shadow(0 0 8px #1da1f2); }
.instagram:hover{ filter:brightness(0) invert(1) drop-shadow(0 0 8px #e1306c); }
.linkedin:hover{ filter:brightness(0) invert(1) drop-shadow(0 0 8px #0a66c2); }

.copyright{
    font-size:13px;
    opacity:.8;
}

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

    .footer .bottom{
        flex-direction:column;
        text-align:center;
    }
}

/* =================== BACK TO TOP =================== */

.back-to-top{
    position:fixed;
    bottom:30px;
    right:30px;
    background:var(--gold);
    color:var(--navy);
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:20px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    z-index:998;
    opacity:0;
    pointer-events:none;
    transform:translateY(15px);
    transition:.3s;
}

.back-to-top.show{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
}

.back-to-top:hover{
    background:var(--navy);
    color:var(--gold);
}

/* =================== RESPONSIVE — GLOBAL =================== */

@media(max-width:768px){

    .company-card{
        flex-direction:column;
        border-radius:30px;
        padding:25px;
    }

    .company-card h1{
        font-size:2rem;
    }

    .tagline{
        font-size:1.2rem;
    }

    .section-title h2{
        font-size:1.7rem;
    }

    .about-copy h2,
    .split-copy h2{
        font-size:1.5rem;
    }

    section{
        padding:70px 6%;
    }
}
