:root {
    --red: #D31118;
    --dark-blue: #02081F;
    --font-main: 'Inter', sans-serif;
    --font-accent: 'Anton', sans-serif;
    --blue-glow: #00AEEF;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b30e14;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: white;
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}


body {
    font-family: var(--font-main);
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.top-bar {
    background: #f8f8f8;
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 1px solid #eee;
    width: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
}

.marquee-wrapper {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    animation: marquee-infinite 20s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    color: #888;
    padding-right: 80px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-content span i {
    color: var(--red);
    margin-right: 8px;
    font-size: 14px;
    opacity: 0.8;
}

@keyframes marquee-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* .top-bar:hover .marquee-content {
    animation-play-state: paused;
} */


.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 100px;
}

.contact-info {
    display: flex;
    gap: 35px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    color: var(--red);
    font-size: 24px;
}

.info-item .text {
    font-size: 12px;
    line-height: 1.3;
    color: var(--dark-blue);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--dark-blue);
    font-size: 22px;
    text-decoration: none;
}

.main-nav {
    background: var(--dark-blue);
    padding: 15px 0;
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fixed-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100% !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);

    animation: slideDown 0.4s ease-out; 
}

@keyframes slideDown {
    from {
        transform: translateY(-100%); 
        opacity: 0;
    }
    to {
        transform: translateY(0); 
        opacity: 1;
    }
}
.container-nav {
    display: flex;
    align-items: center;
    width: 100%;
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    justify-content: center;
}

.container-nav.is-opened {
    gap: 30px;
}

.nav-icon {
    color: var(--blue-glow);
    border: 2px solid #314d8d;
    border-radius: 50px;
    padding: 2px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    cursor: pointer;
    z-index: 20;
}

.pulse-animation {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 174, 239, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0); }
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 15px;
    max-width: 0;
    opacity: 0;
    overflow: visible; 
    white-space: nowrap;
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    visibility: hidden;
    padding: 0 20px;
}

.menu-items.show {
    max-width: 1400px;
    opacity: 1;
    visibility: visible;
}


.menu-items li a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
      border-radius: 4px; 
    transform: skew(-15deg); 
    transition: 
        filter 0.4s ease, 
        opacity 0.4s ease, 
        background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.3s ease,
        transform 0.3s ease;
    display: inline-block;
}

.menu-items:hover li a {
    filter: blur(1.5px);
    opacity: 0.4;
}

.menu-items li a:hover {
    filter: blur(0);
    opacity: 1;
    background: white;
    color: var(--red);
    transform: skew(-15deg) scale(1.05) translateY(-2px);
}

.hero {
    background-color: var(--red);
    height: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start; 
    padding-top: 50px; 
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    z-index: 10;
}

.hero-text h2 {
    font-family: var(--font-accent);
    font-size: 70px;
    line-height: 1;
    color: white;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 0px;
}

.btn-quote {
    margin-top: 250px;
    background: var(--dark-blue);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    gap: 15px;

    
}

.btn-icon i {
    color: #00AEEF;
    border: 2px solid #314d8d;
    border-radius: 50px;
    padding: 2px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    cursor: pointer;
    z-index: 20;

}
.btn-icon {
    width: 60px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trucks-image {
    position: absolute;
    right: -200px;
    bottom: -50px;
    height: 200%;
    width: auto;
    object-fit: contain;
    z-index: 5;
    pointer-events: none;
}


/*.logos-slider {
    overflow: hidden;
    padding: 40px 0;
    white-space: nowrap;
    position: relative;
}*/

.logos-slider {
    width: 100vw; /* Ocupa todo el ancho de la ventana */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
}


.logos-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    animation: scroll 30s linear infinite;
}

.logos-track img {
    height: 60px; 
    width: auto;
    filter: grayscale(100%); 
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logos-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}


@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

i:hover {
    color: var(--red);
}

.mobile-socials {
    display: none;
}

