/* ==========================================================================
   RCSF MASTER PAGES STYLESHEET
   Eliminates FOUC / Content Flash / Text Scattering across all pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   GLOBAL DESIGN TOKENS & TYPOGRAPHY
-------------------------------------------------------------------------- */
:root {
    --rcsf-navy-deep: #091322;
    --rcsf-navy-card: #0f1e36;
    --rcsf-navy-primary: #0a192f;
    --rcsf-orange: #f25b29;
    --rcsf-orange-dark: #dc4511;
    --rcsf-orange-main: #ff6600;
    --rcsf-orange-deep: #e65100;
    --rcsf-orange-light: #fff4f0;
    --rcsf-text-dark: #1e293b;
    --rcsf-text-muted: #64748b;
    --rcsf-border: #e2e8f0;
    --rcsf-border-light: #e2e8f0;
    --rcsf-bg-light: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    color: #1e293b;
    background-color: #f8fafc;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Common Soft Colors */
.bg-orange-soft { background: #fff4f0 !important; }
.bg-green-soft  { background: #ecfdf5 !important; }
.bg-blue-soft   { background: #eff6ff !important; }
.bg-purple-soft { background: #f5f3ff !important; }
.bg-navy-soft   { background: #eef2f6 !important; }

.text-orange { color: #f25b29 !important; }
.text-green  { color: #10b981 !important; }
.text-blue   { color: #3b82f6 !important; }
.text-purple { color: #8b5cf6 !important; }
.text-navy   { color: #0a192f !important; }


/* ==========================================================================
   1. COMMANDER REGISTRATION PAGE STYLES
   ========================================================================== */
.rcsf-reg-hero {
    background: linear-gradient(135deg, #091322 0%, #0f1e36 60%, #152847 100%);
    padding: 55px 0 50px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-bottom: 3px solid var(--rcsf-orange);
}

.rcsf-reg-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 91, 41, 0.15) 0%, rgba(242, 91, 41, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rcsf-hero-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #cbd5e1;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.rcsf-reg-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.rcsf-reg-hero-subtitle {
    font-size: 15.5px;
    color: #94a3b8;
    max-width: 650px;
    margin-bottom: 0;
    line-height: 1.6;
}

.rcsf-custom-breadcrumb {
    display: inline-flex;
    list-style: none;
    padding: 8px 18px;
    margin: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13.5px;
}

.rcsf-custom-breadcrumb .breadcrumb-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.rcsf-custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--rcsf-orange);
}

.rcsf-custom-breadcrumb .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.rcsf-custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "/";
    padding: 0 8px;
}

.rcsf-reg-section {
    padding: 60px 0 80px;
    background: #f1f5f9;
}

.rcsf-reg-sidebar {
    position: sticky;
    top: 90px;
}

.rcsf-sidebar-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--rcsf-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.sidebar-card-header {
    background: linear-gradient(135deg, #091322 0%, #152847 100%);
    padding: 22px 24px;
    color: #ffffff;
}

.sidebar-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #f59e0b;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.sidebar-card-body {
    padding: 24px;
}

.rcsf-benefit-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-text h6 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--rcsf-text-dark);
    margin-bottom: 3px;
    font-family: 'Outfit', sans-serif;
}

.benefit-text p {
    font-size: 13px;
    color: var(--rcsf-text-muted);
    margin: 0;
    line-height: 1.5;
}

.rcsf-priority-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 20px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.priority-note {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.5;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rcsf-helpdesk-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--rcsf-border);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.helpdesk-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.helpdesk-info h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--rcsf-text-dark);
    margin-bottom: 3px;
}

.helpdesk-info p {
    font-size: 12.5px;
    color: var(--rcsf-text-muted);
    line-height: 1.4;
}

.helpdesk-contact-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.helpdesk-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--rcsf-orange);
    text-decoration: none;
    transition: color 0.2s;
}

.helpdesk-link:hover {
    color: var(--rcsf-orange-dark);
    text-decoration: underline;
}

.rcsf-form-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--rcsf-border);
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
    padding: 36px 34px;
}

@media (max-width: 767px) {
    .rcsf-form-card {
        padding: 24px 18px;
    }
}

.rcsf-form-header {
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--rcsf-border);
}

.rcsf-form-tag {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--rcsf-orange);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.rcsf-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--rcsf-text-dark);
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.rcsf-form-subtitle {
    font-size: 13.5px;
    color: var(--rcsf-text-muted);
    margin: 0;
}

