/* =============================================
   CONTACT PAGE - CLEAN LIGHT STYLES
   Stone palette matching V4 visual identity
   ============================================= */

/* ---- Page Header ---- */
.contact-header {
    padding: 12rem 4% 4rem;
    text-align: center;
    background: var(--stone-50);
}

.contact-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--stone-800);
    margin-bottom: 1.25rem;
}

.contact-header p {
    font-size: 1.15rem;
    color: var(--stone-600);
    font-weight: 300;
    line-height: 1.7;
}

/* ---- Become a Customer CTA ---- */
.page-contact-clean .contact-customer-cta {
    padding: 2rem 4% 4rem;
    background: var(--stone-50);
}

.contact-customer-inner {
    max-width: 700px;
    margin: 0 auto;
}

.page-contact-clean .contact-customer-card {
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.page-contact-clean .contact-customer-icon {
    color: var(--eg-green);
    margin-bottom: 1.5rem;
}

.page-contact-clean .contact-customer-card h2 {
    font-size: 1.8rem;
    color: var(--stone-800);
    margin-bottom: 0.75rem;
}

.page-contact-clean .contact-customer-card p {
    color: var(--stone-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact-clean .contact-customer-btn {
    display: inline-block;
    background: var(--eg-green);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.page-contact-clean .contact-customer-btn:hover {
    background: var(--stone-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ---- General Contact Form ---- */
.page-contact-clean .contact-form-section {
    padding: 6rem 4%;
    background: white;
}

.contact-form-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-contact-clean .contact-form-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--stone-800);
    margin-bottom: 0.75rem;
}

.page-contact-clean .contact-form-header p {
    color: var(--stone-500);
    line-height: 1.7;
}

/* Fluent Forms overrides — light theme */
.page-contact-clean .fluentform .ff-el-input--label label {
    color: var(--stone-700) !important;
}

.page-contact-clean .fluentform input[type="text"],
.page-contact-clean .fluentform input[type="email"],
.page-contact-clean .fluentform input[type="tel"],
.page-contact-clean .fluentform textarea,
.page-contact-clean .fluentform select {
    background: var(--stone-50) !important;
    border: 1px solid var(--stone-200) !important;
    color: var(--stone-800) !important;
    border-radius: 12px !important;
    padding: 0.85rem 1rem !important;
}

.page-contact-clean .fluentform input:focus,
.page-contact-clean .fluentform textarea:focus,
.page-contact-clean .fluentform select:focus {
    border-color: var(--eg-green) !important;
    box-shadow: 0 0 0 3px rgba(104, 179, 64, 0.15) !important;
}

.page-contact-clean .fluentform input::placeholder,
.page-contact-clean .fluentform textarea::placeholder {
    color: var(--stone-400) !important;
}

.page-contact-clean .fluentform .ff-btn-submit {
    background: var(--eg-green) !important;
    color: white !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 0.9rem 2.5rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.page-contact-clean .fluentform .ff-btn-submit:hover {
    background: var(--stone-800) !important;
    transform: translateY(-1px);
}

/* ---- Contact Info ---- */
.page-contact-clean .contact-info {
    padding: 3rem 4%;
    background: var(--stone-50);
    border-top: 1px solid var(--stone-200);
}

.contact-info-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-contact-clean .contact-info-item i,
.page-contact-clean .contact-info-item svg {
    color: var(--eg-green);
}

.page-contact-clean .contact-info-item span {
    color: var(--stone-600);
    font-size: 0.95rem;
}

/* ---- Nav Overrides — no dark hero on contact page ---- */
body.page-contact-clean nav:not(.scrolled) .nav-links-list a {
    color: var(--stone-600);
}

body.page-contact-clean nav:not(.scrolled) .nav-cta {
    background: var(--stone-950);
    color: var(--stone-50);
    border: none;
    backdrop-filter: none;
}

body.page-contact-clean nav:not(.scrolled) .nav-logo .logo-hero {
    display: none;
}

body.page-contact-clean nav:not(.scrolled) .nav-logo .logo-scrolled {
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .contact-header {
        padding: 10rem 4% 3rem;
    }

    .page-contact-clean .contact-customer-card {
        padding: 2rem;
    }

    .contact-info-inner {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Fluent Forms welcome screen / section break — de-emphasize */
.page-contact-clean .fluentform .ff-el-section-break {
    margin-bottom: 1rem !important;
}

.page-contact-clean .fluentform .ff-el-section-title {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    color: var(--stone-400) !important;
    margin-bottom: 0.25rem !important;
}

.page-contact-clean .fluentform .ff-section_break_desk {
    font-size: 0.8rem !important;
    color: var(--stone-400) !important;
    line-height: 1.5 !important;
}

/* Info tooltip icons — green to match theme */
.page-contact-clean .fluentform .ff-el-tooltip {
    color: var(--eg-green) !important;
}

.page-contact-clean .fluentform .ff-el-tooltip svg,
.page-contact-clean .fluentform .ff-el-tooltip i,
.page-contact-clean .fluentform .ff-el-tooltip .ff-icon {
    color: var(--eg-green) !important;
    fill: var(--eg-green) !important;
}
