/* Test Ride Page Styles */

#test-ride {
    font-family: 'Poppins', sans-serif;
}

#test-ride .banner-test-ride {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#test-ride .content-area {
    background-color: #DC1F37;
    color: white;
    padding: 50px 0;
}

#test-ride h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#test-ride h2.text-center {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
}

#test-ride p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

#test-ride .form-container {
    background: white;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 25px;
}

#test-ride .form-container h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #DC1F37;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#test-ride .form-control {
    border-radius: 0;
    padding: 12px;
    height: auto;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 14px;
}

#test-ride textarea.form-control {
    resize: none;
    height: 100px;
}

#test-ride select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
}

#test-ride .btn-danger {
    background-color: #DC1F37;
    border-color: #DC1F37;
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    width: 100%;
}

#test-ride .btn-danger:hover {
    background-color: #b01a2c;
    border-color: #b01a2c;
}

#test-ride .form-check {
    margin-bottom: 15px;
}

#test-ride .form-check-label {
    font-size: 14px;
    margin-left: 5px;
}

#test-ride .store-locations {
    background-color: #f8f9fa;
    padding: 50px 0;
}

#test-ride .store-info {
    background: white;
    padding: 20px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#test-ride .store-info:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

#test-ride .store-info h3 {
    color: #DC1F37;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

#test-ride .store-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

#test-ride .store-info a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

#test-ride .store-info a:hover {
    color: #DC1F37;
}

#test-ride .fa-whatsapp {
    color: #25D366;
    margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    #test-ride .content-area {
        padding: 30px 0;
    }
    
    #test-ride h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    #test-ride p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    #test-ride h1 {
        font-size: 1.5rem;
    }
    
    #test-ride .form-container {
        padding: 15px;
        margin-top: 30px;
    }
    
    #test-ride .form-container h2 {
        font-size: 1.2rem;
    }
    
    #test-ride .store-info {
        margin-bottom: 15px;
    }
}