.rcsf-fee-badge-top {
    background: #fff4f0;
    border: 1px solid rgba(242, 91, 41, 0.25);
    border-radius: 12px;
    padding: 8px 16px;
    text-align: right;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
}

.fee-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--rcsf-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fee-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--rcsf-text-dark);
}

.rcsf-form-section {
    background: var(--rcsf-bg-light);
    border: 1px solid var(--rcsf-border);
    border-radius: 14px;
    padding: 22px 20px;
    margin-bottom: 24px;
}

.section-badge-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #cbd5e1;
}

.sec-num {
    width: 26px;
    height: 26px;
    background: var(--rcsf-orange);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.section-badge-title h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--rcsf-text-dark);
    margin: 0;
}

.rcsf-field-label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    z-index: 5;
    transition: color 0.2s;
}

.rcsf-input {
    height: 48px;
    padding-left: 42px !important;
    padding-right: 14px;
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    font-size: 14px;
    color: var(--rcsf-text-dark);
    transition: all 0.2s ease-in-out;
    width: 100%;
}

.rcsf-input:focus {
    border-color: var(--rcsf-orange);
    box-shadow: 0 0 0 3.5px rgba(242, 91, 41, 0.15);
    background: #ffffff;
    outline: none;
}

.rcsf-input:focus + .input-icon,
.input-with-icon:focus-within .input-icon {
    color: var(--rcsf-orange);
}

.rcsf-input[readonly] {
    background-color: #f1f5f9;
    cursor: not-allowed;
    color: #475569;
    border-color: #e2e8f0;
}

.field-hint {
    font-size: 11.5px;
    color: var(--rcsf-text-muted);
    margin-top: 4px;
    display: block;
}

.rcsf-type-selector {
    margin-top: 4px;
}

.rcsf-select-card {
    display: block;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

.rcsf-select-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.select-card-content {
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.select-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.2s;
}

.select-text-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-main-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--rcsf-text-dark);
    font-family: 'Outfit', sans-serif;
}

.card-sub-title {
    font-size: 11.5px;
    color: var(--rcsf-text-muted);
}

.select-check-indicator {
    color: #cbd5e1;
    font-size: 18px;
    transition: color 0.2s;
}

.rcsf-select-card:hover .select-card-content {
    border-color: #94a3b8;
}

.rcsf-select-card.active .select-card-content {
    border-color: var(--rcsf-orange);
    background: #fffaf8;
    box-shadow: 0 4px 14px rgba(242, 91, 41, 0.12);
}

.rcsf-select-card.active .select-icon-box {
    background: var(--rcsf-orange);
    color: #ffffff;
}

.rcsf-select-card.active .select-check-indicator {
    color: var(--rcsf-orange);
}

.rcsf-ref-toggle-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 6px;
}

.ref-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--rcsf-text-dark);
}

.rcsf-radio-pill-group {
    display: inline-flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 30px;
    gap: 4px;
}

.rcsf-pill-label {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    transition: all 0.2s ease;
}

.rcsf-pill-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rcsf-pill-label.active {
    background: var(--rcsf-orange);
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(242, 91, 41, 0.3);
}

.rcsf-summary-box {
    background: linear-gradient(135deg, #fffaf8 0%, #fff4f0 100%);
    border: 1.5px solid rgba(242, 91, 41, 0.3);
    border-radius: 14px;
    padding: 20px 22px;
}

.summary-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--rcsf-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.summary-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--rcsf-text-dark);
}

.summary-inclusions {
    font-size: 12px;
    color: #475569;
}

.total-payable-wrap {
    display: flex;
    flex-direction: column;
}

.total-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.total-amount-display {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--rcsf-orange);
    line-height: 1.2;
}

.gst-tag {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    display: block;
}

.rcsf-btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #f25b29 0%, #dc4511 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(242, 91, 41, 0.35);
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.rcsf-btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff6633 0%, #eb4f1a 100%);
    box-shadow: 0 12px 30px rgba(242, 91, 41, 0.45);
    transform: translateY(-2px);
    color: #ffffff;
}

.rcsf-btn-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

.rcsf-security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--rcsf-text-muted);
}

.bullet-dot {
    color: #cbd5e1;
}


/* ==========================================================================
   2. EMPLOYER REGISTRATION PAGE STYLES
   ========================================================================== */