.nav-shadow {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

/* QUERY FIRST PART */

@media (max-width: 1024px) {
    .hero {
        height: 600px;
        padding-top: 80px;
    }

    .hero-text h2 {
        font-size: 70px;
    }

    .trucks-image {
        right: -150px;
        height: 150%;
    }
}

@media (max-width: 768px) {
    .contact-info, .desktop-only {
        display: none !important;
    }

    .header-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 5px 0;
        justify-content: center;
    }

    .main-nav {
        flex-direction: column;
        padding: 0;
        background: white;
    }

    .hamburger-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 25px;
        z-index: 110;
        align-items: center;
        transition: all 0.3s ease;
    }

    .hamburger-btn.active {
        position: fixed;
        top: 15px;
        right: 15px;
    }

    .hamburger-btn span {
        width: 30px;
        height: 2px;
        background: var(--dark-blue);
        transition: 0.3s;
    }

    .hamburger-btn.active span:nth-child(1) { 
        transform: translateY(8px) rotate(45deg); 
        background: white; 
    }
    .hamburger-btn.active span:nth-child(2) { 
        opacity: 0; 
    }
    .hamburger-btn.active span:nth-child(3) { 
        transform: translateY(-8px) rotate(-45deg); 
        background: white; 
    }

    .menu-items {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 100;
        gap: 20px;
        max-width: 100% !important;
        overflow-y: auto;
    }

    .menu-items.show {
        opacity: 1;
        visibility: visible;
    }

    .menu-items li a,
    .menu-items:hover li a {
        font-size: 18px;
        padding: 10px 20px;
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
        color: white;
    }

    .mobile-tel {
        display: flex !important;
        align-items: center;
        gap: 10px;
        color: white;
        text-decoration: none;
        margin-top: 20px;
        font-weight: 500;
        font-size: 16px;
    }

    .mobile-tel i {
        color: var(--red);
        font-size: 20px;
    }

    .mobile-socials {
        margin-top: 30px;
        display: flex !important;
        gap: 25px;
        justify-content: center;
    }

    .mobile-socials a {
        color: white;
        font-size: 22px;
    }

    .hero {
        height: 550px;
        padding-top: 60px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 50px;
    }

    .hero-content {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-quote {
        margin-top: 50px;
    }

    .trucks-image {
        right: -100px;
        bottom: -20px;
        height: 120%;
        opacity: 0.6;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 100px;
        position: relative;
        left: 30px;
    }

    .social-links {
        display: none;
    }
    .hero-text h2 {
        font-size: 38px;
    }

    .hero {
        height: 500px;
    }

    .top-bar {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .marquee-content span {
        font-size: 10px;
        padding-right: 40px;
    }

    .trucks-image {
        right: -50px;
        height: 100%;
    }
}

/* === SEGUNDA SECCION === */

.expert-ally {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-title-wrapper i {
    font-size: 2.5rem;
    color: #00234b;
}

.section-title-wrapper h2 {
    font-family: 'Anton', sans-serif;
    font-size: 3rem; 
    color: #00234b;
    margin: 0;
    line-height: 1;
    width: 350px;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    letter-spacing: 1.3px;

    font-weight: 300;

}

.ally-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
    align-items: center;
}

.badge-experience {
    background: #00234b;
    color: white;
    padding: 10px 20px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border-radius: 2px;
}

.ally-text p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 550px;
}

.certifications {
    display: flex;
    align-items: center;
    gap: 30px;
}

.certifications img {
    height: 100px;
    object-fit: contain;
}


.ally-image-container {
    position: relative;
    z-index: 20; 
}

.floating-truck {
    width: 130%; 
    display: block;
    transform: translate(30%, 200px); 
}


.transport-solutions {
    background: #00234b;
    color: white;
    padding: 120px 0 80px 0; 
    position: relative;
    z-index: 10;
}

.section-title-wrapper.light h2, 
.section-title-wrapper.light i {
    color: white;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 60px;
    font-weight: 400;
}


.services-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    gap: 20px;
    margin-top: 50px;
}

.services-grid i {
    color: var(--red);
}

.service-card {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}


.service-card img {
    height: 60px; 
    width: auto;
    margin-bottom: 30px; 
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-family: 'Anton', sans-serif;
    color: #ffffff; 
    font-size: 1.3rem; 
    margin-bottom: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 2.5em; 
    line-height: 1.1;
    letter-spacing: 1px; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2); 
}

