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

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

body{
    background:#f4f8fc;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding-left:20px;
    padding-right:20px;
}

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

.main-header{
    width:100%;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0px 4px 25px rgba(0,0,0,0.06);
}

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

.top-header{
    width:100%;
    padding-top:16px;
    padding-bottom:16px;
    background:#ffffff;
}

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

/* =========================
   LOGO
========================= */

.logo-area img{
    height:68px;
    width:auto;
    object-fit:contain;
}

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

.search-wrapper{
    flex:1;
    display:flex;
    justify-content:center;
}

.search-box{
    width:100%;
    max-width:600px;
    position:relative;
}

.search-box input{
    width:100%;
    height:54px;
    border:none;
    outline:none;
    padding-left:24px;
    padding-right:65px;
    border-radius:50px;
    background:#f1f5fa;
    font-size:16px;
    color:#1b1b1b;
    border:2px solid transparent;
    transition:0.3s;
}

.search-box input:focus{
    border-color:#ff6b00;
    background:#ffffff;
    box-shadow:0px 5px 20px rgba(255,107,0,0.12);
}

.search-box button{
    position:absolute;
    right:7px;
    top:7px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#ff6b00,#ff8c32);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

.search-box button:hover{
    transform:scale(1.08);
}

/* =========================
   USER ACTIONS
========================= */

.user-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.login-btn{
    padding:13px 22px;
    border-radius:50px;
    background:#edf3fa;
    color:#083b6f;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
    font-size:15px;
}

.login-btn:hover{
    background:#083b6f;
    color:#fff;
    transform:translateY(-2px);
}

.signup-btn{
    padding:13px 26px;
    border-radius:50px;
    background:linear-gradient(135deg,#ff6b00,#ff9147);
    color:#fff;
    font-weight:700;
    transition:0.3s;
    font-size:15px;
    box-shadow:0px 8px 20px rgba(255,107,0,0.25);
}

.signup-btn:hover{
    transform:translateY(-3px);
    box-shadow:0px 12px 25px rgba(255,107,0,0.35);
}

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

.navbar-area{
    width:100%;
    background:#083b6f;
    border-top:1px solid rgba(255,255,255,0.08);
}

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
}

.nav-links li a{
    display:inline-block;
    color:#ffffff;
    padding-top:12px;      /* decreased */
    padding-bottom:12px;   /* decreased */
    padding-left:20px;
    padding-right:20px;
    font-size:15px;        /* slightly smaller */
    font-weight:600;
    position:relative;
    transition:0.3s;
    border-radius:10px;
}

.nav-links li a::after{
    content:'';
    position:absolute;
    left:20px;
    bottom:6px;            /* adjusted */
    width:0%;
    height:3px;
    background:#ff6b00;
    border-radius:20px;
    transition:0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active-link::after{
    width:55%;
}

.nav-links li a:hover{
    color:#ffb06d;
}
/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-btn{
    display:none;
    width:45px;
    height:45px;
    border:none;
    background:#083b6f;
    color:#fff;
    border-radius:12px;
    font-size:24px;
    cursor:pointer;
}

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

@media(max-width:991px){

    .header-flex{
        flex-wrap:wrap;
        gap:18px;
    }

    .logo-area{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .search-wrapper{
        width:100%;
        order:3;
    }

    .user-actions{
        margin-left:auto;
    }

}

@media(max-width:768px){

    .top-header{
        padding-top:14px;
        padding-bottom:14px;
    }

    .logo-area img{
        height:58px;
    }

    .search-box input{
        height:50px;
        font-size:15px;
    }

    .login-btn,
    .signup-btn{
        display:none;
    }

    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .navbar-area{
        display:none;
        width:100%;
    }

    .navbar-area.active{
        display:block;
        animation:slideDown 0.3s ease;
    }

    .nav-links{
        flex-direction:column;
        align-items:flex-start;
        padding-top:12px;
        padding-bottom:12px;
    }

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

    .nav-links li a{
        width:100%;
        padding-top:16px;
        padding-bottom:16px;
        border-radius:12px;
    }

    .nav-links li a::after{
        display:none;
    }

}

@keyframes slideDown{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0px);
    }

}

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

.hero-section{
    width:100%;
    height:550px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    background:#000;
}

/* =========================
   BG IMAGE
========================= */

.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('images/hero/herobg.png');
    background-size:cover;
    background-position:center;
    animation:heroZoom 12s ease-in-out infinite alternate;
    z-index:1;
}

