/* Vegas Auto Customz - Contact Form Styles and Functionality */

/* Contact Form Styles */
.contact-form {
    margin-top: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .error {
    border-color: #ff3333;
}

.contact-form .error-message {
    color: #ff3333;
    font-size: 0.85rem;
    margin-top: 5px;
}

.contact-form .success-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Business Hours */
.business-hours {
    margin-top: 30px;
}

.business-hours h4 {
    margin-bottom: 15px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 10px 0;
}

.hours-table td:last-child {
    text-align: right;
}

/* Map Container */
.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Info */
.contact-info-list {
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info-icon {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h5 {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form-container {
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}