.rcsf-employer-hero {
    background: linear-gradient(135deg, #091322 0%, #0f1e36 60%, #152847 100%);
    padding: 55px 0 50px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-bottom: 3px solid var(--rcsf-orange);
}

.rcsf-employer-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 91, 41, 0.15) 0%, rgba(242, 91, 41, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rcsf-employer-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.rcsf-employer-hero-subtitle {
    font-size: 15.5px;
    color: #94a3b8;
    max-width: 680px;
    margin-bottom: 0;
    line-height: 1.6;
}

.rcsf-employer-section {
    padding: 60px 0 80px;
    background: #f1f5f9;
}

.rcsf-trust-badge-top {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 8px 16px;
    text-align: right;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
}

.trust-badge-tag {
    font-size: 12px;
    font-weight: 700;
    color: #166534;
}

.trust-badge-sub {
    font-size: 10.5px;
    color: #15803d;
    font-weight: 600;
}

.rcsf-service-radio-card {
    display: block;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    height: 100%;
}

.rcsf-service-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-card-inner {
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: all 0.2s ease-in-out;
    height: 100%;
    position: relative;
}

.service-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #64748b;
    transition: all 0.2s;
}

.service-meta .service-title {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--rcsf-text-dark);
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.service-meta .service-sub {
    display: block;
    font-size: 11px;
    color: var(--rcsf-text-muted);
    margin-top: 2px;
}

.service-check {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 14px;
    color: #cbd5e1;
    transition: color 0.2s;
}

.rcsf-service-radio-card:hover .service-card-inner {
    border-color: #94a3b8;
    transform: translateY(-2px);
}

.rcsf-service-radio-card.active .service-card-inner {
    border-color: var(--rcsf-orange);
    background: #fffaf8;
    box-shadow: 0 4px 14px rgba(242, 91, 41, 0.15);
}

.rcsf-service-radio-card.active .service-icon-box {
    background: var(--rcsf-orange);
    color: #ffffff;
}

.rcsf-service-radio-card.active .service-check {
    color: var(--rcsf-orange);
}

.rcsf-subtypes-wrapper {
    background: #ffffff;
    border: 1px solid var(--rcsf-border);
    border-radius: 12px;
    padding: 16px;
}

.rcsf-checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rcsf-checkbox-pill {
    margin-bottom: 0;
    cursor: pointer;
}

.rcsf-checkbox-pill input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rcsf-checkbox-pill .pill-box {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    transition: all 0.15s ease-in-out;
    user-select: none;
}

.rcsf-checkbox-pill:hover .pill-box {
    border-color: #94a3b8;
    background: #f1f5f9;
}

.rcsf-checkbox-pill input[type="checkbox"]:checked + .pill-box {
    background: #fff5f0;
    border-color: var(--rcsf-orange);
    color: var(--rcsf-orange-dark);
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(242, 91, 41, 0.12);
}

.rcsf-checkbox-pill input[type="checkbox"]:checked + .pill-box::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 11px;
    color: var(--rcsf-orange);
}

.skilled-group {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
}

.group-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #cbd5e1;
}

.roles-count-wrap {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
}

.roles-count-display {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}


/* ==========================================================================
   3. ORGANIZATION PAGE STYLES
   ========================================================================== */
