/* =========================================================
   CROWN THEORY
   Customer Support Page
   ========================================================= */


/* =========================================================
   1. SUPPORT HERO
   ========================================================= */

.support-hero {
    padding: 72px 0 80px;

    background-color: #F7F4EB;

    border-bottom: 1px solid #DDD6C8;

    text-align: center;
}

.support-hero-content {
    max-width: 820px;
}

.support-hero h1 {
    margin-bottom: 22px;

    color: #3D2314;

    font-size: 56px;
    line-height: 1.1;
}

.support-hero p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: #6C625B;

    font-size: 17px;
    line-height: 1.75;
}

.support-hero-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 24px;
}


/* =========================================================
   2. QUICK HELP SECTION
   ========================================================= */

.support-quick-section {
    padding: 48px 0;

    background-color: #E7ECE3;
}

.support-quick-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.support-quick-card {
    padding: 26px;

    background-color: #F7F4EB;

    border: 1px solid #CAD4C5;
    border-radius: 16px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.support-quick-card:hover {
    transform: translateY(-4px);

    background-color: #FFFFFF;

    border-color: #6B7F63;
}

.support-card-number {
    display: block;

    margin-bottom: 24px;

    color: #D9A05B;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.support-quick-card h2 {
    margin-bottom: 10px;

    color: #3D2314;

    font-size: 23px;
}

.support-quick-card p {
    margin-bottom: 18px;

    color: #6C625B;

    font-size: 13px;
    line-height: 1.6;
}

.support-card-link {
    color: #6B7F63;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   3. SUPPORT INFO SECTION
   ========================================================= */

.support-info-section {
    padding: 96px 0;

    background-color: #FCFAF5;
}

.support-info-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 72px;

    align-items: start;
}

.support-info-content {
    max-width: 520px;
}

.support-info-content h2 {
    margin-bottom: 20px;

    color: #3D2314;

    font-size: 43px;
}

.support-info-content p {
    color: #6C625B;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   4. SUPPORT INFO LIST
   ========================================================= */

.support-info-list {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.support-info-item {
    padding: 20px;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    background-color: #F7F4EB;

    border: 1px solid #DDD6C8;
    border-radius: 14px;
}

.support-info-item > span {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #6B7F63;

    color: #FFFFFF;

    border-radius: 50%;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.support-info-item h3 {
    margin-bottom: 5px;

    color: #3D2314;

    font-size: 20px;
}

.support-info-item p {
    color: #6C625B;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   5. CONTACT SUPPORT
   ========================================================= */

.contact-support-section {
    padding: 96px 0;

    background-color: #E7ECE3;

    scroll-margin-top: 100px;
}

.contact-support-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 72px;

    align-items: start;
}

.contact-support-content {
    max-width: 500px;
}

.contact-support-content h2 {
    margin-bottom: 20px;

    color: #3D2314;

    font-size: 43px;
}

.contact-support-content > p {
    margin-bottom: 28px;

    color: #5F665A;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   6. RESPONSE BOX
   ========================================================= */

.support-response-box {
    margin-bottom: 16px;

    padding: 22px;

    background-color: #F7F4EB;

    border: 1px solid #CAD4C5;
    border-radius: 14px;
}

.support-response-box strong {
    display: block;

    margin-bottom: 7px;

    color: #3D2314;

    font-size: 14px;
}

.support-response-box p {
    color: #6C625B;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   7. SUPPORT HOURS
   ========================================================= */

.support-hours {
    padding: 22px;

    background-color: #3D2314;

    border-radius: 14px;
}

.support-hours strong {
    display: block;

    margin-bottom: 10px;

    color: #D9A05B;

    font-size: 14px;
}

.support-hours p {
    margin-bottom: 4px;

    color: #F7F4EB;

    font-size: 13px;
}


/* =========================================================
   8. SUPPORT FORM CARD
   ========================================================= */

.support-form-card {
    padding: 36px;

    background-color: #FFFFFF;

    border: 1px solid #CDD5C8;
    border-radius: 20px;
}

.support-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

.support-form-group {
    margin-bottom: 20px;
}

.support-form-group label {
    display: block;

    margin-bottom: 8px;

    color: #3D2314;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.support-optional {
    margin-left: 5px;

    color: #8A817A;

    font-size: 11px;
    font-weight: 400;
}


/* =========================================================
   9. SUPPORT INPUTS
   ========================================================= */

.support-form-group input,
.support-form-group select,
.support-form-group textarea {
    width: 100%;

    padding: 12px 14px;

    background-color: #F7F4EB;

    color: #3D2314;

    border: 1px solid #DDD6C8;
    border-radius: 10px;

    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.support-form-group input,
.support-form-group select {
    min-height: 50px;
}

.support-form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.support-form-group input:hover,
.support-form-group select:hover,
.support-form-group textarea:hover {
    border-color: #6B7F63;
}

.support-form-group input:focus,
.support-form-group select:focus,
.support-form-group textarea:focus {
    background-color: #FFFFFF;

    border-color: #6B7F63;

    outline: 3px solid rgba(217, 160, 91, 0.35);
    outline-offset: 2px;
}


/* =========================================================
   10. SUPPORT AGREEMENT
   ========================================================= */

.support-agreement {
    margin-bottom: 24px;

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #6C625B;

    font-size: 12px;
    line-height: 1.5;

    cursor: pointer;
}

.support-agreement input {
    width: 17px;
    height: 17px;

    margin-top: 2px;

    flex-shrink: 0;

    accent-color: #6B7F63;
}


/* =========================================================
   11. SUPPORT SUBMIT
   ========================================================= */

.support-submit-button {
    width: 100%;

    min-height: 52px;
}

.support-form-message {
    min-height: 20px;

    margin-top: 14px;

    color: #3D2314;

    font-size: 13px;
    font-weight: 600;

    text-align: center;
}


/* =========================================================
   12. FAQ SECTION
   ========================================================= */

.support-faq-section {
    padding: 96px 0;

    background-color: #FCFAF5;
}

.support-faq-layout {
    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 72px;

    align-items: start;
}

.support-faq-heading {
    max-width: 430px;
}

.support-faq-heading h2 {
    margin-bottom: 16px;

    color: #3D2314;

    font-size: 38px;
}

.support-faq-heading p {
    margin-bottom: 24px;

    color: #6C625B;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   13. FAQ ACCORDION
   ========================================================= */

.support-faq-list {
    border-top: 1px solid #DDD6C8;
}

.support-faq-item {
    border-bottom: 1px solid #DDD6C8;
}

.support-faq-item summary {
    position: relative;

    padding: 22px 50px 22px 4px;

    color: #3D2314;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    list-style: none;
}

.support-faq-item summary::-webkit-details-marker {
    display: none;
}

.support-faq-item summary::after {
    content: "+";

    position: absolute;

    top: 50%;
    right: 6px;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #E7ECE3;

    color: #3D2314;

    border-radius: 50%;

    font-size: 19px;

    transform: translateY(-50%);
}

.support-faq-item[open] summary::after {
    content: "−";

    background-color: #6B7F63;

    color: #FFFFFF;
}

.support-faq-item > div {
    padding: 0 50px 22px 4px;
}

.support-faq-item p {
    margin-bottom: 12px;

    color: #6C625B;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   14. SELF SERVICE
   ========================================================= */

.self-service-section {
    padding: 96px 0;

    background-color: #F7F4EB;
}

.support-section-heading {
    max-width: 700px;

    margin-bottom: 48px;
}

.support-section-heading h2 {
    color: #3D2314;

    font-size: 44px;
}

.self-service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.self-service-card {
    padding: 28px;

    background-color: #FFFFFF;

    border: 1px solid #DDD6C8;
    border-radius: 16px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.self-service-card:hover {
    transform: translateY(-4px);

    border-color: #6B7F63;
}

.self-service-card > span {
    display: block;

    margin-bottom: 20px;

    color: #D9A05B;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}

.self-service-card strong {
    display: block;

    margin-bottom: 10px;

    color: #3D2314;

    font-size: 19px;
}

.self-service-card p {
    color: #6C625B;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   15. FINAL SUPPORT CTA
   ========================================================= */

.support-final-section {
    padding: 88px 0;

    background-color: #3D2314;

    text-align: center;
}

.support-final-content {
    max-width: 760px;
}

.support-final-section .eyebrow {
    color: #D9A05B;
}

.support-final-section h2 {
    margin-bottom: 18px;

    color: #F7F4EB;

    font-size: 46px;
}

.support-final-section p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: #D8CCC3;

    font-size: 16px;
    line-height: 1.7;
}

.support-final-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 24px;
}

.support-light-link {
    padding-bottom: 4px;

    color: #F7F4EB;

    border-bottom: 2px solid #D9A05B;

    font-family: "DM Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.support-light-link:hover {
    color: #D9A05B;
}


/* =========================================================
   16. TABLET
   ========================================================= */

@media screen and (max-width: 1100px) {

    .support-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-info-grid,
    .contact-support-grid {
        gap: 40px;
    }

    .self-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   17. SMALL TABLET
   ========================================================= */

@media screen and (max-width: 850px) {

    .support-info-grid,
    .contact-support-grid,
    .support-faq-layout {
        grid-template-columns: 1fr;
    }

    .support-info-content,
    .contact-support-content,
    .support-faq-heading {
        max-width: 100%;
    }

    .support-faq-layout {
        gap: 40px;
    }

}


/* =========================================================
   18. MOBILE
   ========================================================= */

@media screen and (max-width: 650px) {

    .support-hero {
        padding: 48px 0 56px;
    }

    .support-hero h1 {
        font-size: 39px;
    }

    .support-hero p {
        font-size: 15px;
    }

    .support-hero-actions {
        flex-direction: column;

        gap: 18px;
    }

    .support-quick-grid {
        grid-template-columns: 1fr;
    }

    .support-info-section,
    .contact-support-section,
    .support-faq-section,
    .self-service-section {
        padding: 72px 0;
    }

    .support-info-content h2,
    .contact-support-content h2,
    .support-section-heading h2 {
        font-size: 35px;
    }

    .support-form-card {
        padding: 26px;
    }

    .support-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .support-faq-heading h2 {
        font-size: 32px;
    }

    .self-service-grid {
        grid-template-columns: 1fr;
    }

    .support-final-section {
        padding: 64px 0;
    }

    .support-final-section h2 {
        font-size: 36px;
    }

    .support-final-actions {
        flex-direction: column;
    }

}


/* =========================================================
   19. SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 420px) {

    .support-hero h1 {
        font-size: 34px;
    }

    .support-quick-card,
    .self-service-card {
        padding: 22px;
    }

    .support-info-item {
        gap: 14px;
    }

    .support-form-card {
        padding: 22px 18px;
    }

    .support-faq-item summary {
        padding-right: 44px;

        font-size: 14px;
    }

    .support-faq-item > div {
        padding-right: 12px;
    }

    .support-final-section h2 {
        font-size: 32px;
    }

}