/* 
   Contact Section Styles 
   Prefix: .ffa- 
   Isolated styles, no global resets.
*/

.ffa-contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-image: linear-gradient(rgba(29, 32, 31, 0.85), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1535379453347-1ffd615e2e08?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    font-family: 'Manrope', sans-serif;
    /* Assuming Manrope is available globally or linked */
    box-sizing: border-box;
}

.ffa-contact-card {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Left Info Panel (Yellow) */
.ffa-info-panel {
    flex: 0 0 35%;
    background-color: #fdd835;
    /* Yellow */
    padding: 60px 40px;
    color: #052e16;
    /* Dark Green text */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ffa-info-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 40px;
}

.ffa-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.ffa-info-icon {
    width: 40px;
    height: 40px;
    background-color: #052e16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdd835;
    font-size: 18px;
    flex-shrink: 0;
}

.ffa-info-content h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
}

.ffa-info-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.ffa-info-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

/* Right Form Panel (White) */
.ffa-form-panel {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.ffa-form-intro {
    margin-bottom: 30px;
}

.ffa-form-intro h3 {
    font-size: 18px;
    font-weight: 700;
    color: #052e16;
    margin: 0 0 10px;
    line-height: 1.5;
}

.ffa-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ffa-form-group {
    display: flex;
    flex-direction: column;
}

.ffa-input,
.ffa-select,
.ffa-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.ffa-input:focus,
.ffa-select:focus,
.ffa-textarea:focus {
    outline: none;
    border-color: #1f7a4b;
    /* Green focus */
}

.ffa-input::placeholder,
.ffa-textarea::placeholder {
    color: #999;
}

.ffa-textarea {
    resize: vertical;
    min-height: 120px;
}

.ffa-full-width {
    grid-column: 1 / -1;
}

.ffa-submit-btn {
    background-color: #1f7a4b;
    /* Green CTA */
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ffa-submit-btn:hover {
    background-color: #145233;
}

/* Responsive Breakpoints */
@media (max-width: 880px) {
    .ffa-contact-card {
        flex-direction: column;
        max-width: 600px;
    }

    .ffa-info-panel {
        padding: 40px;
    }

    .ffa-form-panel {
        padding: 40px;
    }
}

@media (max-width: 420px) {
    .ffa-contact-section {
        padding: 20px 10px;
    }

    .ffa-form-grid {
        grid-template-columns: 1fr;
        /* Stack inputs */
    }

    .ffa-info-panel,
    .ffa-form-panel {
        padding: 30px 20px;
    }

    .ffa-info-title {
        font-size: 24px;
    }
}