:root {
    --navy: #01a658;
    --navy2: #00773e;
    --red: #ff4747;
    --red2: #ed1c24;
    --light: #f0f4fa;
    --gray: #8a9bb5;
    --accent: #3dc015;
}

body {
    font-family: "Barlow", sans-serif;
    background: var(--light);
    color: var(--navy);
    overflow-x: hidden;
}

.info-top-bar {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-top-bar .top-item i {
    color: rgba(255, 255, 255, 0.8);
}

.info-top-bar a {
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.info-top-bar a:hover {
    opacity: 0.7;
}

@media (max-width: 992px) {
    .info-top-bar {
        text-align: center;
    }
    .info-top-bar .border-start {
        border: none !important;
        padding-left: 0 !important;
    }
}

.testi-section .btn:hover {
    background-color: #006064 !important;
    /* Une nuance plus sombre du bleu #00838f */
    transition: background-color 0.3s ease;
    transform: translateY(-2px);
}


/* NAVBAR */

.navbar {
    background: var(--light);
    padding: 0 20px;
    min-height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--red);
}

.nav-link {
    color: var(--navy) !important;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 14px !important;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    font-weight: 800;
    color: var(--red) !important;
}

.btn-nav-cta {
    background: var(--red);
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-nav-cta:hover {
    background: var(--red2) !important;
}

.navbar-toggler {
    border-color: var(--light);
}


/* HERO */

.hero {
    min-height: 420px;
    position: relative;
    overflow: hidden;
    margin: 10px 20px;
    border-radius: 35px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--light), var(--light)), linear-gradient(to left, var(--navy), var(--light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, #8effcb 0%, transparent 80%);
    pointer-events: none;
}

.hero-content {
    padding: 70px 40px 70px 60px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 3.5em;
    font-weight: 800;
    color: var(--navy2);
    line-height: 1.08;
    margin-bottom: 18px;
    animation: fadeUp 0.6s ease both;
}

.hero-content h1 span {
    color: var(--red);
}

.hero-content p {
    color: var(--navy2);
    font-size: 15px;
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s 0.15s ease both;
}

.hero-btns {
    animation: fadeUp 0.6s 0.3s ease both;
}

.btn-red {
    background: var(--red);
    color: #fff;
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-red:hover {
    background: var(--red2);
    transform: translateY(-1px);
    color: #fff;
}

.btn-wht {
    background: transparent;
    color: var(--navy2);
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid var(--navy2);
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}

.btn-wht:hover {
    background: var(--navy2);
    color: #fff;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: right;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .hero {
        margin: 0px 10px;
    }
    .hero-content {
        padding: 18px 20px 5px 20px;
    }
    .hero-content h1 {
        font-size: 30px;
        font-weight: 600;
    }
    .hero-content p {
        max-width: 100%;
    }
}


/* SERVICE BAR */

.service-bar {
    background: #fff;
    border-bottom: 3px solid var(--red);
}

.svc-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 5px;
    font-weight: 600;
    font-size: 13px;
    color: var(--navy);
    border-right: 1px solid #e8edf5;
    cursor: pointer;
    transition: background 0.2s;
}

.svc-item:last-child {
    border-right: none;
}

.svc-item:hover {
    background: var(--light);
}

.svc-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.i-truck {
    background: #e3f0ff;
    color: var(--accent);
}

.i-fuel {
    background: #fff3e0;
    color: #e65100;
}

.i-water {
    background: #e1f5fe;
    color: #02bd12;
}


/* SECTION TITLES */

.sec-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
}

.sec-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    background: var(--red);
    margin: 10px 0 0;
    border-radius: 2px;
}

.sec-title.center {
    text-align: center;
}

.sec-title.center::after {
    margin: 10px auto 0;
}

.sec-title.light {
    color: #fff;
}


/* SERVICE CARDS */

.services-section {
    background: var(--light);
    padding: 72px 0;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #c8d5e8;
    background: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.2s;
}

.arrow-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.service-card {
    background: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.3);
}

.card-ico {
    height: 140px;
    background: #004525;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-ico i {
    font-size: 54px;
    color: rgba(255, 255, 255, 0.16);
}

.card-ico::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #198754 0%, transparent 60%);
}

.card-bd {
    padding: 18px;
}

.card-bd h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.card-bd p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin: 0;
}

.card-tags {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 20px;
    font-weight: 500;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8d5e8;
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}


/* HOW IT WORKS */

.how-section {
    background: var(--navy);
    padding: 72px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-num {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.step h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

.step-ico {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step-ico i {
    font-size: 22px;
    color: var(--light);
}


/* TESTIMONIALS */

.testi-section {
    background: #fff;
    padding: 72px 0;
}

.testi-card {
    border: 1px solid #e0e8f4;
    border-radius: 8px;
    padding: 26px;
    transition: box-shadow 0.2s;
    height: 100%;
}

.testi-card:hover {
    box-shadow: 0 8px 28px rgba(10, 22, 40, 0.1);
}

.testi-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #62c015, #0da12d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.testi-role {
    font-size: 12px;
    color: var(--gray);
}

.stars {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 2px;
}


/* STATS */

.stats-bar {
    background: var(--light);
    border-top: 4px solid var(--red);
    padding: 48px 0;
}

.stat-num {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.stat-num span {
    color: var(--red);
}

.stat-lbl {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
    margin-top: 4px;
}


/* NEWS */

.news-section {
    background: #fff;
    padding: 72px 0;
}

.news-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e8f4;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.12);
    transform: translateY(-4px);
}

.news-img {
    height: 160px;
    background: linear-gradient(135deg, #198754, #006335);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-img i {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.18);
}

.news-bd {
    padding: 20px;
}

.news-bd h4 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.news-bd p {
    font-size: 13px;
    color: #5a6a80;
    line-height: 1.65;
    margin: 0;
}

.news-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 2px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* OVERVIEW */

.overview-section {
    background: var(--navy);
    padding: 20px 0;
}

.ov-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.ov-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a551a, #163c0d);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
}

.ov-bg i {
    font-size: 88px;
    color: rgba(255, 255, 255, 0.664);
}

.ov-card:hover .ov-bg {
    transform: scale(1.06);
}

.ov-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgb(20 79 51 / 52%) 0%, #198754e3 60% 60%, #198754b5 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.ov-num {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.ov-overlay h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
}

.ov-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    line-height: 1.6;
}


/* NEW FOOTER STYLE */

.main-footer {
    background: #1a1d21;
    color: #fff;
}

.footer-top-bar {
    margin-top: 30px;
    background: var(--navy);
    justify-content: center;
    display: flex;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 1px;
    font-size: 13px;
    font-weight: 800;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-right: none;
}

.contact-item i {
    background: #fff;
    color: var(--navy);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-body {
    padding: 50px 0;
}

.footer-desc {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}

.soc-link {
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
}

.soc-link:hover {
    background: var(--red);
    transform: translateY(-3px);
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}


/* ANIMATIONS */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float.show {
    bottom: 100px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    color: #fff;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(1, 166, 88, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

.back-to-top.show~.whatsapp-float {
    bottom: 105px;
}

.bank-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.322)
}

.bank-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.651);
}

.bank-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.bank-name {
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    font-size: 1.8rem;
}

.currency-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
}

.bank-card label {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.bank-card h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

.account-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bank-card h4 {
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 2px;
    margin: 0;
}

.bank-card-footer {
    margin-top: 30px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.card-usd {
    border-left: 4px solid #105e05;
}

.card-htg {
    border-left: 4px solid #e74c3c;
}