/* ============================================================================
   JRS Website — Design System
   Johnson Restoration Services
   Bootstrap 5.3.3 + Custom Styles
   ============================================================================ */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --jrs-red: #B62B33;
    --jrs-red-dark: #8E1F26;
    --jrs-red-light: #F9E8E9;
    --jrs-red-rgb: 182, 43, 51;
    --jrs-dark: #0C0A0A;
    --jrs-dark-rgb: 12, 10, 10;

    /* Neutrals */
    --jrs-gray-900: #1a1a1a;
    --jrs-gray-800: #2d2d2d;
    --jrs-gray-700: #495057;
    --jrs-gray-600: #5a6268;
    --jrs-gray-500: #6E777D;
    --jrs-gray-400: #adb5bd;
    --jrs-gray-300: #ced4da;
    --jrs-gray-200: #e9ecef;
    --jrs-gray-100: #f8f9fa;
    --jrs-white: #ffffff;

    /* Typography */
    --jrs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --jrs-body-size: 1rem;
    --jrs-body-lh: 1.7;
    --jrs-body-color: var(--jrs-gray-700);
    --jrs-heading-color: var(--jrs-dark);

    /* Spacing */
    --jrs-section-py: 5rem;
    --jrs-section-py-sm: 3.5rem;

    /* Shadows */
    --jrs-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --jrs-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --jrs-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --jrs-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);

    /* Borders */
    --jrs-radius: 0.5rem;
    --jrs-radius-lg: 0.75rem;
    --jrs-radius-xl: 1rem;

    /* Transitions */
    --jrs-transition: 0.3s ease;
    --jrs-transition-fast: 0.15s ease;

    /* Header */
    --jrs-header-height: 80px;
    --jrs-topbar-height: 40px;
}

/* --------------------------------------------------------------------------
   2. BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--jrs-header-height) + var(--jrs-topbar-height) + 1rem);
}

body {
    font-family: var(--jrs-font);
    font-size: var(--jrs-body-size);
    line-height: var(--jrs-body-lh);
    color: var(--jrs-body-color);
    background-color: var(--jrs-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--jrs-font);
    font-weight: 700;
    color: var(--jrs-heading-color);
    line-height: 1.25;
    margin-bottom: 1rem;
}

h1, .h1 { font-size: 3rem; }
h2, .h2 { font-size: 2.25rem; }
h3, .h3 { font-size: 1.75rem; }
h4, .h4 { font-size: 1.5rem; }
h5, .h5 { font-size: 1.25rem; }
h6, .h6 { font-size: 1.125rem; }

@media (max-width: 767.98px) {
    h1, .h1 { font-size: 2.25rem; }
    h2, .h2 { font-size: 1.75rem; }
    h3, .h3 { font-size: 1.5rem; }
    h4, .h4 { font-size: 1.25rem; }
}

p {
    margin-bottom: 1rem;
    color: var(--jrs-body-color);
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--jrs-gray-600);
}

a {
    color: var(--jrs-red);
    text-decoration: none;
    transition: color var(--jrs-transition-fast);
}

a:hover {
    color: var(--jrs-red-dark);
}

/* --------------------------------------------------------------------------
   4. SECTION UTILITIES
   -------------------------------------------------------------------------- */
.jrs-section {
    padding: var(--jrs-section-py) 0;
}

.jrs-section-sm {
    padding: var(--jrs-section-py-sm) 0;
}

@media (max-width: 767.98px) {
    .jrs-section {
        padding: var(--jrs-section-py-sm) 0;
    }
}

.jrs-bg-light {
    background-color: var(--jrs-gray-100);
}

.jrs-bg-dark {
    background-color: var(--jrs-dark);
    color: var(--jrs-gray-300);
}

.jrs-bg-dark h1, .jrs-bg-dark h2, .jrs-bg-dark h3,
.jrs-bg-dark h4, .jrs-bg-dark h5, .jrs-bg-dark h6 {
    color: var(--jrs-white);
}

/* Dark card variant (sidebar contact cards, etc.) */
.jrs-card-dark {
    background: var(--jrs-dark) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border: none !important;
}

.jrs-card-dark h1, .jrs-card-dark h2, .jrs-card-dark h3,
.jrs-card-dark h4, .jrs-card-dark h5, .jrs-card-dark h6 {
    color: #fff;
}

.jrs-card-dark p,
.jrs-card-dark .small,
.jrs-card-dark .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.jrs-card-dark a:not(.btn):not(.btn-jrs):not(.btn-jrs-outline):not(.btn-jrs-sm) {
    color: rgba(255, 255, 255, 0.9);
}

