/* ========================================Body============================================== */
/* =========================
CABSCABS PRO HEADER
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

/* HEADER */

.main-header{
    width:100%;
    position:sticky;
    top:0;
    z-index:9999;

    background:
    linear-gradient(
        135deg,
        #061221 0%,
        #0a2038 40%,
        #143d66 100%
    );

    border-top:5px solid #c8ff1a;

    box-shadow:
    0 8px 25px rgba(0,0,0,.28);
}

/* CONTAINER */

.header-container{
    width:95%;
    max-width:1700px;
    margin:auto;

    min-height:88px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* LOGO */
.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    height:58px;
    width:auto;
    display:block;
    object-fit:contain;
}

/* mobile */

@media(max-width:768px){

    .logo img{
        height:46px;
    }

}
/* CONTACT */

.header-contact{
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
}

.header-contact a{
    text-decoration:none;
    color:#fff;

    display:flex;
    align-items:center;
    gap:9px;

    font-size:16px;
    font-weight:700;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.12);

    transition:.3s ease;
}

.header-contact a i{
    color:#00e676;
    font-size:15px;
}

.header-contact a:hover{
    background:rgba(200,255,26,.12);
    color:#c8ff1a;
    transform:translateY(-2px);
}

/* TABLET */

@media(max-width:900px){

    .header-container{
        flex-direction:column;
        justify-content:center;
        padding:14px 0;
        min-height:auto;
    }

    .logo h1{
        font-size:42px;
    }

    .header-contact{
        justify-content:center;
        gap:14px;
    }
}

/* MOBILE */

@media(max-width:576px){

    .main-header{
        border-top:4px solid #c8ff1a;
    }

    .header-container{
        width:94%;
        padding:14px 0;
    }

    .logo h1{
        font-size:34px;
        text-align:center;
    }

    .header-contact{
        width:100%;
        flex-direction:column;
        gap:10px;
    }

    .header-contact a{
        width:100%;
        justify-content:center;
        font-size:14px;
        padding:12px;
    }
}

/* PHONE FIX HEADER */
@media(max-width:576px){

    .main-header{
        position:relative;
        border-top:4px solid #c8ff1a;
    }

    .header-container{
        width:94%;
        min-height:auto;
        padding:12px 0;

        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        gap:8px;
    }

    .logo{
        flex:0 0 auto;
    }

    .logo h1{
        font-size:28px;
        line-height:1;
        letter-spacing:-1px;
        white-space:nowrap;
        text-align:left;
    }

    .header-contact{
        flex:1;
        display:flex;
        flex-direction:column;
        align-items:flex-end;
        justify-content:center;
        gap:6px;
        min-width:0;
    }

    .header-contact a{
        width:auto;
        max-width:100%;
        padding:6px 8px;

        font-size:11px;
        line-height:1;

        border-radius:20px;
        white-space:nowrap;

        background:rgba(255,255,255,.08);
    }

    .header-contact a i{
        font-size:11px;
    }
}

/* ================================================form section ============================================================================ */

/* =========================
SIMPLE FORM SECTION CSS
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

/* MAIN SECTION */

.form-section{
    width:100%;
    min-height:720px;
    background:
    linear-gradient(rgba(0,0,0,.20), rgba(0,0,0,.20)),
    url("../images/form-bg.webp") center center / cover no-repeat;
    display:flex;
    align-items:center;
    padding:70px 0;
}

/* FORM BOX */

