/* ==========================================================================
   FULL SERVICE COMPLIANCE PACKAGE PAGE
   ========================================================================== */

/* --- Hero Section --- */
.fs-hero {
    background: linear-gradient(135deg, #001d3d 0%, #003566 50%, #004080 100%);
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fs-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 160%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.fs-hero h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.fs-hero h1 i {
    margin-right: 12px;
    color: #38bdf8;
}

.fs-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Main Content Section --- */
.fs-main-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.fs-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* --- Service Cards Column --- */
.fs-services-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fs-services-column > h2 {
    font-size: 1.6rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.fs-services-column > p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 10px;
    margin-top: -4px;
}

/* --- Individual Service Card --- */
.fs-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    cursor: pointer;
    user-select: none;
}

.fs-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 16px rgba(0, 43, 91, 0.06);
}

.fs-card.selected {
    border-color: #003366;
    box-shadow: 0 6px 24px rgba(0, 51, 102, 0.1);
}

.fs-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
}

.fs-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #94a3b8;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
    transition: all 0.2s ease;
}

.fs-card.selected .fs-checkbox {
    background: #003366;
    border-color: #003366;
}

.fs-checkbox i {
    color: #ffffff;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.fs-card.selected .fs-checkbox i {
    opacity: 1;
}

.fs-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fs-card-icon.ucr-icon {
    background: #dbeafe;
    color: #1d4ed8;
}

.fs-card-icon.motus-icon {
    background: #ede9fe;
    color: #6d28d9;
}

.fs-card-icon.mcs-icon {
    background: #fef3c7;
    color: #b45309;
}

.fs-card-icon.dqf-icon {
    background: #d1fae5;
    color: #059669;
}

.fs-card-title-area {
    flex-grow: 1;
}

.fs-card-title-area h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.fs-card-title-area p {
    font-size: 0.84rem;
    color: #64748b;
    margin: 0;
    line-height: 1.35;
}

.fs-card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #003366;
    white-space: nowrap;
    flex-shrink: 0;
}

.fs-card-price .price-note {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748b;
    text-align: right;
}

/* --- Expandable Input Area --- */
.fs-card-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.fs-card.selected .fs-card-expand.has-input {
    max-height: 300px;
}

.fs-expand-inner {
    padding: 0 22px 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.fs-expand-inner label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.fs-expand-inner label i {
    margin-right: 6px;
    color: #003366;
}

.fs-select-input,
.fs-number-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.fs-select-input:focus,
.fs-number-input:focus {
    outline: none;
    border-color: #003366;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.08);
}

/* UCR Fee Table inside card */
.fs-fee-hint {
    margin-top: 10px;
    font-size: 0.78rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 10px 12px;
    border-radius: 8px;
}

.fs-fee-hint table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4px;
}

.fs-fee-hint table td {
    padding: 3px 0;
    font-size: 0.78rem;
}

.fs-fee-hint table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #0f172a;
}

.fs-fee-hint table tr.active-tier td {
    color: #003366;
    font-weight: 700;
}

/* Contact us badge for 100+ vehicles */
.fs-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 10px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #991b1b;
    font-size: 0.85rem;
    font-weight: 600;
}

.fs-contact-badge a {
    color: #dc2626;
    text-decoration: underline;
}

/* --- Pricing Summary Panel (Sticky Sidebar) --- */
.fs-summary-panel {
    position: sticky;
    top: 130px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 43, 91, 0.06);
}

.fs-summary-header {
    background: linear-gradient(135deg, #002b5b, #004080);
    color: #ffffff;
    padding: 20px 24px;
}

.fs-summary-header h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fs-summary-body {
    padding: 22px 24px;
}

.fs-summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.fs-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #334155;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.fs-summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fs-summary-item-name {
    flex: 1;
    font-weight: 500;
}

.fs-summary-item-name small {
    display: block;
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 2px;
}

.fs-summary-item-price {
    font-weight: 700;
    color: #003366;
    white-space: nowrap;
    margin-left: 12px;
}

.fs-summary-empty {
    text-align: center;
    padding: 24px 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.fs-summary-empty i {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.fs-summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 4px 0 12px;
}

.fs-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    color: #475569;
    margin-bottom: 6px;
}

.fs-summary-row.total {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 2px solid #e2e8f0;
}

.fs-summary-footer {
    padding: 0 24px 24px;
}

.fs-btn-proceed {
    width: 100%;
    background: linear-gradient(135deg, #003366, #0055a5);
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 51, 102, 0.25);
    transition: all 0.2s ease;
    font-family: inherit;
}

.fs-btn-proceed:hover {
    background: linear-gradient(135deg, #002244, #004080);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.3);
}

.fs-btn-proceed:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.fs-btn-proceed i {
    font-size: 0.9rem;
}

.fs-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.78rem;
    color: #94a3b8;
}

.fs-secure-note i {
    color: #22c55e;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .fs-layout {
        grid-template-columns: 1fr;
    }

    .fs-summary-panel {
        position: static;
    }

    .fs-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .fs-hero {
        padding: 50px 0 40px;
    }

    .fs-hero h1 {
        font-size: 1.6rem;
    }

    .fs-hero p {
        font-size: 0.95rem;
    }

    .fs-main-section {
        padding: 30px 0 50px;
    }

    .fs-card-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .fs-card-price {
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
    }
}
