/* Container & Layout */
.support-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 0 40px;
    font-family: inherit;
}

.support-header {
    margin-bottom: 28px;
}

.support-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #21313c;
    margin: 0 0 6px 0;
}

.support-header p {
    color: #64707a;
    font-size: 14px;
    margin: 0;
}

/* Quick Contact Cards */
.support-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.support-card {
    background: #ffffff;
    border: 1px solid #e6ebef;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(48, 69, 119, 0.06);
}

.support-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eef3f6;
    color: #304577;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.support-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #21313c;
    margin: 0 0 4px 0;
}

.support-card p {
    font-size: 13px;
    color: #64707a;
    margin: 0 0 12px 0;
}

.support-card-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #304577;
    text-decoration: none;
}

.support-card-link:hover {
    text-decoration: underline;
}

.support-card-highlight {
    font-size: 13px;
    font-weight: 700;
    color: #1c8c5b;
    background: #e2f6ec;
    padding: 3px 10px;
    border-radius: 12px;
}

/* FAQs and Form 2-Column Section */
.support-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: start;
}

/* FAQs Section */
.support-faq-section h2,
.support-form-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: #21313c;
    margin: 0 0 16px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e6ebef;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.active {
    border-color: #304577;
}

.faq-question {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 14.5px;
    font-weight: 600;
    color: #21313c;
    cursor: pointer;
    gap: 12px;
}

.faq-question i {
    font-size: 12px;
    color: #8a97a1;
}

.faq-answer {
    padding: 0 16px 16px 16px;
    font-size: 13.5px;
    color: #51636f;
    line-height: 1.5;
    border-top: 1px solid #f0f4f7;
    padding-top: 12px;
}

/* Contact Form Section */
.support-form-section {
    background: #ffffff;
    border: 1px solid #e6ebef;
    border-radius: 14px;
    padding: 22px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #51636f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dfe6ea;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #304577;
    box-shadow: 0 0 0 3px rgba(48, 69, 119, 0.1);
}

.btn-submit {
    background: #304577;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #253760;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success State */
.support-success-box {
    text-align: center;
    padding: 30px 10px;
}

.support-success-box i {
    font-size: 42px;
    color: #1c8c5b;
    margin-bottom: 12px;
}

.support-success-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #21313c;
    margin: 0 0 6px 0;
}

.support-success-box p {
    font-size: 13.5px;
    color: #64707a;
    margin: 0 0 18px 0;
}

.btn-reset {
    background: #eef3f6;
    color: #304577;
    border: none;
    padding: 8px 18px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.btn-reset:hover {
    background: #e2eaf0;
}

/* Responsive Styles */
@media (max-width: 850px) {
    .support-content-grid {
        grid-template-columns: 1fr;
    }
}