.booking-box{
    width:430px;
    padding:12px 18px;
    background:rgba(16,45,82,.92);
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    backdrop-filter:blur(8px);
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* TITLE */

.booking-title{
    color:#fff;
    text-align:center;
    font-size:21px;
    font-weight:900;
    margin-bottom:10px;
}

/* TABS */

.tabs{
    display:flex;
    gap:10px;
    margin-bottom:8px;
}

.tab-btn{
    flex:1;
    height:38px;
    border:none;
    border-radius:50px;
    background:#f1f1f1;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:.3s ease;
}

.tab-btn:hover{
    background:linear-gradient(90deg,#00c6ff,#0072ff);
    color:#fff;
    transform:translateY(-2px);
}

.tab-btn.active{
    background:linear-gradient(90deg,#ff8a00,#ffd000);
    color:#fff;
}

/* FORM GROUP */

.form-group{
    margin-bottom:8px;
    position:relative;
}

.form-group label{
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:3px;
    display:block;
}

/* INPUT */

.input-box{
    min-height:44px;
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    transition:.3s;
}

.input-box:hover{
    box-shadow:0 0 0 2px #00d7a7;
}

.input-box i{
    width:45px;
    text-align:center;
    color:#0b3d6d;
}

.input-box input,
.input-box select{
    width:100%;
    height:44px;
    border:none;
    outline:none;
    padding:0 10px;
    font-size:14px;
    font-weight:600;
}

/* PHONE */

.code-select{
    width:90px !important;
    border-right:1px solid #ddd !important;
}

/* DATE */

.date-flex input{
    border-right:1px solid #ddd;
}

/* PLUS MINUS */

.plus-minus{
    display:flex;
    align-items:center;
}

.plus-minus button{
    width:48px;
    height:44px;
    border:none;
    background:#0b3d6d;
    color:#fff;
    font-size:24px;
    font-weight:900;
    cursor:pointer;
    transition:.3s;
}

.plus-minus button:hover{
    background:#00c896;
    color:#fff;
}

.plus-minus button:first-child{
    border-left:1px solid #ddd;
}

.plus-minus button:last-child{
    border-top-right-radius:14px;
    border-bottom-right-radius:14px;
}

/* SUBMIT */

.submit-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:50px;
    background:linear-gradient(90deg,#ff8a00,#ffd000);
    color:#fff;
    font-size:18px;
    font-weight:900;
    cursor:pointer;
    margin-top:8px;
    transition:.3s ease;
}

.submit-btn:hover{
    background:linear-gradient(90deg,#00d7a7,#00aaff);
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,215,167,.35);
}

/* AUTO SUGGESTION */

.suggestion-box{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border-radius:0 0 12px 12px;
    max-height:160px;
    overflow-y:auto;
    z-index:99999;
    box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.suggestion-item{
    padding:8px 12px;
    font-size:13px;
    line-height:1.35;
    cursor:pointer;
    color:#111;
    border-bottom:1px solid #eee;
    transition:.2s;
}

.suggestion-item:hover{
    background:#eef6ff;
    color:#0072ff;
}

/* CONTACT */

.contact-side{
    color:#fff;
}

.contact-side h1{
    font-size:70px;
    color:#00d7a7;
    font-weight:900;
}

.contact-side h2{
    font-size:40px;
}
/* REVIEW SECTION GAP */

.review-section{
    position:relative;
    z-index:1;
    margin-top:0;
    padding-top:20px;
}

/* MOBILE */

@media(max-width:900px){

    .form-section{
        flex-direction:column;
        padding:10px 12px 70px;
        min-height:auto;
        margin-bottom:25px;
    }

    .booking-box{
        width:100%;
        padding:12px;
        margin-bottom:18px;
    }

    .contact-side{
        text-align:center;
    }

    .contact-side h1{
        font-size:40px;
    }

    .contact-side h2{
        font-size:20px;
    }

    .submit-btn{
        margin-bottom:10px;
    }
}

/* ===========================================================================reviews===================================================================== */
/* =========================
APP REVIEW SECTION 1000% PRO
========================= */

.app-review-section{
    width:100%;
    min-height:95px;
    background:
    radial-gradient(circle at top left, rgba(14,165,233,.12), transparent 30%),
    linear-gradient(180deg,#f4f8fc,#eef5fb);
    display:flex;
    justify-content:center;
    align-items:flex-start;
    position:relative;
    z-index:10;
}

.app-review-box{
    width:920px;
    min-height:92px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border-radius:80px;
    margin-top:-32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
    border:1px solid rgba(255,255,255,.75);
    box-shadow:
    0 30px 70px rgba(15,23,42,.16),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.app-review-card{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:245px;
    opacity:0;
    transform:translateY(20px);
    transition:.7s ease;
}

.app-review-card.show{
    opacity:1;
    transform:translateY(0);
}

.app-review-icon{
    width:46px;
    height:46px;
    background:linear-gradient(135deg,#061936,#10294d);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    box-shadow:0 14px 28px rgba(6,25,54,.38);
}

.app-review-card:nth-child(1) .app-review-icon{color:#ff4b8b;}
.app-review-card:nth-child(2) .app-review-icon{color:#22d3ee;}
.app-review-card:nth-child(3) .app-review-icon{color:#60a5fa;}

.app-review-text h4{
    margin:0 0 6px;
    font-size:15px;
    font-weight:900;
    color:#0f172a;
}

.app-stars{
    display:flex;
    align-items:center;
    gap:4px;
    color:#f6b812;
    font-size:15px;
    white-space:nowrap;
}

.app-stars span{
    margin-left:7px;
    color:#475569;
    font-size:11px;
    font-weight:800;
}

@media(max-width:900px){
    .app-review-section{
        height:auto;
        padding:22px 15px;
    }

    .app-review-box{
        width:100%;
        margin-top:0;
        border-radius:30px;
        padding:24px;
        flex-direction:column;
        align-items:flex-start;
        gap:22px;
    }

    .app-review-card{
        min-width:auto;
    }
}





/* ===========================================================================Servies===================================================================== */

.cab-services-section{
    padding:55px 35px;
    background:#f5fbff;
}

.cab-services-container{
    max-width:1400px;
    margin:auto;
}

.cab-services-title{
    text-align:center;
    font-size:32px;
    font-weight:900;
    color:#06285a;
    margin-bottom:30px;
}

.cab-services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    align-items:stretch;
}

.cab-service-card{
    background:#fff;
    border-radius:18px;
    padding:12px;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
    border:1px solid #e2edf8;
    display:flex;
    flex-direction:column;
}

.cab-service-img-box{
    width:100%;
    height:140px;
    overflow:hidden;
    border-radius:14px;
}

.cab-service-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.cab-service-content{
    padding:18px 10px 0;
    display:flex;
    flex-direction:column;
    flex:1;
    text-align:center;
}

.cab-service-content h3{
    font-size:20px;
    font-weight:900;
    color:#06285a;
    margin-bottom:12px;
}

.cab-service-text{
    font-size:13px;
    line-height:1.7;
    color:#333;
    margin-bottom:18px;
}

/* default short text only */
.cab-service-text .more-text{
    display:none;
}

/* active card me full content */
.cab-service-card.active .more-text{
    display:inline;
}

.cab-read-btn{
    margin-top:auto;
    width:100%;
    height:44px;
    border:0;
    border-radius:10px;
    background:linear-gradient(90deg,#0ea5e9,#2563eb);
    color:#fff;
    font-size:14px;
    font-weight:900;
    cursor:pointer;
}

.cab-read-btn:hover{
    background:linear-gradient(90deg,#ff9800,#ffc400);
}

/* tablet */
@media(max-width:992px){
    .cab-services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* phone */
@media(max-width:576px){
    .cab-services-section{
        padding:35px 12px;
    }

    .cab-services-title{
        font-size:24px;
    }

    .cab-services-grid{
        grid-template-columns:1fr;
    }

    .cab-service-img-box{
        height:170px;
    }
}




/* ===========================================================================why-choose.css===================================================================== */
/* =========================================================
1000% ADVANCE PRO WHY CHOOSE SECTION
Premium Cards • Glass UI • Glow • Responsive
========================================================= */

/* =========================
WHY CHOOSE CABSCABS
PRO LEVEL BLUE DESIGN
========================= */

.why-choose-section{
    padding:70px 5%;
    background:#f8fbff;
}

.why-container{
    max-width:1500px;
    margin:auto;
}

.why-main-title{
    text-align:center;
    font-size:38px;
    font-weight:900;
    color:#123b63;
    margin-bottom:38px;
}

/* GRID */

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */

.why-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.10);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    height:100%;
    border:1px solid #e5edf7;
}

.why-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 42px rgba(18,59,99,.16);
}

/* IMAGE */

.why-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* TITLE */

.why-card h3{
    font-size:22px;
    font-weight:900;
    color:#123b63;
    padding:20px 18px 10px;
    line-height:1.35;
}

/* LIST */

.why-card ul{
    list-style:none;
    padding:0 18px;
    flex:1;
}

.why-card ul li{
    font-size:15px;
    line-height:1.7;
    color:#333;
    margin-bottom:6px;
}

/* BUTTON SAME SIZE */

.why-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:calc(100% - 36px);
    height:54px;

    margin:18px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #0b5fa5 0%,
        #1976d2 50%,
        #2196f3 100%
    );

    color:#fff;
    text-decoration:none;

    font-size:16px;
    font-weight:900;

    border-radius:14px;

    transition:.3s ease;

    box-shadow:
    0 10px 22px rgba(25,118,210,.22);
}

/* HOVER */

.why-btn:hover{
    background:linear-gradient(
        135deg,
        #123b63 0%,
        #1565c0 100%
    );

    transform:translateY(-2px);

    box-shadow:
    0 16px 28px rgba(18,59,99,.25);
}

/* TABLET */

@media(max-width:992px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .why-card img{
        height:210px;
    }
}

/* MOBILE */

@media(max-width:576px){

    .why-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .why-main-title{
        font-size:30px;
        margin-bottom:28px;
    }

    .why-card img{
        height:200px;
    }

    .why-card h3{
        font-size:20px;
    }

    .why-btn{
        height:50px;
        font-size:15px;
    }
}




/* ===========================================================================content===================================================================== */

/* =========================================================
1000% ULTRA ADVANCE ABOUT SECTION CSS
PREMIUM GLASSMORPHISM + GLOW + ANIMATION
========================================================= */

/* =========================================
ABOUT SECTION - SIMPLE ADVANCE PRO
========================================= */

.about-content-section{
    width:100%;
    padding:80px 20px;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    #f4f9ff 0%,
    #ffffff 100%
    );
}

/* MAIN BOX */

.about-content-box{
    max-width:1000px;
    margin:auto;

    padding:50px;

    border-radius:28px;

    background:#ffffff;

    border:1px solid #e4eef8;

    box-shadow:
    0 18px 45px rgba(0,0,0,.08);

    transition:.35s ease;
}

/* TOP LINE */

.about-content-box::before{
    content:"";
    display:block;

    width:100%;
    height:5px;

    border-radius:20px;

    margin-bottom:28px;

    background:
    linear-gradient(
    90deg,
    #ff8a00,
    #0ea5e9,
    #2563eb
    );
}

/* HEADING */

.about-content-box h2{
    text-align:center;

    font-size:40px;

    line-height:1.3;

    font-weight:900;

    color:#0f172a;

    margin-bottom:18px;
}

/* TITLE LINE */

.about-title-line{
    width:100px;
    height:5px;

    margin:0 auto 35px;

    border-radius:20px;

    background:
    linear-gradient(
    90deg,
    #ff8a00,
    #0ea5e9
    );
}

/* PARA BOX */

.about-para{
    background:#f8fbff;

    border:1px solid #e7eef7;

    border-left:5px solid #0ea5e9;

    border-radius:18px;

    padding:22px;

    margin-bottom:22px;

    transition:.3s;
}

.about-para:hover{
    transform:translateY(-3px);

    box-shadow:
    0 10px 28px rgba(14,165,233,.10);
}

/* TEXT */

.about-para p{
    font-size:16px;

    line-height:2;

    color:#334155;

    margin:0;

    text-align:justify;

    font-weight:500;
}

/* BUTTON */

.about-book-btn{
    width:max-content;

    min-width:230px;

    height:54px;

    padding:0 30px;

    margin:28px auto 0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;

    background:
    linear-gradient(
    135deg,
    #071a49,
    #0e3b7c
    );

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:900;

    box-shadow:
    0 12px 30px rgba(7,26,73,.18);

    transition:.3s;
}

.about-book-btn:hover{
    background:
    linear-gradient(
    135deg,
    #ff8a00,
    #ffb000
    );

    transform:translateY(-3px);
}

/* TABLET */

@media(max-width:900px){

    .about-content-section{
        padding:60px 16px;
    }

    .about-content-box{
        padding:38px 28px;
    }

    .about-content-box h2{
        font-size:32px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .about-content-section{
        padding:40px 12px;
    }

    .about-content-box{
        padding:24px 18px;

        border-radius:22px;
    }

    .about-content-box h2{
        font-size:26px;
    }

    .about-title-line{
        width:80px;
        margin-bottom:25px;
    }

    .about-para{
        padding:16px;
        border-radius:14px;
    }

    .about-para p{
        font-size:14px;
        line-height:1.9;
    }

    .about-book-btn{
        width:100%;
        min-width:100%;

        height:50px;

        font-size:14px;
    }
}


/* ===========================================================================routes===================================================================== */

/* =========================
POPULAR ROUTES + CITIES
========================= */

.popular-wrapper{
    padding:70px 20px;
    background:
    linear-gradient(135deg,#03162f 0%,#0b3561 100%);
}

.popular-container{
    max-width:1320px;
    margin:auto;
}

/* HEADING */

.popular-heading{
    text-align:center;
    color:#fff;
    font-size:40px;
    font-weight:900;
    margin-bottom:28px;
}

/* TOP LINKS */

.top-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-bottom:35px;
}

.top-links a{
    text-decoration:none;
    color:#fff;
    padding:11px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:800;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    transition:.3s;
}

.top-links a:hover{
    background:#00c853;
}

/* CITY */

.city-title{
    text-align:center;
    color:#fff;
    font-size:30px;
    font-weight:900;
    margin-bottom:24px;
}

.city-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.city-card{
    text-decoration:none;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:800;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    transition:.3s;
}

.city-card:hover{
    background:#2377e8;
}

.hidden-city{
    display:none;
}

/* BUTTON */

.city-btn-box,
.route-btn-box{
    text-align:center;
    margin:24px 0 40px;
}

#showMoreCities,
#showMoreRoutes{
    padding:13px 28px;
    border:none;
    border-radius:50px;
    background:#00d45f;
    color:#fff;
    font-size:14px;
    font-weight:900;
    cursor:pointer;
    transition:.3s;
}

#showMoreCities:hover,
#showMoreRoutes:hover{
    background:#00b64e;
}

/* ROUTE GRID */

.route-main{
    max-width:1320px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

/* CARD */

.route-card{
    background:rgba(0,0,0,.28);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    padding:18px;
    min-height:210px;
    transition:.3s;
}

.route-card:hover{
    transform:translateY(-4px);
    background:rgba(0,0,0,.38);
}

.route-card h4{
    color:#fff;
    font-size:20px;
    font-weight:900;
    margin-bottom:15px;
}

.route-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.route-card li{
    margin-bottom:10px;
}

.route-card a{
    color:#e5f0ff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    line-height:1.5;
}

.route-card a:hover{
    color:#00ff9d;
}

/* HIDDEN */

.hidden-route{
    display:none;
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

    .route-main{
        grid-template-columns:repeat(2,1fr);
    }

    .popular-heading{
        font-size:34px;
    }

    .city-title{
        font-size:24px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:576px){

    .popular-wrapper{
        padding:50px 14px;
    }

    .popular-heading{
        font-size:28px;
    }

    .city-title{
        font-size:22px;
    }

    .top-links a,
    .city-card{
        width:100%;
        text-align:center;
    }

    .route-main{
        grid-template-columns:1fr;
    }

    .route-card{
        min-height:auto;
    }

    #showMoreCities,
    #showMoreRoutes{
        width:100%;
    }
}

/* ===========================================================================footer===================================================================== */

/* =========================
DARK PRO SOCIAL ICON BAR
========================= */

.top-social-bar{
    width:100%;
    background:
        radial-gradient(circle at 25% 50%, rgba(0,230,118,.14), transparent 28%),
        radial-gradient(circle at 75% 50%, rgba(14,165,233,.16), transparent 30%),
        linear-gradient(135deg,#061221 0%,#0b2d52 55%,#0b4663 100%);
    padding:16px 20px;
    border-top:3px solid #c8ff1a;
    border-bottom:1px solid rgba(255,255,255,.12);
    box-shadow:0 10px 28px rgba(0,0,0,.28);
}

.social-icons{
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;
}

.social-icons a{
    width:46px;
    height:46px;
    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;
    font-size:21px;
    text-decoration:none;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.16);

    box-shadow:
        0 12px 26px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.10);

    transition:.3s ease;
}

.social-icons a:hover{
    color:#fff;
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 18px 36px rgba(0,0,0,.35);
}

/* brand hover */
.social-icons a:nth-child(1):hover{background:#1877f2;}
.social-icons a:nth-child(2):hover{background:#000;}
.social-icons a:nth-child(3):hover{background:#0a66c2;}
.social-icons a:nth-child(4):hover{
    background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
}
.social-icons a:nth-child(5):hover{background:#e60023;}
.social-icons a:nth-child(6):hover{background:#ff0000;}

/* MOBILE */
@media(max-width:768px){

    .top-social-bar{
        padding:12px 10px;
    }

    .social-icons{
        gap:12px;
        flex-wrap:wrap;
    }

    .social-icons a{
        width:40px;
        height:40px;
        border-radius:14px;
        font-size:18px;
    }
}

/* =========================
FOOTER FIX
========================= */

.footer{
    background:#0b4663;
    color:#fff;
    margin-top:0;
    padding-top:0;
    border-top:none;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:28px 18px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    border-top:none;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.footer-col h3{
    font-size:28px;
    font-weight:900;
    margin-bottom:8px;
}

.footer-col h4{
    font-size:20px;
    font-weight:900;
    margin-bottom:8px;
}

.footer-col p{
    font-size:14px;
    line-height:1.7;
    color:#eaf7ff;
}

.footer-links{
    text-align:center;
    padding:16px 12px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    margin:0 8px;
}

.footer-links a:hover{
    color:#c8ff1a;
}

.footer-links span{
    color:#fff;
    opacity:.8;
}

.footer-bottom{
    text-align:center;
    padding:12px;
    font-size:14px;
    color:#fff;
}

/* MOBILE */

@media(max-width:768px){

    .footer-container{
        flex-direction:column;
        text-align:center;
    }

    .footer-links{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:8px;
    }

    .footer-links span{
        display:none;
    }
}

/* ===========================================================================T===================================================================== */
/* ===========================================================================T===================================================================== */
/* ===========================================================================T===================================================================== */
/* ===========================================================================T===================================================================== */
/* ===========================================================================T===================================================================== */
/* ===========================================================================T===================================================================== */

