/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 31, 96, 0.85), rgba(190, 11, 49, 0.85)),
                url('https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    margin-top: 160px;
    text-align: center;
    color: var(--white);
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);  /* Explicitly set color */
}

.contact-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    color: var(--white);  /* Explicitly set color */
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.info-card p {
    color: var(--text-color);
}

.info-card a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--secondary-color);
}

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-form .container {
    max-width: 800px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-form > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.smart-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(190, 11, 49, 0.1);
}

.form-group input:invalid,
.form-group select:invalid {
    border-color: #dc3545;
}

.form-group input:invalid:focus,
.form-group select:invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.smart-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
        margin-top: 120px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.25rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .smart-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .smart-form {
        padding: 1.5rem;
    }
} 