/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-page {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ==========================================================================
   1. HERO HEADER (Matches Home Page)
   ========================================================================== */

.contact-page__hero-section {
    position: relative;
    overflow: hidden;
}

/* Reusable Calm Teal radial glow */
.contact-page__hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(31, 138, 112, 0.20) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact-page__hero {
    position: relative;
    z-index: 1; /* Keeps content above the glow */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
}

.contact-page__hero-badge {
    margin-top: 32px;
    margin-bottom: 24px;
}

/* Enlarged White Title with Teal Emphasis */
.contact-page__hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 24px 0;
    line-height: 1.15;
    letter-spacing: -1px;
}

.contact-page__hero-title em {
    font-style: normal;
    color: var(--color-calm-teal); 
}

/* Lightened, readable subtitle */
.contact-page__hero-subtitle {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 18px;
    color: #E2E8F0; 
    margin: 0;
    line-height: 1.6;
    max-width: 680px;
}

/* ==========================================================================
   2. FORM PANEL
   ========================================================================== */

.contact-page__form-panel {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(11, 60, 93, 0.08);
    border: 1px solid var(--color-soft-grey);
}

.contact-page__form-section {
    margin-bottom: 40px;
}

.contact-page__form-section:last-child {
    margin-bottom: 0;
}

.contact-page__form-section-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-trust-blue);
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-off-white);
}

.contact-page__field-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .contact-page__field-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-page__submit-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.contact-page__submit-btn {
    width: 100%;
}
@media (min-width: 640px) {
    .contact-page__submit-btn {
        width: auto;
    }
}

.contact-page__submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-page__submit-note {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    color: var(--color-charcoal);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   3. SIDEBAR (What Happens Next / Trust)
   ========================================================================== */

.contact-page__sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-page__sidebar-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(11, 60, 93, 0.05);
    border: 1px solid var(--color-soft-grey);
}

.contact-page__sidebar-card-title,
.contact-page__sidebar-trust-heading {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-trust-blue);
    margin: 0 0 24px 0;
}

.contact-page__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-page__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-page__step-num {
    background-color: var(--color-calm-teal);
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-page__step-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-page__step-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 16px;
}

.contact-page__step-desc {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    color: var(--color-soft-grey);
    line-height: 1.5;
}

.contact-page__trust-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-page__trust-item {
    display: flex;
    align-items: center;
}

.contact-page__trust-text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 500;
    color: #2E8540; /* Positive Green left as hex since it's a specific semantic state */
    font-size: 15px;
}

.contact-page__sidebar-disclaimer {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 13px;
    color: var(--color-soft-grey);
    line-height: 1.6;
    padding: 0;
}

/* ==========================================================================
   4. RESPONSIVE SCALING
   ========================================================================== */

@media screen and (max-width: 1023px) {
    .contact-page__hero-title {
        font-size: 44px;
    }
}

@media screen and (max-width: 639px) {
    .contact-page__hero-title {
        font-size: 36px;
    }
    
    .contact-page__hero-subtitle {
        font-size: 16px;
    }

    .contact-page__form-panel,
    .contact-page__sidebar-card {
        padding: 24px;
    }
}