﻿:root {
    --primary: #46BBD7;
    --faster-yellow: #fffe3f;
    --secondary: BLACK;
    --accent: #00D4FF;
    --light-bg: #F5F5F5;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

.text-light {
    font-weight: 300;
}

.text-normal {
    font-weight: 400;
}

.text-semibold {
    font-weight: 600;
}

.text-bold {
    font-weight: 700;
}

.text-bold-italic {
    font-weight: 700;
    font-style: italic;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:hover {
        background-color: var(--faster-yellow);
        color: black;
    }

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-primary:hover {
        background-color: var(--primary);
        border-color: var(--primary);
    }

a {
    color: var(--primary);
}

    a:hover {
        color: #e55a28;
    }

.hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #2d3561 50%, #4a5f9e 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center bottom;
        background-size: cover;
        opacity: 0.3;
    }

.hero-content {
    text-align: left;
    color: white;
    padding: 2rem;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.hero-content .btn {
    padding: 0.75rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 50px;
    animation: fadeInUp 1.4s ease;
    display: inline-block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .carousel-dot.active {
        background: #FF6B35;
        width: 30px;
        border-radius: 6px;
    }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), black);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
}

.team-member {
    text-align: center;
    padding: 1rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ddd, #f0f0f0);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #999;
}

.team-name {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.team-title {
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), black);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer {
    background: var(--secondary);
    color: white;
    padding: 40px 0 20px;
}

    .footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
    }

        .footer a:hover {
            color: var(--primary);
        }

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    .social-icons a:hover {
        background: var(--primary);
        color: white;
    }

.page-header {
    position: relative;
    background-image: url('/images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    min-height: 250px;
    overflow: hidden;
    margin-top: 0;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

.service-detail-card {
    margin-bottom: 2rem;
}

.stats-box {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.stats-label {
    color: #666;
    margin-top: 0.5rem;
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 1rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
}

.navbar-brand {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.sector-card, .solution-card, .value-box, .value-card, .service-icon-card,
.coverage-card, .volume-card, .payment-method-card, .client-logo-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .sector-card:hover, .solution-card:hover, .value-box:hover, .value-card:hover,
    .service-icon-card:hover, .coverage-card:hover, .volume-card:hover,
    .payment-method-card:hover, .client-logo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

.sector-icon, .value-icon, .service-intro-icon, .coverage-icon, .volume-icon, .payment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.navbar {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background-color: #46bbd7 !important;
    max-width: 1400px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 5px;
    border-radius: 12px;
}

    .navbar.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 0.25rem 0;
    }

.navbar-brand {
    transition: color 0.3s ease;
}

    .navbar-brand .logo {
        height: 65px;
        width: auto;
        max-width: 180px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .navbar-brand:hover .logo {
        transform: scale(1.05);
        opacity: 0.9;
    }

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    font-weight: 500;
    color: #000 !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

    .nav-link:hover, .nav-link.active {
        color: var(--faster-yellow) !important;
    }

    .nav-link.active {
        font-weight: 600;
    }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background-color: var(--primary);
        }

.navbar .btn-primary {
    background-color: var(--faster-yellow);
    color: #000;
    border: 2px solid #000;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: none;
    white-space: nowrap;
}

    .navbar .btn-primary:hover, .navbar .btn-primary:active, .navbar .btn-primary:focus {
        background-color: #000 !important;
        color: var(--faster-yellow) !important;
        border: 2px solid var(--faster-yellow) !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 254, 63, 0.3);
    }

.navbar-toggler {
    padding: 0.5rem;
}



.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#heroCarousel {
    position: relative;
    height: 800px;
    min-height: 500px;
    margin-top: 0;
    background-color: black;
}

.carousel-item {
    height: 800px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

    .carousel-item img {
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
    }

    .carousel-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
    padding: 0;
}

.carousel-fade .carousel-item img {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-color: black;
}

.carousel-fade .carousel-item.active img {
    opacity: 1;
}

.carousel-fade .carousel-item:not(.active) {
    background-color: black;
}

.about-text p {
    text-align: justify;
}

.about-section, .values-section, .services-intro-section {
    padding: 4rem 0;
}

.about-image, .services-intro-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.values-section {
    background-color: var(--light-bg);
}

.value-card {
    text-align: center;
    margin-bottom: 1.5rem;
    height: 100%;
}

.value-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #5ac9e0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.value-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.value-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.services-intro-section {
    background: white;
}