/* =========================
   OVERLAY
========================= */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        rgba(4,26,52,0.92) 0%,
        rgba(4,26,52,0.74) 40%,
        rgba(4,26,52,0.28) 100%
    );
    z-index:2;
}

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

.hero-content{
    position:relative;
    z-index:5;
    max-width:620px;
    color:#fff;
    padding-top:10px;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,0.10);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,0.12);
    color:#ffb16f;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
    letter-spacing:0.5px;
}

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

.hero-content h1 span{
    color:#ff7a1a;
}

.hero-content p{
    font-size:17px;
    line-height:30px;
    color:#e4e4e4;
    margin-bottom:34px;
    max-width:560px;
}

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

.hero-buttons{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.hero-btn-primary{
    padding:15px 32px;
    border-radius:60px;
    background:linear-gradient(135deg,#ff6b00,#ff9147);
    color:#fff;
    font-size:15px;
    font-weight:700;
    transition:0.3s;
    box-shadow:0px 10px 28px rgba(255,107,0,0.28);
}

.hero-btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0px 15px 32px rgba(255,107,0,0.42);
}

.hero-btn-secondary{
    padding:15px 32px;
    border-radius:60px;
    border:2px solid rgba(255,255,255,0.16);
    color:#fff;
    font-size:15px;
    font-weight:700;
    backdrop-filter:blur(6px);
    transition:0.3s;
}

.hero-btn-secondary:hover{
    background:#ffffff;
    color:#083b6f;
}

/* =========================
   ZOOM EFFECT
========================= */

@keyframes heroZoom{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.10);
    }

}

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

@media(max-width:991px){

    .hero-section{
        height:500px;
    }

    .hero-content{
        max-width:540px;
    }

    .hero-content h1{
        font-size:46px;
        line-height:58px;
    }

    .hero-content p{
        font-size:16px;
        line-height:28px;
    }

}

@media(max-width:768px){

    .hero-section{
        height:520px;
    }

    .hero-overlay{
        background:linear-gradient(
            180deg,
            rgba(4,26,52,0.92) 0%,
            rgba(4,26,52,0.82) 100%
        );
    }

    .hero-content{
        text-align:center;
        margin:auto;
        max-width:100%;
    }

    .hero-tag{
        font-size:13px;
        padding:9px 16px;
        margin-bottom:18px;
    }

    .hero-content h1{
        font-size:34px;
        line-height:46px;
        margin-bottom:18px;
    }

    .hero-content p{
        font-size:14px;
        line-height:26px;
        margin-bottom:28px;
    }

    .hero-buttons{
        justify-content:center;
        gap:12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
        text-align:center;
        padding-top:14px;
        padding-bottom:14px;
    }

}

/* =========================
   CTA SECTION
========================= */

.quote-cta-section{
    width:100%;
    padding-top:80px;
    padding-bottom:80px;
    background:#f4f8fc;
}

/* =========================
   CTA BOX
========================= */

.quote-cta-box{
    width:100%;
    border-radius:40px;
    padding-top:55px;
    padding-bottom:55px;
    padding-left:60px;
    padding-right:60px;
    position:relative;
    overflow:hidden;

    background:linear-gradient(
        135deg,
        #083b6f 0%,
        #0e4f90 100%
    );

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

    box-shadow:0px 20px 60px rgba(8,59,111,0.18);
}

/* =========================
   ROUND CIRCLES
========================= */

.quote-cta-box::before{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.08);
    top:-120px;
    right:-80px;
}

.quote-cta-box::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.06);
    bottom:-70px;
    left:-40px;
}

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

.quote-cta-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.quote-mini-title{
    display:inline-block;
    background:rgba(255,255,255,0.10);
    color:#ffb16f;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.quote-cta-content h2{
    color:#ffffff;
    font-size:46px;
    line-height:58px;
    font-weight:800;
    margin-bottom:20px;
}

.quote-cta-content p{
    color:#dbe8f7;
    font-size:17px;
    line-height:31px;
    max-width:620px;
}

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

.quote-cta-btn-area{
    position:relative;
    z-index:2;
}

.quote-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding-top:18px;
    padding-bottom:18px;
    padding-left:34px;
    padding-right:34px;

    background:linear-gradient(
        135deg,
        #ff6b00,
        #ff9147
    );

    color:#fff;
    border-radius:60px;

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

    transition:0.3s;

    box-shadow:0px 12px 30px rgba(255,107,0,0.30);
}

