/* ========== ENHANCED COMPONENTS - LIGHT THEME ========== */

/* ========== DEALER CARDS ========== */
.dealer-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.dealer-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.dealer-card:hover {
    border-color: var(--hope-red);
    box-shadow: var(--shadow-lg);
}

.dealer-card .card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05) 0%, rgba(227, 6, 19, 0.01) 100%);
    border-bottom: 1px solid var(--border-gray);
}

.dealer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-red);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-red);
}

.dealer-badge i {
    font-size: 1rem;
}

.dealer-card .card-body {
    padding: 1.5rem;
}

.dealer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dealer-description {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== BRAND STRIP ========== */
.brand-strip {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.strip-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-item {
    position: relative;
    transition: all var(--transition-normal);
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
}

.brand-item strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    display: block;
}

.brand-item:hover {
    background: rgba(227, 6, 19, 0.05);
    border-color: var(--hope-red);
    transform: scale(1.05);
}

.brand-item:hover strong {
    color: var(--hope-red);
}

/* ========== PRODUCT CARDS ========== */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-description {
    font-family: var(--font-body);
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
    font-size: 0.95rem;
}

.product-features {
    list-style: none;
    margin: 1rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-gray);
}

.product-features li i {
    color: var(--hope-red);
    font-size: 0.9rem;
}

.card-footer {
    padding: 1rem 0 0;
    border-top: 1px solid var(--border-gray);
    margin-top: auto;
}

/* ========== SECTIONS ========== */
.products-section {
    background: var(--light-gray);
    position: relative;
}

.brands-section {
    background: white;
    position: relative;
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
    border: 2px solid white;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-red);
    z-index: 900;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    border: 2px solid white;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--light-gray);
    border-top: 3px solid var(--hope-red);
    position: relative;
}

.footer-top {
    padding: 3rem 0 2rem;
    background: white;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-column h3,
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hope-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after,
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-family: var(--font-body);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a i {
    color: var(--hope-red);
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.footer-links a:hover {
    color: var(--hope-red);
    padding-left: 0.3rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--hope-red);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-red);
    color: white;
    border-color: var(--hope-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.footer-bottom {
    padding: 1.5rem 0;
    background: var(--light-gray);
    border-top: 1px solid var(--border-gray);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.footer-bottom-links a {
    font-family: var(--font-body);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--hope-red);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: var(--gradient-red);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.1) 15px, rgba(255, 255, 255, 0.1) 16px);
    animation: diagonalMove 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-actions .btn-secondary {
    background: white;
    color: var(--hope-red);
    border-color: white;
}

.cta-actions .btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* ========== FORM COMPONENTS ========== */
.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--hope-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-control.error {
    border-color: #ff4444;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 992px) {
    .dealer-cards {
        flex-direction: column;
    }
    
    .dealer-card {
        max-width: 100%;
    }
    
    .brand-logos {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .whatsapp-float,
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
    }
    
    .back-to-top {
        left: 1rem;
        bottom: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column h3::after {
        left: 0;
        transform: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .brand-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-item strong {
        font-size: 1rem;
    }
    
    .product-features li {
        font-size: 0.85rem;
    }
}