.services-intro-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-intro-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

    .service-intro-item h4 {
        color: var(--secondary);
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .service-intro-item p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .service-intro-item ul {
        margin: 0;
        padding-left: 1.25rem;
        color: #666;
    }

        .service-intro-item ul li {
            margin-bottom: 0.25rem;
        }

.services-icons-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary), #5ac9e0);
}

    .services-icons-section .section-title {
        color: white;
    }

.service-icon-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1rem;
    height: 100%;
}

    .service-icon-card:hover {
        background: white;
    }

.service-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.service-icon-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    min-height: 2.5rem;
}

.service-icon-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.services-left-side {
    padding: 0;
}

.services-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.services-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.services-title-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(5px);
}

    .services-title-bottom h2 {
        color: var(--primary);
        font-size: 3.5rem;
        font-weight: 900;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

.services-right-side {
    padding: 2rem 3rem;
}

.services-infographic {
    position: relative;
    max-width: 100%;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

    .service-row:last-child {
        margin-bottom: 0;
    }

.service-bubble-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    position: relative;
}

    .service-bubble-item.left-item {
        flex-direction: row;
    }

    .service-bubble-item.right-item {
        flex-direction: row-reverse;
        text-align: left;
    }

.service-bubble {
    position: relative;
    flex-shrink: 0;
}

    .service-bubble img {
        width: 120px;
        height: 120px;
        object-fit: contain;
    }

    .service-bubble::after {
        content: '';
        position: absolute;
        width: 3px;
        height: 80px;
        background: linear-gradient(180deg, var(--primary), #5ac9e0);
        border-radius: 2px;
    }

.top-row .left-item .service-bubble::after,
.top-row .right-item .service-bubble::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.bottom-row .service-bubble::after {
    display: none;
}

.service-content h4 {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

    .service-content ul li, .volume-card ul li {
        padding-left: 1.25rem;
        position: relative;
        margin-bottom: 0.25rem;
    }

        .service-content ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .volume-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

.client-logo-card {
    padding: 2rem 1.5rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.client-logo-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-category {
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-highlight {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sector-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

    .sector-features li {
        padding-left: 1.5rem;
        position: relative;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: #666;
    }

        .sector-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

.section-title-faster, .section-title-white {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title-faster {
    color: var(--secondary);
}

.section-title-white {
    color: white;
}

.faster-divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 1rem auto;
}

.faster-divider-white {
    width: 80px;
    height: 4px;
    background: white;
    margin: 1rem 0;
}

.benefits-diagram-section {
    background: white;
}

.benefit-item-faster {
    margin-bottom: 2.5rem;
}

.benefit-label, .value-tag {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.benefit-item-faster p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.benefits-diagram-image {
    max-width: 350px;
    margin: 0 auto;
}

    .benefits-diagram-image img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        transition: transform 0.3s ease;
    }

        .benefits-diagram-image img:hover {
            transform: scale(1.05);
        }

.coverage-info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 5px solid var(--primary);
}

.coverage-point {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.sampling-list {
    list-style: none;
    padding: 0;
}

    .sampling-list li {
        padding-left: 1.5rem;
        position: relative;
        margin-bottom: 1rem;
        color: #666;
        line-height: 1.7;
    }

        .sampling-list li::before {
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: bold;
        }

.sampling-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.sampling-image {
    width: 100%;
    display: block;
}

.sampling-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

    .sampling-badge span {
        display: block;
    }

.value-box-faster {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary);
}

    .value-box-faster:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(70,187,215,0.2);
    }

.value-icon-faster {
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

    .value-icon-faster svg {
        width: 50px;
        height: 50px;
    }

.value-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
}

    .value-features li {
        color: #666;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

.final-cta-faster {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 0;
}

.cta-logo-faster {
    max-width: 300px;
}

.cta-title-faster {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin: 2rem 0;
    line-height: 1.2;
    letter-spacing: 2px;
}

.btn-cta-faster {
    background: white;
    color: var(--primary);
    padding: 1.25rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
}

    .btn-cta-faster:hover {
        background: var(--faster-yellow);
        color: var(--secondary);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

.fleet-section-faster {
    background: var(--primary);
    position: relative;
    overflow: visible;
}

.fleet-type-list {
    margin-top: 1rem;
}

.fleet-type-item {
    color: white;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.fleet-composition {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fleet-item-top {
    width: 100%;
    text-align: center;
}

    .fleet-item-top img {
        width: 55%;
        height: auto;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

.fleet-item-middle {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 5%;
}

.pickup-img {
    width: 45%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.fleet-item-bottom {
    width: 100%;
    text-align: right;
    padding-right: 10%;
}

    .fleet-item-bottom img {
        width: 40%;
        height: auto;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

.moto-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 20%;
    height: auto;
    z-index: 100;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    transform: translateY(50%);
}

@media (max-width: 991px) {
    .hero-title, .section-title {
        font-size: 2rem;
    }

    .navbar-brand .logo {
        height: 38px;
        max-width: 140px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        width: 100%;
    }

        .nav-link.active::after {
            display: none;
        }

    .navbar .btn-primary {
        display: block;
        width: 100%;
        margin-top: 1rem;
        text-align: center;
        margin-left: 0 !important;
    }

    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .services-intro-title, .services-title-bottom h2 {
        font-size: 2.5rem;
    }

    .service-intro-item {
        flex-direction: column;
        gap: 1rem;
    }

    .service-intro-icon {
        font-size: 2.5rem;
    }

    .services-right-side {
        padding: 3rem 2rem;
    }

    .service-row {
        flex-direction: column;
        gap: 2rem;
    }

    .service-bubble-item.left-item,
    .service-bubble-item.right-item {
        flex-direction: column;
        text-align: center;
    }

    .service-bubble img {
        width: 100px;
        height: 100px;
    }

    .fleet-item-top img {
        width: 90%;
    }

    .pickup-img {
        width: 80%;
    }

    .moto-overlay-bottom {
        width: 28%;
        left: 35%;
    }

    .fleet-item-bottom img {
        width: 60%;
    }

    .benefits-diagram-image {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        flex-direction: row;
        gap: 0.25rem;
    }

    .nav-item {
        margin: 0;
    }

    .navbar-collapse {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    #heroCarousel {
        height: 550px;
        min-height: 400px;
    }

    .carousel-item {
        height: 550px;
        min-height: 400px;
    }

        .carousel-item img {
            object-fit: cover;
            object-position: center center;
            height: 100%;
            width: 100%;
            min-height: 100%;
        }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .navbar-brand .logo {
        height: 35px;
        max-width: 120px;
    }

    .services-intro-title, .services-title-bottom h2, .section-title-faster, .section-title-white {
        font-size: 1.8rem;
    }

    .benefit-item-faster {
        margin-bottom: 2rem;
    }

    .benefits-diagram-image {
        max-width: 280px;
        margin-bottom: 2rem;
    }

    .fleet-composition {
        gap: 2rem;
    }

    .fleet-item-top, .fleet-item-middle, .fleet-item-bottom {
        text-align: center;
        padding: 0;
    }

        .fleet-item-top img, .pickup-img, .fleet-item-bottom img {
            width: 100%;
        }

    .moto-overlay-bottom {
        width: 40%;
        left: 30%;
        transform: translateY(30%);
    }

    .cta-title-faster {
        font-size: 2rem;
    }

    .client-logo-container {
        height: 100px;
    }

    .client-logo-card {
        min-height: 180px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    #heroCarousel {
        height: 500px;
        min-height: 350px;
    }

    .carousel-item {
        height: 500px;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .services-intro-title {
        font-size: 2rem;
    }

    .service-intro-item h4 {
        font-size: 1.1rem;
    }

    .services-title-bottom {
        padding: 1rem 1.5rem;
    }

        .services-title-bottom h2 {
            font-size: 2rem;
        }

    .services-image-container {
        min-height: 400px;
    }

    .services-right-side {
        padding: 2rem 1.5rem;
    }

    .service-content h4 {
        font-size: 1rem;
    }

    .service-content p, .service-content ul {
        font-size: 0.85rem;
    }

    .fleet-type-item {
        font-size: 0.95rem;
    }

    .moto-overlay-bottom {
        width: 50%;
        left: 25%;
    }
}
