/* =========================================================
   GearChase Content Pages - Unified Stylesheet
   Professional, Clean Design for Help & Legal Pages
   ========================================================= */

/* =========================================================
   Color Palette (GearChase Brand)
   ========================================================= */
:root {
    --gc-primary: #2563eb;
    --gc-primary-dark: #1d4ed8;
    --gc-secondary: #10b981;
    --gc-text-dark: #0f172a;
    --gc-text-body: #334155;
    --gc-text-muted: #64748b;
    --gc-text-light: #94a3b8;
    --gc-border: #e2e8f0;
    --gc-border-light: #cbd5e1;
    --gc-bg-light: #f8fafc;
    --gc-bg-lighter: #f1f5f9;
    --gc-warning: #f97316;
    --gc-danger: #ef4444;
    --gc-success: #10b981;
}

/* =========================================================
   Page Wrappers & Layout
   ========================================================= */
.gc-page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.gc-page-wrapper-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* =========================================================
   Headers
   ========================================================= */
.gc-header {
    text-align: center;
    margin-bottom: 60px;
}

.gc-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gc-text-dark);
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.gc-subtitle {
    font-size: 1.25rem;
    color: var(--gc-text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* =========================================================
   Dividers
   ========================================================= */
.gc-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gc-border) 20%, var(--gc-border) 80%, transparent);
    margin: 60px 0;
}

.gc-divider-small {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gc-border) 20%, var(--gc-border) 80%, transparent);
    margin: 50px 0;
}

.gc-section-divider {
    height: 1px;
    background: var(--gc-border);
    margin: 40px 0;
}

/* =========================================================
   Sections
   ========================================================= */
.gc-section {
    margin-bottom: 60px;
}

.gc-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 30px 0;
    position: relative;
    padding-left: 24px;
}

.gc-title-accent {
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 32px;
    background: linear-gradient(to bottom, var(--gc-primary), var(--gc-secondary));
    border-radius: 4px;
}

.gc-section-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gc-text-body);
}

.gc-section-content p {
    margin: 0 0 24px 0;
}

/* =========================================================
   Info Cards
   ========================================================= */
.gc-info-card {
    background: linear-gradient(135deg, var(--gc-bg-light) 0%, var(--gc-bg-lighter) 100%);
    border: 1px solid var(--gc-border-light);
    border-left: 6px solid var(--gc-primary);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.gc-info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.gc-info-card-compact {
    background: linear-gradient(135deg, var(--gc-bg-light) 0%, var(--gc-bg-lighter) 100%);
    border: 1px solid var(--gc-border-light);
    border-radius: 12px;
    padding: 30px;
}

.gc-info-card-compact-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px 0;
}

/* =========================================================
   Lists
   ========================================================= */
.gc-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gc-info-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 20px;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #475569;
}