.quote-cta-btn i{
    transition:0.3s;
}

.quote-cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0px 18px 35px rgba(255,107,0,0.40);
}

.quote-cta-btn:hover i{
    transform:translateX(5px);
}

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

@media(max-width:991px){

    .quote-cta-box{
        flex-direction:column;
        align-items:flex-start;
        padding-left:40px;
        padding-right:40px;
    }

    .quote-cta-content h2{
        font-size:38px;
        line-height:50px;
    }

}

@media(max-width:768px){

    .quote-cta-section{
        padding-top:60px;
        padding-bottom:60px;
    }

    .quote-cta-box{
        border-radius:28px;
        padding-top:40px;
        padding-bottom:40px;
        padding-left:24px;
        padding-right:24px;
        gap:30px;
    }

    .quote-cta-content{
        text-align:center;
    }

    .quote-cta-content h2{
        font-size:30px;
        line-height:42px;
    }

    .quote-cta-content p{
        font-size:15px;
        line-height:28px;
    }

    .quote-cta-btn-area{
        width:100%;
    }

    .quote-cta-btn{
        width:100%;
        justify-content:center;
        padding-top:16px;
        padding-bottom:16px;
    }

}

/* =========================
   CARS SECTION
========================= */

.cars-section{
    width:100%;
    padding-top:80px;
    padding-bottom:80px;
    background:#f5f8fc;
}

/* =========================
   FILTER BAR
========================= */

.cars-filter-bar{
    background:#ffffff;
    border-radius:24px;
    padding:22px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:40px;
    border:1px solid #edf2f7;
    box-shadow:0px 8px 25px rgba(0,0,0,0.04);
}

.filter-left{
    flex:1;
}

.filter-title{
    font-size:24px;
    font-weight:800;
    color:#083b6f;
    margin-bottom:14px;
}

.filter-tabs{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
}

.filter-tab{
    border:none;
    background:none;
    color:#556070;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    padding-bottom:8px;
    position:relative;
    transition:0.3s;
}

.filter-tab::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:3px;
    background:#ff6b00;
    border-radius:20px;
    transition:0.3s;
}

.filter-tab.active,
.filter-tab:hover{
    color:#083b6f;
}

.filter-tab.active::after,
.filter-tab:hover::after{
    width:100%;
}

.filter-right{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.filter-select-box{
    width:220px;
    height:52px;
    border-radius:14px;
    background:#f8fbff;
    border:1px solid #dfe7f0;
    display:flex;
    align-items:center;
    padding-left:16px;
    padding-right:16px;
}

.filter-select-box i{
    color:#ff6b00;
    font-size:16px;
    margin-right:12px;
}

.filter-select-box select{
    width:100%;
    border:none;
    background:none;
    outline:none;
    font-size:14px;
    color:#394657;
}

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

.cars-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

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

.car-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    transition:0.35s;
    border:1px solid #edf2f7;
    box-shadow:0px 10px 30px rgba(0,0,0,0.04);
}

.car-card:hover{
    transform:translateY(-8px);
    box-shadow:0px 18px 45px rgba(0,0,0,0.10);
}

/* BADGE */

.car-badge{
    position:absolute;
    top:18px;
    left:18px;
    z-index:5;
    background:#083b6f;
    color:#fff;
    font-size:12px;
    font-weight:700;
    padding:8px 14px;
    border-radius:50px;
}

/* =========================
   IMAGE AREA
========================= */

.car-img-box{
    height:240px;
    background:linear-gradient(
        180deg,
        #f8fbff 0%,
        #eef4f9 100%
    );

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

    padding:20px;
    overflow:hidden;
}

.car-img-box img{
    width:100%;
    max-width:300px;
    height:auto;
    object-fit:contain;
    transition:0.4s ease;
    filter:drop-shadow(0px 10px 18px rgba(0,0,0,0.12));
}

.car-card:hover .car-img-box img{
    transform:scale(1.08);
}

/* =========================
   INFO
========================= */

.car-info{
    padding:24px;
}

.car-company{
    font-size:12px;
    font-weight:700;
    color:#ff6b00;
    letter-spacing:1px;
    margin-bottom:10px;
}

.car-info h3{
    font-size:24px;
    line-height:34px;
    color:#0c1e35;
    font-weight:800;
    margin-bottom:18px;
}

.car-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.price-label{
    font-size:13px;
    color:#8b97a7;
    margin-bottom:4px;
}

