/* =============================================
   CONTACT HERO
============================================= */
#hero {
    background: #F8F9FA;
    padding: 60px 0 40px;
}
.hero-content {
    text-align: center;
}
.hero-sub {
    margin: 16px auto 0;
    font-size: 16px;
    color: #6B7280;
    max-width: 600px;
}

/* =============================================
   CONTACT METHODS & FORM
============================================= */
#contact-section {
    background: #FFFFFF;
    padding: 80px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: start;
}

/* Left Column */
.contact-methods {
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.contact-icon {
    color: #2ECC71;
    margin-bottom: 16px;
    width: 32px;
    height: 32px;
}
.contact-block h4 {
    margin-bottom: 8px;
}
.contact-block p {
    margin-bottom: 4px;
    font-size: 16px;
    color: #6B7280;
}
.contact-block .subtext {
    font-size: 14px;
    color: #9CA3AF;
}

/* Right Column - Form */
.contact-form-card {
    padding: 32px;
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    color: #374151;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.2s;
}
.form-select option {
    background-color: #ffffff;
    color: #374151;
}
.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #2ECC71;
}
.form-input::placeholder, .form-textarea::placeholder {
    color: #9CA3AF;
}
.form-textarea {
    resize: vertical;
}
.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
    border-color: #EF4444;
}
.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
.success-msg {
    color: #2ECC71;
    text-align: center;
    font-size: 16px;
    margin-top: 24px;
    font-weight: 500;
}

/* =============================================
   FAQ ACCORDION
============================================= */
#faq-section {
    background: #F8F9FA;
    padding: 80px 0;
}
.faq-container {
    max-width: 760px;
    margin: 48px auto 0;
}
.faq-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 16px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}
.faq-chevron {
    color: #9CA3AF;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-question.active .faq-chevron {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
    border-top: 1px solid #E5E7EB;
    padding-top: 20px;
    padding-bottom: 24px;
}

/* =============================================
   FINAL CTA BANNER
============================================= */
#cta-banner {
    background: #2D3436;
    padding: 80px 0;
    text-align: center;
}
#cta-banner h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 16px;
}
#cta-banner p {
    font-size: 16px;
    color: #D1D5DB;
    max-width: 520px;
    margin: 0 auto 32px;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    .contact-methods {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .contact-form-card { padding: 24px; }
}
