/* Contact Page Styles */
.contact-page {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    font-family: 'DM Sans', sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info Section */
.contact-info {
    padding-right: 2rem;
}

.contact-info-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #ed2024;
    /* Red color from design */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ed2024;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: #ed2024;
    color: white;
}

.contact-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #595959;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-details p {
    margin: 0;
    font-size: 1.1rem;
    color: #222;
    font-weight: 700;
    line-height: 1.4;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #ed2024;
    color: white;
}

/* Contact Form Section */
.contact-form-container {
    background-color: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.form-intro {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
    /* Crucial for padding not adding to width */
}

.form-control:focus {
    outline: none;
    border-color: #0e8040;
    /* Green color from design */
}

.form-control::placeholder {
    color: #aaa;
}

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

.consent-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.form-check-input {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #ddd;
    flex-shrink: 0;
}

.submit-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #000;
}

.form-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.messages {
    margin-bottom: 1.5rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-page {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .contact-form-container h2 {
        font-size: 2rem;
    }
}