* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bg-light);
    color: var(--black-color);
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body {
    background-color: #f9f9f9;
    color: #333;
}

/* Contact Page Styles */
#contact-hero {
    background: linear-gradient(rgba(211, 47, 47, 0.8), rgba(211, 47, 47, 0.8)), url('../images/services/homepagestreetwear.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: white;
}
.contact-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.contact-hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}
#contact-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info {
    background: #F8D7DA;
    padding: 40px;
    border-radius: 12px;
}
.contact-info h2 {
    color: #D32F2F;
    margin-bottom: 30px;
    font-size: 28px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.info-icon {
    width: 50px;
    height: 50px;
    background: #D32F2F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}
.info-content h3 {
    color: #222;
    margin-bottom: 5px;
}
.info-content p {
    color: #465b52;
}
.business-hours {
    margin-top: 30px;
}
.hours-list {
    list-style: none;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-form-container h2 {
    color: #D32F2F;
    margin-bottom: 30px;
    font-size: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #222;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #D32F2F;
    outline: none;
}
.form-group textarea {
    height: 120px;
    resize: vertical;
}
.submit-btn {
    background: #D32F2F;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}
.submit-btn:hover {
    background: #9A0007;
}
.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.map-container {
    margin-top: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-hero-content h1 {
        font-size: 36px;
    }
}
@media (max-width: 768px) {

    .contact-info, .contact-form-container {
        padding: 30px;
    }
}
@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 28px;
    }
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}