/* ==========================================================================
   Technical Support / Warranty Page Styles (support2.css)
   ========================================================================== */

.support-doc-section {
    background-color: #f7f9fa;
    padding: 45px 0 70px;
    /* min-height: calc(100vh - 120px); */
    width: 100%;
}

.support-doc-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 12px;
    box-sizing: border-box;
}

.support-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 28px 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.support-intro-text {
    margin-bottom: 35px;
}

.support-intro-text p {
    font-size: 15.5px;
    color: #444444;
    line-height: 1.8;
    margin: 0;
}

.support-intro-text a {
    color: #0070e0;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.support-intro-text a:hover {
    color: #0056b3;
}

.support-section-block {
    margin-bottom: 35px;
}

.support-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 12px 0;
    line-height: 1.35;
}

.support-section-text {
    font-size: 15.5px;
    color: #444444;
    line-height: 1.8;
    margin: 0;
}

.support-numbered-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    counter-reset: support-counter;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-numbered-list li {
    font-size: 15.5px;
    color: #444444;
    line-height: 1.8;
    position: relative;
    padding-left: 24px;
    counter-increment: support-counter;
}

.support-numbered-list li::before {
    content: counter(support-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #444444;
    font-weight: 500;
}

/* ==========================================================================
   Service Form Card Styles
   ========================================================================== */
.service-form-card {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 45px 50px 55px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    border: 1px solid #ebebeb;
    margin-top: 60px;
}

.service-form-title {
    font-size: 26px;
    font-weight: 700;
    color: #0070ba;
    margin: 0 0 35px 0;
    line-height: 1.25;
}

.service-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
}

.service-form-group {
    display: flex;
    flex-direction: column;
}

.service-form-group-full {
    grid-column: 1 / -1;
}

.service-form-label {
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 8px;
    display: block;
}

.required-star {
    color: #0070ba;
    margin-left: 2px;
    font-weight: 700;
}

.service-form-input,
.service-form-textarea {
    width: 100%;
    background-color: #f7f7f7;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    padding: 12px 14px;
    font-size: 14.5px;
    color: #333333;
    box-sizing: border-box;
    transition: all 0.2s ease;
    font-family: inherit;
}

.service-form-input {
    height: 46px;
}

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

.service-form-input:focus,
.service-form-textarea:focus {
    background-color: #ffffff;
    border-color: #0070ba;
    box-shadow: 0 0 0 3px rgba(0, 112, 186, 0.12);
    outline: none;
}

.service-form-action {
    margin-top: 25px;
}

.service-form-submit-btn {
    background-color: #0070ba;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.service-form-submit-btn:hover {
    background-color: #005a96;
    box-shadow: 0 4px 12px rgba(0, 112, 186, 0.3);
}

/* Captcha Styles */
.newsletter-captcha-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-captcha-input {
    width: 140px !important;
}

.newsletter-captcha-code {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    padding: 0 15px;
    font-weight: bold;
    letter-spacing: 5px;
    font-size: 18px;
    color: #374151;
    min-width: 100px;
    height: 46px;
    border-radius: 3px;
    user-select: none;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .support-doc-section {
        padding: 40px 0 70px;
    }

    .support-main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .support-section-title {
        font-size: 18px;
    }

    .support-intro-text p,
    .support-section-text,
    .support-numbered-list li {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .service-form-card {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .service-form-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .service-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-form-group-full {
        grid-column: auto;
    }
}