.jrs-bg-red {
    background-color: var(--jrs-red);
    color: var(--jrs-white);
}

.jrs-bg-red h1, .jrs-bg-red h2, .jrs-bg-red h3,
.jrs-bg-red h4, .jrs-bg-red h5, .jrs-bg-red h6 {
    color: var(--jrs-white);
}

/* Section header pattern */
.section-header {
    max-width: 680px;
    margin-bottom: 3rem;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--jrs-red);
    margin-bottom: 0.75rem;
}

.section-label-line::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--jrs-red);
    vertical-align: middle;
    margin-right: 0.75rem;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn-jrs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--jrs-red);
    color: var(--jrs-white);
    border: 2px solid var(--jrs-red);
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--jrs-radius);
    transition: all var(--jrs-transition);
    cursor: pointer;
}

.btn-jrs:hover,
.btn-jrs:focus {
    background-color: var(--jrs-red-dark);
    border-color: var(--jrs-red-dark);
    color: var(--jrs-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--jrs-red-rgb), 0.3);
}

.btn-jrs:active {
    transform: translateY(0);
}

.btn-jrs-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--jrs-red);
    border: 2px solid var(--jrs-red);
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--jrs-radius);
    transition: all var(--jrs-transition);
    cursor: pointer;
}

.btn-jrs-outline:hover,
.btn-jrs-outline:focus {
    background-color: var(--jrs-red);
    color: var(--jrs-white);
    transform: translateY(-1px);
}

.btn-jrs-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--jrs-white);
    color: var(--jrs-red);
    border: 2px solid var(--jrs-white);
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--jrs-radius);
    transition: all var(--jrs-transition);
    cursor: pointer;
}

.btn-jrs-white:hover,
.btn-jrs-white:focus {
    background-color: transparent;
    color: var(--jrs-white);
    border-color: var(--jrs-white);
    transform: translateY(-1px);
}

.btn-jrs-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-jrs-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   6. CARDS
   -------------------------------------------------------------------------- */
.jrs-card {
    background: var(--jrs-white);
    border-radius: var(--jrs-radius-lg);
    box-shadow: var(--jrs-shadow);
    padding: 2rem;
    transition: all var(--jrs-transition);
    border: none;
    height: 100%;
}

.jrs-card:hover {
    box-shadow: var(--jrs-shadow-hover);
    transform: translateY(-4px);
}

.jrs-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--jrs-red-light);
    color: var(--jrs-red);
    border-radius: var(--jrs-radius);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.jrs-card h4, .jrs-card h5 {
    margin-bottom: 0.75rem;
}

.jrs-card p:last-child {
    margin-bottom: 0;
}

/* Flat card variant (no hover lift) */
.jrs-card-flat {
    background: var(--jrs-white);
    border-radius: var(--jrs-radius-lg);
    box-shadow: var(--jrs-shadow-sm);
    padding: 2rem;
    border: 1px solid var(--jrs-gray-200);
}

/* Stat card */
.jrs-stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.jrs-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--jrs-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.jrs-stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--jrs-heading-color);
    margin-bottom: 0.5rem;
}

