/* Contact Page Styles */
.contact-page {
    padding: 2rem 0 4rem;
    background-color: #f8fafc;
}

.page-header {
    background: linear-gradient(135deg, #0d5016 0%, #06300c 50%, #0a4012 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

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

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.contact-icon {
    font-size: 1.8rem;
    color: #0d5016;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #0d5016;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.text-link {
    color: #0d5016;
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    color: #64748b !important;
    margin-top: 0.5rem;
}

/* Contact Form Styles */
.contact-form-section {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.form-container h2 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #475569;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d5016;
    box-shadow: 0 0 0 3px rgba(13, 80, 22, 0.1);
}

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

.required {
    color: #ef4444;
}

.form-actions {
    margin-top: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #0d5016;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0a4012;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: #0d5016;
    margin-top: 0.25rem;
}

.faq-content h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-content p {
    color: #475569;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 3rem 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