.rcsf-org-hero {
    background: linear-gradient(135deg, #061325 0%, #0d223d 50%, #081a33 100%);
    padding: 70px 0 65px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rcsf-org-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600 0%, #ffffff 50%, #10b981 100%);
}

.rcsf-hero-pill-org {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 6px 16px;
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.rcsf-org-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.rcsf-org-main-subtitle {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.65;
    max-width: 680px;
    margin: 0;
}

.rcsf-org-section {
    padding: 85px 0;
    background: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.rcsf-acc-item {
    background: #ffffff;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
}

.rcsf-acc-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: #cbd5e1 !important;
}

.rcsf-acc-item .accordion-button {
    background: #ffffff;
    padding: 20px 24px;
    box-shadow: none !important;
}

.rcsf-acc-item .accordion-button:not(.collapsed) {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.acc-title-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.acc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.acc-text h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0a192f;
    margin: 0;
}

.acc-tag {
    font-size: 11px;
    font-weight: 800;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.acc-body-text {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 14px;
}

.rcsf-bullet-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}


/* ==========================================================================
   4. ABOUT US PAGE STYLES
   ========================================================================== */
.rcsf-about-hero {
    background: linear-gradient(135deg, #061325 0%, #0d223d 50%, #081a33 100%);
    padding: 70px 0 65px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rcsf-about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600 0%, #ffffff 50%, #10b981 100%);
}

.rcsf-hero-pill-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 6px 16px;
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.rcsf-about-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.rcsf-about-main-subtitle {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.65;
    max-width: 680px;
    margin: 0;
}

.rcsf-about-content-section {
    padding: 90px 0;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.rcsf-poster-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(10, 25, 47, 0.15);
    border: 1px solid var(--rcsf-border-light);
    background: #ffffff;
}

.rcsf-poster-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rcsf-poster-card:hover .rcsf-poster-img {
    transform: scale(1.02);
}

.rcsf-poster-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(10, 25, 47, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.rcsf-stat-floating-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--rcsf-border-light);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    transition: transform 0.25s ease;
}

.rcsf-stat-floating-card:hover {
    transform: translateY(-3px);
    border-color: var(--rcsf-orange-main);
}

.stat-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff5eb;
    color: var(--rcsf-orange-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-text-box h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--rcsf-navy-primary);
    margin: 0 0 3px 0;
}

.stat-text-box span {
    font-size: 12.5px;
    color: var(--rcsf-text-muted);
    font-weight: 600;
}

.rcsf-sub-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tag-line {
    width: 28px;
    height: 3px;
    background: var(--rcsf-orange-main);
    border-radius: 2px;
}

.tag-text {
    color: var(--rcsf-orange-main);
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rcsf-about-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--rcsf-navy-primary);
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.rcsf-feature-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f8fafc;
    border: 1px solid var(--rcsf-border-light);
    border-left: 4px solid var(--rcsf-orange-main);
    border-radius: 12px;
    padding: 22px 24px;
    transition: all 0.25s ease;
}

.rcsf-feature-highlight-card.navy-accent {
    border-left-color: var(--rcsf-navy-primary);
}

.rcsf-feature-highlight-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.card-icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.highlight-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--rcsf-navy-primary);
    margin: 0 0 8px 0;
}

.highlight-card-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

.rcsf-badge-pill-inline {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--rcsf-orange-main);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.rcsf-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--rcsf-navy-primary);
    line-height: 1.25;
}

.rcsf-section-desc {
    font-size: 15px;
    color: var(--rcsf-text-muted);
    line-height: 1.7;
    margin-top: 10px;
}

.rcsf-adv-card {
    background: #ffffff;
    border: 1px solid var(--rcsf-border-light);
    border-radius: 14px;
    padding: 28px 22px;
    height: 100%;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rcsf-adv-card:hover {
    border-color: var(--rcsf-orange-main);
    box-shadow: 0 14px 35px rgba(255, 102, 0, 0.09);
    transform: translateY(-4px);
}

.adv-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #e2e8f0;
}

.adv-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.adv-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--rcsf-navy-primary);
    margin: 0 0 10px 0;
}

.adv-desc {
    font-size: 13.5px;
    color: var(--rcsf-text-muted);
    line-height: 1.6;
    margin: 0;
}

.rcsf-about-cta-banner {
    background: linear-gradient(135deg, #071527 0%, #0d2342 100%);
    border-radius: 18px;
    padding: 45px 40px;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(7, 21, 39, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rcsf-cta-badge {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ff8c00;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.rcsf-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.rcsf-cta-desc {
    font-size: 14.5px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

.rcsf-btn-cta-primary {
    background: linear-gradient(135deg, #ff6600 0%, #e65100 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(255, 102, 0, 0.35);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.rcsf-btn-cta-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.45);
}

.rcsf-btn-cta-outline {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.rcsf-btn-cta-outline:hover {
    background: #ffffff;
    color: var(--rcsf-navy-primary);
    transform: translateY(-2px);
}

/* ==========================================================================
   5. WELCOME MESSAGE STYLES
   ========================================================================== */
.container-welcome {
    max-width: 700px;
    margin: 20px auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.container-welcome::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #018400, #d65108);
}

.hgroup {
    text-align: center;
    padding: 30px 40px 40px;
}

.hgroup .name {
    display: block;
    color: var(--rcsf-orange);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.hgroup h1 {
    font-size: 20px;
    font-weight: 600;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
}
