/* policies.css - Styling for Support Center Pages */

body { background-color: #f8fafc; }

.policy-hero {
    position: relative;
    overflow: hidden;
}
.policy-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(253, 187, 45, 0.08) 0%, rgba(253, 187, 45, 0) 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.policy-sidebar {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.policy-link {
    display: block;
    padding: 12px 16px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s;
    margin-bottom: 4px;
}
.policy-link:hover {
    background: #f1f5f9;
    color: #0f172a;
}
.policy-link.active {
    background: rgba(253, 187, 45, 0.1);
    color: #0d2a5e;
    font-weight: 600;
    border-left: 3px solid #FDBB2D;
    border-radius: 0 8px 8px 0;
}

.policy-content {
    color: #334155;
    line-height: 1.7;
}
.policy-content h2 {
    color: #0f172a;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.policy-content .lead-text {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 24px;
}

.policy-section {
    margin-bottom: 32px;
}
.policy-section h4 {
    color: #0d2a5e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.policy-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    color: #0d2a5e;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}
.policy-section p {
    font-size: 14.5px;
    margin-bottom: 16px;
}

/* Professional Accordion */
.prof-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.2s ease;
}
.prof-accordion .accordion-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.prof-accordion .accordion-button {
    padding: 18px 24px;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    font-size: 15px;
    box-shadow: none !important;
}
.prof-accordion .accordion-button:not(.collapsed) {
    color: #0d2a5e;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.prof-accordion .accordion-body {
    padding: 24px;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.7;
}

/* Cancellation Table */
.cancellation-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
.cancellation-table th, .cancellation-table td {
    border: 1px solid #e2e8f0;
    padding: 14px 16px;
    font-size: 14.5px;
    text-align: left;
}
.cancellation-table th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 600;
}
.cancellation-table td {
    color: #475569;
}

/* Privacy Security Badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.payment-method-box {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.2s ease;
}
.payment-method-box:hover {
    border-color: #cbd5e1;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.payment-method-box i {
    font-size: 28px;
    color: #0d2a5e;
    margin-bottom: 12px;
    display: block;
}
.payment-method-box span {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}
