/* ========================================
   CONTACT PAGE STYLES
   Following CreatorFlow Brand Guidelines
   - #000000 for dark backgrounds
   - #d1fe17 for lime green accents
   - No box-shadows
   - Mobile-first responsive design
   ======================================== */

/* =========================
   HERO SECTION
   ========================= */
.contact-hero {
    padding: 8rem 1.5rem 4rem;
    background: #ffffff;
    text-align: center;
}

.contact-hero__tagline {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    background: #d1fe17;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-hero__headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-hero__subheadline {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   CONTACT OPTIONS SECTION
   ========================= */
.contact-options {
    padding: 4rem 1.5rem;
    background: #f9fafb;
}

.contact-options__headline {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.contact-options__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-option-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.contact-option-card:hover {
    border-color: #d1fe17;
}

.contact-option-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-option-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.contact-option-card__description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.contact-option-card__email {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border: 2px solid #000000;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.contact-option-card__email:hover {
    background: #d1fe17;
    border-color: #d1fe17;
    color: #000000;
}

/* =========================
   CONTACT FORM SECTION
   ========================= */
.contact-form-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.contact-form__headline {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-form__subheadline {
    font-size: 1.0625rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: 'Stack Sans Headline', sans-serif;
    color: #111827;
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #000000;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-privacy {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.form-privacy a {
    color: #000000;
    text-decoration: underline;
}

.form-privacy a:hover {
    color: #d1fe17;
}

.contact-form .btn-primary {
    width: 100%;
}

/* =========================
   RESPONSE TIME SECTION
   ========================= */
.contact-response-time {
    padding: 4rem 1.5rem;
    background: #f9fafb;
}

.contact-response-time__headline {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.contact-response-time__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-response-item {
    text-align: center;
}

.contact-response-item__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-response-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-response-item__description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
}

/* =========================
   BUSINESS INFO SECTION (GDPR)
   ========================= */
.contact-business-info {
    padding: 4rem 1.5rem;
    background: #ffffff;
    border-top: 2px solid #e5e7eb;
}

.contact-business-info__headline {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.business-info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.business-info-main {
    margin-bottom: 2rem;
}

.business-info__company-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.business-info__address,
.business-info__registration {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.business-info__emails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.business-info__email-item {
    font-size: 0.9375rem;
    color: #374151;
}

.business-info__email-label {
    font-weight: 600;
    color: #111827;
}

.business-info__email-link {
    color: #000000;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.business-info__email-link:hover {
    color: #d1fe17;
}

.business-info__disclaimer {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 2rem auto 1.5rem;
    max-width: 600px;
    line-height: 1.5;
}

.business-info__legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.business-info__legal-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.business-info__legal-link:hover {
    color: #d1fe17;
}

/* =========================
   FAQ SECTION
   ========================= */
.contact-faq {
    padding: 4rem 1.5rem 5rem;
    background: #f9fafb;
}

.contact-faq__headline {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.contact-faq__accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-faq__item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: border-color 0.2s ease;
}

.contact-faq__item[open] {
    border-color: #d1fe17;
}

.contact-faq__question {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.contact-faq__question::-webkit-details-marker {
    display: none;
}

.contact-faq__icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #6b7280;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.contact-faq__item[open] .contact-faq__icon {
    transform: rotate(45deg);
}

.contact-faq__answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.contact-faq__answer p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 640px) {
    .contact-hero {
        padding: 6rem 1rem 3rem;
    }

    .contact-options,
    .contact-form-section,
    .contact-response-time,
    .contact-business-info,
    .contact-faq {
        padding: 3rem 1rem;
    }

    .contact-options__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-response-time__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .business-info__emails {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-option-card {
        padding: 1.5rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
}

@media (max-width: 480px) {
    .contact-hero__headline {
        font-size: 2rem;
    }

    .contact-options__headline,
    .contact-form__headline,
    .contact-response-time__headline,
    .contact-business-info__headline,
    .contact-faq__headline {
        font-size: 1.75rem;
    }
}