.car-price{
    font-size:20px;
    font-weight:800;
    color:#083b6f;
}

.car-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#f2f6fb;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#083b6f;
    font-size:20px;
    transition:0.3s;
}

.car-card:hover .car-btn{
    background:#ff6b00;
    color:#fff;
    transform:rotate(-45deg);
}

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

@media(max-width:991px){

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

}

@media(max-width:768px){

    .cars-section{
        padding-top:60px;
        padding-bottom:60px;
    }

    .cars-filter-bar{
        padding:20px;
    }

    .filter-right{
        width:100%;
    }

    .filter-select-box{
        width:100%;
    }

    .cars-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .car-img-box{
        height:220px;
    }

    .car-info h3{
        font-size:22px;
        line-height:32px;
    }

    .car-price{
        font-size:18px;
    }

}

/* =========================
   SERVICE AREAS SECTION
========================= */

.service-areas-section{
    width:100%;
    padding-top:80px;
    padding-bottom:80px;
    background:#ffffff;
}

/* =========================
   SECTION HEADING
========================= */

.section-heading{
    text-align:center;
    max-width:760px;
    margin:auto;
    margin-bottom:55px;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#edf5ff;
    color:#083b6f;

    padding-top:12px;
    padding-bottom:12px;
    padding-left:20px;
    padding-right:20px;

    border-radius:50px;

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

    margin-bottom:20px;
}

.section-tag i{
    color:#ff6b00;
}

.section-heading h2{
    font-size:48px;
    line-height:62px;
    color:#0c1e35;
    font-weight:800;
    margin-bottom:18px;
}

.section-heading p{
    font-size:17px;
    line-height:31px;
    color:#6b7685;
}

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

.areas-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

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

.area-card{
    background:#f8fbff;
    border:1px solid #edf2f7;
    border-radius:24px;

    padding-top:34px;
    padding-bottom:34px;
    padding-left:24px;
    padding-right:24px;

    text-align:center;

    transition:0.35s;
    position:relative;
    overflow:hidden;
}

.area-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(8,59,111,0.03);
    top:-50px;
    right:-40px;
}

.area-card:hover{
    transform:translateY(-8px);
    background:#ffffff;
    box-shadow:0px 15px 35px rgba(0,0,0,0.08);
}

/* =========================
   ICON
========================= */

.area-icon{
    width:72px;
    height:72px;
    margin:auto;
    margin-bottom:22px;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        #083b6f,
        #0d5aa6
    );

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

    color:#ffffff;
    font-size:30px;

    box-shadow:0px 12px 25px rgba(8,59,111,0.18);
}

.area-card:hover .area-icon{
    background:linear-gradient(
        135deg,
        #ff6b00,
        #ff9147
    );
}

/* =========================
   TEXT
========================= */

.area-card h3{
    font-size:22px;
    color:#0c1e35;
    font-weight:800;
    margin-bottom:14px;
}

.area-card p{
    font-size:15px;
    line-height:28px;
    color:#6c7786;
}

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

@media(max-width:1200px){

    .areas-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .service-areas-section{
        padding-top:60px;
        padding-bottom:60px;
    }

    .section-heading{
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:34px;
        line-height:46px;
    }

    .section-heading p{
        font-size:15px;
        line-height:28px;
    }

    .areas-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .area-card{
        padding-top:28px;
        padding-bottom:28px;
    }

    .area-card h3{
        font-size:20px;
    }

}

/* =========================
   BRANDS MARQUEE SECTION
========================= */

.brands-marquee-section{
    width:100%;
    padding-top:80px;
    padding-bottom:80px;
    background:#f5f8fc;
    overflow:hidden;
}

/* =========================
   HEADING
========================= */

.brands-heading{
    text-align:center;
    margin-bottom:45px;
}

.brands-heading span{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#edf5ff;
    color:#083b6f;

    padding-top:12px;
    padding-bottom:12px;
    padding-left:20px;
    padding-right:20px;

    border-radius:50px;

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

    margin-bottom:20px;
}

.brands-heading span i{
    color:#ff6b00;
}

.brands-heading h2{
    font-size:46px;
    line-height:60px;
    color:#0c1e35;
    font-weight:800;
}

/* =========================
   MARQUEE
========================= */

.brands-marquee{
    width:100%;
    overflow:hidden;
    position:relative;
}

.brands-track{
    display:flex;
    align-items:center;
    gap:24px;
    width:max-content;

    animation:brandsScroll 28s linear infinite;
}

