/* CONTACT SECTION */
.contact-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-xl) 0 0 0; /* Remove bottom margin */
}

.contact-content {
    max-width: min(600px, 92%); /* Keep 600px but limit to 92% of viewport */
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 400; /* Removed bold */
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-content p {
    font-size: var(--font-size-body);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    background: var(--bg-color);
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(173, 65, 16, 0.1);
}

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

.contact-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    font-size: var(--font-size-body);
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: center;
    min-width: 200px;
}

.contact-form button:hover {
    background: #8a2e0a;
    transform: translateY(-2px);
}

.contact-form button:active {
    transform: translateY(0);
}

/* Checkbox group */
.checkbox-group {
    text-align: left;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
    min-width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-color);
    flex-shrink: 0;
}

.checkbox-text {
    flex: 1;
    color: var(--text-light);
}

.checkbox-text a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: #8a2e0a;
}

.checkbox-label input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        gap: var(--spacing-sm);
    }
}