.gc-info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: var(--gc-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.gc-help-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gc-help-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.gc-help-list li:last-child {
    margin-bottom: 0;
}

.gc-help-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gc-help-list strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.gc-help-list p {
    font-size: 0.9375rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

/* =========================================================
   Notice & Alert Boxes
   ========================================================= */
.gc-info-note {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-left: 4px solid var(--gc-warning);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.gc-info-notice {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gc-notice-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--gc-primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.gc-note-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gc-notice-content {
    flex: 1;
}

.gc-notice-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 0 12px 0;
}

.gc-notice-content p {
    font-size: 1.0625rem;
    color: #1e40af;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.gc-note-content strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #9a3412;
    margin-bottom: 6px;
}

.gc-note-content p {
    font-size: 0.875rem;
    color: #7c2d12;
    margin: 0;
    line-height: 1.5;
}

/* =========================================================
   Buttons
   ========================================================= */
.gc-btn {
    display: inline-block;
    background-color: var(--gc-primary);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.gc-btn:hover {
    background-color: var(--gc-primary-dark);
    color: white;
    text-decoration: none;
}

.gc-btn-submit {
    background: linear-gradient(135deg, #3b82f6 0%, var(--gc-primary) 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.gc-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

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

/* =========================================================
   CTA Sections
   ========================================================= */
.gc-cta-box {
    padding: 40px;
    background: #eff6ff;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #bfdbfe;
}

.gc-cta-section {
    text-align: center;
    padding: 40px 24px;
    margin-top: 60px;
}

/* =========================================================
   Forms
   ========================================================= */
.gc-contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}

.gc-contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gc-contact-form-section {
    background: white;
    border: 1px solid var(--gc-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.gc-form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.gc-required {
    color: var(--gc-danger);
    margin-left: 2px;
}

.gc-form-input,
.gc-form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    color: #1e293b;
    background: white;
    border: 2px solid var(--gc-border);
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.gc-form-input:focus,
.gc-form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.gc-form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.gc-validation-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 4px;
}

.gc-privacy-consent {
    font-size: 0.75rem;
    color: var(--gc-text-light);
    text-align: center;
    margin-top: 16px;
}

.gc-privacy-consent a {
    color: var(--gc-text-muted);
    text-decoration: underline;
}

.gc-hp-field {
    display: none;
    visibility: hidden;
    opacity: 0;
}

/* =========================================================
   FAQ Components
   ========================================================= */
.gc-faq-category {
    margin-bottom: 40px;
}

.gc-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gc-secondary);
}

.gc-category-icon {
    font-size: 1.5rem;
}

.gc-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gc-faq-item {
    background: white;
    border: 1px solid var(--gc-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.gc-faq-item:hover {
    border-color: var(--gc-border-light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.gc-faq-item[open] {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.gc-faq-item-critical {
    border: 2px solid #fca5a5;
}

.gc-faq-item-critical:hover {
    border-color: var(--gc-danger);
}

.gc-faq-item-critical[open] {
    border-color: var(--gc-danger);
}

.gc-faq-item-critical .gc-faq-question {
    background: #fef2f2;
}

.gc-faq-item-critical .gc-question-text {
    color: #b91c1c;
}

.gc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    background: var(--gc-bg-light);
    transition: background 0.2s ease;
}

.gc-faq-question::-webkit-details-marker {
    display: none;
}

.gc-faq-question:hover {
    background: var(--gc-bg-lighter);
}

.gc-question-text {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    padding-right: 16px;
}

.gc-chevron {
    font-size: 1.5rem;
    color: var(--gc-text-light);
    transition: transform 0.3s ease;
}

.gc-faq-item[open] .gc-chevron {
    transform: rotate(180deg);
    color: #3b82f6;
}

.gc-faq-answer {
    padding: 24px;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gc-text-body);
    background: white;
    border-top: 1px solid var(--gc-border);
}

.gc-faq-answer p {
    margin-bottom: 16px;
}

.gc-faq-answer p:last-child {
    margin-bottom: 0;
}

.gc-faq-answer ul,
.gc-faq-answer ol {
    padding-left: 24px;
    margin: 16px 0;
}

.gc-faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.gc-inline-link {
    color: var(--gc-primary);
    text-decoration: underline;
    font-weight: 600;
}

.gc-inline-link:hover {
    color: var(--gc-primary-dark);
}

/* =========================================================
   Steps & Process Lists
   ========================================================= */
.gc-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gc-steps-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.gc-steps-list li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gc-primary), #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.gc-steps-list li strong {
    display: block;
    font-size: 1.125rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.gc-steps-list li p {
    color: var(--gc-text-body);
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   Numbered & Bullet Lists (Returns Page)
   ========================================================= */
.gc-numbered-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    counter-reset: gc-counter;
}

.gc-numbered-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    line-height: 1.7;
    counter-increment: gc-counter;
}

.gc-numbered-list li::before {
    content: counter(gc-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #1e293b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.gc-bullet-list {
    list-style: none;
    padding-left: 0;
}

.gc-bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.gc-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
    font-size: 1.2em;
}

/* =========================================================
   Sticky Navigation (Returns Page)
   ========================================================= */
.gc-sticky-nav {
    position: sticky;
    top: 0px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--gc-border);
    padding: 16px 0;
    margin-bottom: 40px;
    z-index: 900;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.gc-nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.gc-nav-link {
    padding: 8px 16px;
    color: var(--gc-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.2s ease;
    background-color: transparent;
}

.gc-nav-link:hover {
    color: var(--gc-text-dark);
    background: var(--gc-bg-lighter);
    text-decoration: none;
}

/* =========================================================
   Warning/Notice Boxes
   ========================================================= */
.gc-warning-notice {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 50px;
}

.gc-warning-notice-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 16px 0;
}

.gc-warning-notice p {
    font-size: 1.0625rem;
    color: #78350f;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

/* =========================================================
   Alert Boxes
   ========================================================= */
.gc-alert-box {
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid;
}

.gc-alert-critical {
    background: #fef2f2;
    border-left-color: #dc2626;
}

.gc-alert-critical .gc-alert-title {
    color: #991b1b;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.gc-alert-info {
    background: #f0f9ff;
    border-left-color: #0ea5e9;
}

.gc-alert-info .gc-alert-title {
    color: #075985;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

/* =========================================================
   Scroll Margin (for sticky nav)
   ========================================================= */
.gc-scroll-section {
    scroll-margin-top: 120px;
}

/* =========================================================
   Responsive Design
   ========================================================= */
@media (max-width: 900px) {
    .gc-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gc-contact-info-section {
        order: 2;
    }

    .gc-contact-form-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .gc-page-wrapper,
    .gc-page-wrapper-wide {
        padding: 40px 20px;
    }

    .gc-title {
        font-size: 2.25rem;
    }

    .gc-section-title {
        font-size: 1.6rem;
    }

    .gc-info-card {
        padding: 25px;
    }

    .gc-info-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gc-faq-question {
        padding: 16px 20px;
    }

    .gc-question-text {
        font-size: 1rem;
    }

    .gc-contact-form-section {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .gc-title {
        font-size: 1.875rem;
    }

    .gc-subtitle {
        font-size: 1.0625rem;
    }

    .gc-divider {
        margin: 40px 0;
    }
}