.jrs-stat-desc {
    font-size: 0.875rem;
    color: var(--jrs-gray-500);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */

/* Top bar */
.jrs-topbar {
    background-color: var(--jrs-dark);
    color: var(--jrs-gray-400);
    font-size: 0.8125rem;
    height: var(--jrs-topbar-height);
    display: flex;
    align-items: center;
}

.jrs-topbar a {
    color: var(--jrs-gray-400);
    transition: color var(--jrs-transition-fast);
}

.jrs-topbar a:hover {
    color: var(--jrs-white);
}

.jrs-topbar .bi {
    font-size: 0.875rem;
    margin-right: 0.375rem;
}

/* Main header */
.jrs-header {
    background: var(--jrs-white);
    height: var(--jrs-header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--jrs-gray-200);
    transition: box-shadow var(--jrs-transition);
    z-index: 1030;
}

.jrs-header.sticky-top {
    position: sticky;
    top: 0;
}

.jrs-header.scrolled {
    box-shadow: var(--jrs-shadow);
}

.jrs-header .logo img {
    height: 50px;
    width: auto;
}

/* Desktop nav */
.jrs-nav .nav-link {
    color: var(--jrs-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    transition: color var(--jrs-transition-fast);
    position: relative;
}

.jrs-nav .nav-link:hover,
.jrs-nav .nav-link.active {
    color: var(--jrs-red);
}

/* Dropdown styling */
.jrs-nav .dropdown-menu {
    border: none;
    box-shadow: var(--jrs-shadow-lg);
    border-radius: var(--jrs-radius);
    padding: 0.75rem 0;
    min-width: 14rem;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.jrs-nav .dropdown-item {
    font-size: 0.9375rem;
    padding: 0.5rem 1.25rem;
    color: var(--jrs-gray-700);
    font-weight: 500;
    transition: all var(--jrs-transition-fast);
}

.jrs-nav .dropdown-item:hover {
    background-color: var(--jrs-red-light);
    color: var(--jrs-red);
    padding-left: 1.5rem;
}

/* Mega dropdown for submenus */
.jrs-nav .dropdown-submenu {
    position: relative;
}

.jrs-nav .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.75rem;
}

/* Mobile nav toggle */
.jrs-nav-toggle {
    border: none;
    background: none;
    padding: 0.5rem;
    color: var(--jrs-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Offcanvas mobile nav */
.jrs-offcanvas {
    width: 300px;
}

.jrs-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--jrs-gray-200);
    padding: 1.25rem 1.5rem;
}

.jrs-offcanvas .offcanvas-body {
    padding: 1rem 0;
}

.jrs-offcanvas .nav-link {
    color: var(--jrs-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--jrs-gray-100);
}

.jrs-offcanvas .nav-link:hover,
.jrs-offcanvas .nav-link.active {
    color: var(--jrs-red);
    background-color: var(--jrs-red-light);
}

.jrs-offcanvas .offcanvas-subnav {
    padding-left: 1rem;
}

.jrs-offcanvas .offcanvas-subnav .nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--jrs-gray-600);
}

/* CTA button in header */
.jrs-header-cta {
    display: none;
}

@media (min-width: 1200px) {
    .jrs-header-cta {
        display: inline-flex;
    }
}

/* --------------------------------------------------------------------------
   8. HERO / BANNER
   -------------------------------------------------------------------------- */
.jrs-hero {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--jrs-dark) 0%, #1a1a2e 100%);
    color: var(--jrs-white);
}

