/* =============================================
   CONTACT PAGE STYLES — contact.css
   ============================================= */

.contact-hero {
    background: linear-gradient(135deg, #25452c 0%, #1b3321 100%);
    padding: 50px 0;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b1f;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #5c6e5e;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid #eef2f6;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fcfdfe;
}

.form-control:focus {
    outline: none;
    border-color: #6db34d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(109, 179, 77, 0.1);
}

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

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.5);
    pointer-events: none;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #6db34d;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f0f7ee;
    color: #6db34d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b1f;
    margin-bottom: 5px;
}

.info-details p {
    font-size: 15px;
    color: #5c6e5e;
    line-height: 1.5;
}

/* Map Section */
.map-container {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: none;
}

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

@media (max-width: 768px) {
    .contact-hero { padding: 60px 20px; }
    .contact-hero h1 { font-size: 32px; }
    .contact-form-wrapper { padding: 30px 20px; }
}