/* PAUSE ON HOVER */

.brands-marquee:hover .brands-track{
    animation-play-state:paused;
}

/* =========================
   BRAND CARD
========================= */

.brand-card{
    width:190px;
    height:120px;

    background:#ffffff;

    border-radius:26px;

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

    border:1px solid #edf2f7;

    box-shadow:0px 10px 25px rgba(0,0,0,0.04);

    transition:0.35s;
}

.brand-card:hover{
    transform:translateY(-8px);
    box-shadow:0px 18px 35px rgba(0,0,0,0.10);
}

.brand-card img{
    width:120px;
    height:auto;
    object-fit:contain;

    transition:0.35s;
}

.brand-card:hover img{
    transform:scale(1.08);
}

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

@keyframes brandsScroll{

    0%{
        transform:translateX(0);
    }

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

}

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

@media(max-width:768px){

    .brands-marquee-section{
        padding-top:60px;
        padding-bottom:60px;
    }

    .brands-heading{
        margin-bottom:35px;
    }

    .brands-heading h2{
        font-size:32px;
        line-height:44px;
    }

    .brand-card{
        width:150px;
        height:100px;
        border-radius:22px;
    }

    .brand-card img{
        width:95px;
    }

}

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

.main-footer{
    width:100%;
    background:#071f39;
    color:#ffffff;
    overflow:hidden;
}

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

.footer-top{
    padding-top:80px;
    padding-bottom:60px;
}

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

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:45px;
}

/* =========================
   LOGO
========================= */

.footer-logo{
    width:190px;
    margin-bottom:24px;
    border-radius:12px;
}

.footer-about p{
    color:#b7c5d6;
    font-size:15px;
    line-height:30px;
    margin-bottom:28px;
    max-width:420px;
}

/* =========================
   SOCIAL
========================= */

.footer-socials{
    display:flex;
    align-items:center;
    gap:14px;
}

.footer-socials a{
    width:46px;
    height:46px;
    border-radius:14px;
    background:rgba(255,255,255,0.08);

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

    color:#ffffff;
    font-size:18px;

    transition:0.3s;
}

.footer-socials a:hover{
    background:#ff6b00;
    transform:translateY(-5px);
}

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

.footer-column h3{
    font-size:24px;
    font-weight:800;
    margin-bottom:28px;
    position:relative;
}

.footer-column h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:55px;
    height:3px;
    background:#ff6b00;
    border-radius:20px;
}

/* =========================
   LINKS
========================= */

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

.footer-column ul li{
    margin-bottom:18px;
}

.footer-column ul li a{
    display:flex;
    align-items:center;
    gap:10px;

    color:#b7c5d6;
    font-size:15px;

    transition:0.3s;
}

.footer-column ul li a i{
    color:#ff6b00;
    font-size:13px;
}

.footer-column ul li a:hover{
    color:#ffffff;
    transform:translateX(6px);
}

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

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:14px;

    color:#b7c5d6;
    font-size:15px;
    line-height:28px;
}

.footer-contact li i{
    color:#ff6b00;
    margin-top:5px;
    font-size:16px;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:22px;
    padding-bottom:22px;
}

.footer-bottom-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom p{
    color:#b7c5d6;
    font-size:14px;
}

/* =========================
   ACP LINK
========================= */

.dev-text{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.acp-link{
    position:relative;
    color:#ffb16f;
    font-weight:700;
    transition:0.3s;
}

.acp-link:hover{
    color:#ffffff;
}

/* HOVER BOX */

.hover-box{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%) translateY(10px);

    background:#ffffff;
    color:#083b6f;

    padding-top:10px;
    padding-bottom:10px;
    padding-left:16px;
    padding-right:16px;

    border-radius:12px;

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

    opacity:0;
    visibility:hidden;

    white-space:nowrap;

    transition:0.3s;

    box-shadow:0px 10px 25px rgba(0,0,0,0.15);
}

.hover-box::after{
    content:'';
    position:absolute;
    bottom:-6px;
    left:50%;
    transform:translateX(-50%) rotate(45deg);

    width:12px;
    height:12px;

    background:#ffffff;
}

.acp-link:hover .hover-box{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0px);
}

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

@media(max-width:991px){

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

}

@media(max-width:768px){

    .footer-top{
        padding-top:60px;
        padding-bottom:40px;
    }

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

    .footer-column h3{
        font-size:22px;
    }

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

    .dev-text{
        justify-content:center;
    }

}