/* Navbar fijo en la parte superior */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Ajuste para el contenido debajo del navbar fijo */
body {
    padding-top: 70px;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    background-color: transparent !important;
    border-radius: 10px;
    margin: 0 8px;
    padding: 4px 16px !important;
    color: white !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Footer styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-tagline {
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.footer-tagline p {
    margin: 0;
    line-height: 1.4;
}

/* Statistics Banner Styles */
.stats-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 0rem 0rem 2 rem 0rem;
    border-radius: 8px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}



.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #209bd6;
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: #e0e0e0;
    margin: 0 1rem;
}

/* Two Column Section Styles */
.column-content {
    padding: 2rem 2rem 0 2rem;;
    background-color: #ffffff;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
}

           
.column-content h3 {
    color: #209bd6;
    font-family:  sans-serif;
    margin-bottom: 1rem;
}

.column-title-image {
    max-width: 100%;
    max-height: 286px;
    margin-bottom: 0px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;

}

.column-content .lead {
    color: #495057;
    font-weight: 500;
}

.column-content p {
    color: #00305a;
    line-height: 1;
}

.btn-primary {
    background-color: #209bd6;
    border-color: #209bd6;
    font-family: 'Bebas Neue', sans-serif;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a7bb3;
    border-color: #1a7bb3;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: #209bd6;
    border-color: #209bd6;
    font-family: 'Bebas Neue', sans-serif;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #209bd6;
    border-color: #209bd6;
    transform: translateY(-2px);
}

/* About Us Banner Styles */
.about-banner {
    background-image: url('../assets/fondop-truck.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}
.about-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.9) 75%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}
.about-text {
    flex: 1;
    /* background-color: rgba(255, 255, 255, 0.95); */
    padding: 2rem;
    border-radius: 8px;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: #209bd6;
    text-shadow: 2px 2px 4px rgba(32, 155, 214, 0.3);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.truck-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Contact Form Styles */
.contact-form-container {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 3rem;
    margin: 2rem 0;
}

.contact-title {
    font-family: 'Bebas Neue', sans-serif;
    color: #209bd6;
    text-align: left;
    margin-bottom: 0rem !important;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.contact-title-2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #209bd6;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
    display: block;
    font-size: 0.9rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus {
    border-color: #209bd6;
    box-shadow: 0 0 0 0.2rem rgba(32, 155, 214, 0.25);
    outline: none;
}

.form-control:invalid {
    border-color: #209bd6;
}

textarea.form-control {
    resize: vertical;
    min-height: 72px;
}

.btn-submit {
    background-color: #209bd6;
    border-color: #209bd6;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.8rem;
}

.btn-submit:hover {
    background-color: #1a7bb3;
    border-color: #1a7bb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 155, 214, 0.3);
}

/* CAPTCHA Styles */
.captcha-container {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.captcha-question span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #209bd6;
}

#refresh-captcha {
    padding: 5px 10px;
    font-size: 0.9rem;
    border: 1px solid #209bd6;
    color: #209bd6;
    background-color: white;
    transition: all 0.3s ease;
}

#refresh-captcha:hover {
    background-color: #209bd6;
    color: white;
    transform: scale(1.05);
}

#captcha {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    text-align: center;
    font-weight: bold;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-text {
        padding: 1.5rem;
    }
    
        .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .footer-container {
        padding: 2rem 1.5rem;
    }
   
}

/* Footer Styles */
.footer {
    background-color: transparent;
    padding: 0 0 2rem 0;
}

.footer-container {
    background-color: #f2f2f2;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
    margin-left: auto;
    margin-right: auto;

}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-center;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-branding {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.brand-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}


.trademark {
    font-size: 0.8rem;
    color: #333;
    vertical-align: super;
    line-height: 0;
    text-decoration: none;
    font-weight: regular;
}

.year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: regular;
    color: #333;
    margin-left: 0.5rem;
    text-decoration: none;

}

.logo-icon {
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.logo-icon i {
    color: white;
    font-size: 10px;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: regular;

    a {
        text-decoration: none;
    }
}

.logo-part1 {
    color: #333;
}

.logo-part2 {
    color: #209bd6;
}

.footer-tagline p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-terms {
    text-align: center;
    margin-top: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #209bd6;
    color: white;
    transform: translateY(-2px);
}

.footer-link {
    color: #666;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #209bd6;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .stats-banner {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.25rem);
        min-width: 0;
        box-sizing: border-box;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
}

/* Para pantallas muy angostas */
@media (max-width: 480px) {
    .stats-banner {
        gap: 0.25rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.125rem);
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }

    
    .column-content {
        margin-bottom: 1rem;
        padding: 2rem 0.5rem;
    }
}

/* Terms and Conditions Checkbox Styles */
.form-check {
    margin-bottom: 1rem;
    margin-top: 1rem;

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

.form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-top: 0;
    margin-right: 0.5rem;
    border: 2px solid #209bd6;
    border-radius: 0.25em;
    background-color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.form-check-input:checked {
    background-color: #209bd6;
    border-color: #209bd6;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(32, 155, 214, 0.25);
    border-color: #209bd6;
}

.form-check-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-link{
        font-size: 0.8rem;
    }

    .contact-title {
        font-family: 'Bebas Neue', sans-serif;
        color: #209bd6;
        text-align: center;
        margin-bottom: 0rem !important;
        font-weight: bold;
        font-size: 1.1rem;
        margin: 0 0 2rem 0;
        line-height: 1.2;
    }
}

.terms-link {
    color: #209bd6;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #1a7bb8;
    text-decoration: underline;
}

/* Disabled Submit Button Styles */
.btn-submit:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: none;
    box-shadow: none;
}

/* Enabled Submit Button Styles */
.btn-submit:not(:disabled) {
    background-color: #209bd6;
    border-color: #209bd6;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:not(:disabled):hover {
    background-color: #1a7bb8;
    border-color: #1a7bb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(32, 155, 214, 0.3);
}