.jrs-hero h1 {
    color: var(--jrs-white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.jrs-hero .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.jrs-hero-home {
    min-height: 600px;
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .jrs-hero h1 {
        font-size: 2.5rem;
    }
    .jrs-hero-home {
        min-height: 480px;
        padding: 4rem 0;
    }
}

@media (max-width: 575.98px) {
    .jrs-hero h1 {
        font-size: 2rem;
    }
    .jrs-hero-home {
        min-height: 400px;
    }
}

/* Page hero (inner pages) */
.jrs-page-hero {
    background: linear-gradient(135deg, var(--jrs-dark) 0%, #1a1a2e 100%);
    padding: 4rem 0 3rem;
    color: var(--jrs-white);
}

.jrs-page-hero h1 {
    color: var(--jrs-white);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

/* Breadcrumbs */
.jrs-breadcrumb {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.jrs-breadcrumb li + li::before {
    content: '/';
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.jrs-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.jrs-breadcrumb a:hover {
    color: var(--jrs-white);
}

.jrs-breadcrumb .current {
    color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   9. CTA SECTION
   -------------------------------------------------------------------------- */
.jrs-cta {
    background: var(--jrs-red);
    color: var(--jrs-white);
    padding: 3.5rem 0;
}

.jrs-cta h3 {
    color: var(--jrs-white);
    margin-bottom: 0.5rem;
}

.jrs-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.jrs-cta .btn-jrs-white {
    white-space: nowrap;
}

.jrs-cta-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jrs-white);
}

.jrs-cta-phone:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.jrs-footer {
    background: var(--jrs-gray-900);
    color: var(--jrs-gray-400);
    padding-top: 4rem;
}

.jrs-footer h6 {
    color: var(--jrs-white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.jrs-footer a {
    color: var(--jrs-gray-400);
    transition: color var(--jrs-transition-fast);
}

.jrs-footer a:hover {
    color: var(--jrs-white);
}

.jrs-footer .logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.jrs-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jrs-footer-links li {
    margin-bottom: 0.625rem;
}

.jrs-footer-links a {
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.jrs-footer-links .bi {
    font-size: 0.75rem;
    color: var(--jrs-red);
}

.jrs-footer-contact .bi {
    color: var(--jrs-red);
    margin-right: 0.5rem;
}

.jrs-footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    color: var(--jrs-gray-400);
}

/* Newsletter form */
.jrs-newsletter-form .form-control {
    background: var(--jrs-gray-800);
    border: 1px solid var(--jrs-gray-700);
    color: var(--jrs-white);
    border-radius: var(--jrs-radius);
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
}

.jrs-newsletter-form .form-control::placeholder {
    color: var(--jrs-gray-500);
}

.jrs-newsletter-form .form-control:focus {
    border-color: var(--jrs-red);
    box-shadow: 0 0 0 0.2rem rgba(var(--jrs-red-rgb), 0.25);
    background: var(--jrs-gray-800);
    color: var(--jrs-white);
}

/* Copyright bar */
.jrs-copyright {
    border-top: 1px solid var(--jrs-gray-800);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--jrs-gray-500);
}

/* --------------------------------------------------------------------------
   11. FORMS
   -------------------------------------------------------------------------- */
.jrs-form .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--jrs-heading-color);
    margin-bottom: 0.375rem;
}

.jrs-form .form-control,
.jrs-form .form-select {
    border: 1px solid var(--jrs-gray-300);
    border-radius: var(--jrs-radius);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--jrs-dark);
    transition: border-color var(--jrs-transition-fast), box-shadow var(--jrs-transition-fast);
}

.jrs-form .form-control:focus,
.jrs-form .form-select:focus {
    border-color: var(--jrs-red);
    box-shadow: 0 0 0 0.2rem rgba(var(--jrs-red-rgb), 0.15);
}

.jrs-form .form-control::placeholder {
    color: var(--jrs-gray-400);
}

.jrs-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* --------------------------------------------------------------------------
   12. PROCESS STEPS
   -------------------------------------------------------------------------- */
.jrs-process-step {
    text-align: center;
    position: relative;
    padding: 1.5rem 1rem;
}

.jrs-process-number {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--jrs-red);
    color: var(--jrs-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
}

/* Connector line between steps */
@media (min-width: 768px) {
    .jrs-process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 3.25rem;
        right: -10%;
        width: 20%;
        height: 2px;
        background: var(--jrs-gray-300);
    }
}

/* --------------------------------------------------------------------------
   13. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.jrs-accordion .accordion-item {
    border: 1px solid var(--jrs-gray-200);
    border-radius: var(--jrs-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.jrs-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--jrs-heading-color);
    padding: 1.125rem 1.5rem;
    background: var(--jrs-white);
    box-shadow: none;
}

.jrs-accordion .accordion-button:not(.collapsed) {
    background: var(--jrs-red-light);
    color: var(--jrs-red);
}

.jrs-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23495057'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.jrs-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B62B33'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.jrs-accordion .accordion-body {
    padding: 1rem 1.5rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   14. SERVICE SIDEBAR (Commercial sub-nav)
   -------------------------------------------------------------------------- */
.jrs-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jrs-sidebar-nav li {
    border-bottom: 1px solid var(--jrs-gray-200);
}

.jrs-sidebar-nav li:last-child {
    border-bottom: none;
}

.jrs-sidebar-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    color: var(--jrs-gray-700);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--jrs-transition-fast);
    border-left: 3px solid transparent;
}

.jrs-sidebar-nav a:hover,
.jrs-sidebar-nav a.active {
    color: var(--jrs-red);
    background: var(--jrs-red-light);
    border-left-color: var(--jrs-red);
}

/* --------------------------------------------------------------------------
   15. SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   16. BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.jrs-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--jrs-red);
    color: var(--jrs-white);
    border: none;
    border-radius: var(--jrs-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--jrs-transition);
    z-index: 1020;
    box-shadow: var(--jrs-shadow);
}

.jrs-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.jrs-back-to-top:hover {
    background: var(--jrs-red-dark);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   17. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.text-jrs-red { color: var(--jrs-red) !important; }
.text-jrs-dark { color: var(--jrs-dark) !important; }
.bg-jrs-red-light { background-color: var(--jrs-red-light) !important; }

.fw-800 { font-weight: 800 !important; }

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-rounded {
    border-radius: var(--jrs-radius-lg);
}

/* Divider */
.jrs-divider {
    height: 3px;
    width: 3rem;
    background: var(--jrs-red);
    border: none;
    opacity: 1;
    margin: 1rem 0;
}

/* Checklist */
.jrs-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jrs-checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.jrs-checklist li::before {
    content: '\F272'; /* bi-check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--jrs-red);
    font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   18. CALENDLY WIDGET OVERRIDE
   -------------------------------------------------------------------------- */
.calendly-badge-widget {
    right: 70px !important;
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 575.98px) {
    .jrs-section {
        padding: 3rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .jrs-card {
        padding: 1.5rem;
    }
    .jrs-stat-number {
        font-size: 2.25rem;
    }
}