.service-card p {
    font-size: 0.85rem;
    color: #b0c4de;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

@media (max-width: 1024px) {
    .ally-image-container {
        display: none;
    }

    .expert-ally {
        padding: 40px 0;
    }

    .ally-grid {
        grid-template-columns: 1fr;
        padding: 0 25px;
    }

    .transport-solutions {
        margin-top: 20px;
        padding: 60px 25px;
    }

    .certifications {
        justify-content: flex-start;
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .certifications img {
        height: 35px; 
        width: auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .section-title-wrapper h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service-card {
        align-items: center;
        text-align: center;
    }

    .service-card h3 {
        justify-content: center;
        min-height: auto;
    }

    .service-card p {
        text-align: center;
    }

    .certifications {
        justify-content: center;
    }
    
    .certifications img {
        height: 30px;
    }
}




/* === NOSOTROS SECCION === */


.about {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.about-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Cuadrícula de características */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2rem;
    color: #00234b;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1rem;
    color: #00234b;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Columna de Imágenes */
.main-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.image-overlay-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.gallery-img.active {
    border-color: #00234b;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .main-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text-content {
        text-align: center;
    }
    
    .section-title-wrapper {
        justify-content: center;
    }
}
/* === TERCERA SECCION === */

.coverage {
    padding: 100px 0;
    background-color: #ffffff;
    background-image: url('MAPA_BACKGROUND.png'); 
    background-size: cover;
    background-position: center;
    position: relative;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.coverage-info .section-title-wrapper h2 {
    font-size: 3.5rem;
    line-height: 0.9;
    margin-bottom: 40px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.location-item img {
    width: 60px; 
    height: auto;
}

.location-item p {
    font-size: 1.1rem;
    color: #00234b;
    line-height: 1.3;
    margin: 0;
}

.coverage-map-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-map {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}


@media (max-width: 1024px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .coverage-info .section-title-wrapper {
        justify-content: center;
    }

    .location-item {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .coverage-info .section-title-wrapper h2 {
        font-size: 2.5rem;
    }
}

/* === CUARTA SECCION === */


.units {
    padding: 80px 0;
    background-color: #ffffff;
}

.units-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
}

.units-carousel {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 15px;
}

.unit-slide {
    display: none;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 50px;
    animation: fadeEffect 0.8s;
}

.unit-slide.active {
    display: grid;
}

@keyframes fadeEffect {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.unit-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unit-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.unit-content {
    padding-left: 40px;
}

.unit-tag {
    color: #e30613;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.unit-content h3 {
    font-family: 'Anton', sans-serif;
    color: #00234b;
    font-size: 2.2rem;
    margin-bottom: 20px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.5px;
}

.unit-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.carousel-controls {
    background: #fdfdfd;
    padding: 20px 0;
    text-align: center;
}

.progress-container {
    width: 200px;
    height: 4px;
    background: #e0e0e0; 
    margin: 0 auto 15px auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: red; 
    border-radius: 10px;
    transition: width 0.1s linear;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: #00234b;
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .units-carousel {
        max-width: 90%; 
    }
    
    .unit-content h3 {
        font-size: 1.8rem; 
    }
}

@media (max-width: 768px) {
    .units {
        padding: 50px 0;
    }

    .units-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .unit-slide {
        grid-template-columns: 1fr;
        padding: 40px 20px; 
        text-align: center;
    }

    .unit-image img {
        max-height: 250px; 
        width: auto;
        margin: 0 auto;
    }

    .unit-content {
        padding-left: 0;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .unit-content h3 {
        font-size: 1.6rem; 
        margin-bottom: 15px;
    }

    .unit-content p {
        font-size: 1rem;
        max-width: 450px;
    }

    .progress-container {
        width: 150px; 
    }
}

@media (max-width: 480px) {
    .units-carousel {
        border-radius: 0; 
        box-shadow: none; 
    }
    
    .unit-slide {
        padding: 30px 15px;
    }

    .unit-image img {
        max-height: 180px;
    }

    .unit-content h3 {
        font-size: 1.4rem;
    }
}



/* === QUINTA SECCION Y FOOTER === */


.clients {
    background-color: #001e3d; 
    padding: 60px 0;
    text-align: center;
}

.clients-title {
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 50px;
    letter-spacing: 1px;


    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    letter-spacing: 1.3px;

    font-weight: 300;
}

.clients-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.clients-grid img {
    height: 50px; 
    width: auto;
    filter: brightness(0) invert(1); 
    opacity: 0.9;
    transition: opacity 0.3s;
}

.clients-grid img:hover {
    opacity: 1;
}


.main-footer {
    background-color: #f0f2f5; 
    padding: 60px 0 0 0;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e0e0e0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.1rem;
    color: #001d3d;
    margin-bottom: 25px;
    font-weight: 700;
}


.footer-brand {
    height: 65px;
    margin-bottom: 10px;
}

.footer-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #001d3d;
}

.footer-subtitle .japanese {
    font-weight: normal;
    color: #666;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-item.align-top {
    align-items: flex-start;
}

.footer-item i {
    color: #D31118; 
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-item a, .footer-item p {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}


.footer-bottom {
    border-top: 1px solid #dcdcdc;
    padding: 20px 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-flex p, .bottom-links a {
    color: #888;
    font-size: 0.85rem;
    text-decoration: none;
}

.bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.separator {
    color: #ccc;
}


@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-item {
        justify-content: center;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 10px;
    }
    p {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .clients-grid {
        justify-content: center;
    }
    
    .clients-title {
        font-size: 1.1rem;
    }

    .clients-grid img {
        height: 30px;
    }
}