/* ===== PrimeAutoSystems Brand Theme v2 ===== */

:root {
    /* Brand colors */
    --pas-navy:         #0A1F3F;
    --pas-navy-light:   #12305E;
    --pas-navy-deep:    #060F20;
    --pas-red:          #C8102E;
    --pas-red-hover:    #A00D24;

    /* Neutrals */
    --pas-body:         #374151;
    --pas-muted:        #6B7280;
    --pas-light:        #F3F4F8;
    --pas-lighter:      #F9FAFB;
    --pas-white:        #FFFFFF;
    --pas-border:       #E5E7EB;
    --pas-border-dark:  #D1D5DB;

    /* Shadows */
    --pas-shadow-sm: 0 1px 3px rgba(10,31,63,.06), 0 1px 2px rgba(10,31,63,.04);
    --pas-shadow:    0 4px 16px rgba(10,31,63,.08), 0 1px 4px rgba(10,31,63,.04);
    --pas-shadow-md: 0 8px 32px rgba(10,31,63,.10), 0 2px 8px rgba(10,31,63,.06);
    --pas-shadow-lg: 0 16px 52px rgba(10,31,63,.14), 0 4px 16px rgba(10,31,63,.08);

    /* Radii */
    --pas-radius-sm: 0.5rem;
    --pas-radius:    0.75rem;
    --pas-radius-lg: 1rem;
    --pas-radius-xl: 1.5rem;

    /* Transition */
    --pas-transition: all 0.22s cubic-bezier(.4,0,.2,1);
}

/* ===== Base ===== */

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--pas-body);
    background-color: var(--pas-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--pas-navy);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

p {
    line-height: 1.7;
}

a {
    color: var(--pas-navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--pas-red);
}

/* ===== Focus Styles ===== */

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(10,31,63,0.3);
}

/* ===== Buttons ===== */

.btn {
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--pas-radius-sm);
    transition: var(--pas-transition);
}

.btn-primary {
    background-color: var(--pas-red);
    border-color: var(--pas-red);
    color: var(--pas-white);
    padding: 0.625rem 1.75rem;
    box-shadow: 0 2px 8px rgba(200,16,46,.25);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--pas-red-hover);
    border-color: var(--pas-red-hover);
    color: var(--pas-white);
    box-shadow: 0 4px 16px rgba(200,16,46,.35);
    transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline-light {
    border-width: 1.5px;
    font-weight: 600;
    padding: 0.625rem 1.75rem;
    color: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.6);
    color: #fff;
}

.btn-outline-primary {
    color: var(--pas-navy);
    border-color: var(--pas-navy);
    font-weight: 600;
    padding: 0.625rem 1.75rem;
}

.btn-outline-primary:hover {
    background-color: var(--pas-navy);
    border-color: var(--pas-navy);
    color: var(--pas-white);
    box-shadow: var(--pas-shadow-sm);
}

.btn-lg {
    padding: 0.8rem 2.25rem;
    font-size: 1.05rem;
    border-radius: var(--pas-radius);
}

.btn-sm {
    padding: 0.4rem 1.1rem;
    font-size: 0.875rem;
}

/* ===== Navbar ===== */

.pas-navbar {
    background-color: #fff;
    padding: 0.875rem 0;
    transition: box-shadow 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,.07);
}

.pas-navbar.scrolled {
    padding: 0.6rem 0;
    background-color: rgba(255,255,255,.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,.08);
    border-bottom-color: rgba(0,0,0,.06);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    white-space: normal;
}

.navbar-brand .brand-auto  { color: var(--pas-red); }
.navbar-brand .brand-prime { color: var(--pas-white); }

.navbar-logo {
    height: 40px;
    width: auto;
}

.pas-navbar .nav-link {
    color: rgba(10,31,63,.6) !important;
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.2s ease;
}

.pas-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--pas-red);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.2s ease, transform 0.22s ease;
}

.pas-navbar .nav-link:hover,
.pas-navbar .nav-link.active-page {
    color: var(--pas-navy) !important;
}

.pas-navbar .nav-link:hover::after,
.pas-navbar .nav-link.active-page::after {
    opacity: 1;
    transform: scaleX(1);
}

.pas-navbar .btn-nav-demo {
    background: var(--pas-red);
    border: none;
    color: #fff !important;
    font-size: 0.875rem;
    padding: 0.45rem 1.2rem;
    border-radius: var(--pas-radius-sm);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(200,16,46,.3);
    transition: var(--pas-transition);
}

.pas-navbar .btn-nav-demo:hover {
    background: var(--pas-red-hover) !important;
    box-shadow: 0 4px 16px rgba(200,16,46,.4);
    transform: translateY(-1px);
    color: #fff !important;
}

.pas-navbar .btn-nav-demo::after { display: none !important; }

@media (max-width: 991.98px) {
    .pas-navbar .navbar-collapse {
        background: rgba(255,255,255,.97);
        border-radius: var(--pas-radius);
        margin-top: 0.75rem;
        padding: 0.75rem;
        border: 1px solid rgba(0,0,0,.06);
        box-shadow: 0 4px 16px rgba(0,0,0,.08);
    }

    .pas-navbar .nav-link::after { display: none; }

    .pas-navbar .nav-link.active-page {
        color: var(--pas-navy) !important;
        background: rgba(200,16,46,.08);
        border-radius: 0.4rem;
    }

    .pas-navbar .ms-lg-3 { margin-top: 0.5rem; }
}

/* ===== Hero ===== */

.hero-section {
    background-color: var(--pas-navy);
    background-image:
        radial-gradient(ellipse 80% 60% at 72% 40%, rgba(200,16,46,.12) 0%, transparent 60%),
        linear-gradient(180deg, var(--pas-navy) 0%, var(--pas-navy-light) 100%);
    color: var(--pas-white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200,16,46,.15);
    border: 1px solid rgba(200,16,46,.3);
    color: #ff8f9e;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--pas-red);
    border-radius: 50%;
    flex-shrink: 0;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .35; }
}

.hero-section h1 {
    color: var(--pas-white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
}

.hero-section h1 .hero-accent {
    background: linear-gradient(90deg, var(--pas-red), #f05370);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255,255,255,.72);
    max-width: 540px;
    margin-bottom: 2.25rem;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    margin-top: 0.2rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ring {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-ring::before {
    content: '';
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    border: 1px dashed rgba(200,16,46,.2);
}

.hero-ring .ring-icon {
    font-size: 8rem;
    color: rgba(255,255,255,.05);
    line-height: 1;
    user-select: none;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg { display: block; width: 100%; }

@media (max-width: 767.98px) {
    .hero-section {
        padding: 6.5rem 0 4rem;
        text-align: center;
    }

    .hero-section h1    { font-size: 2.3rem; }
    .hero-section .lead { margin-left: auto; margin-right: auto; }
    .hero-cta-group     { justify-content: center; }
    .hero-stats         { justify-content: center; gap: 1.5rem; }
}

/* ===== Sections ===== */

.section { padding: 5.5rem 0; }

.section-light { background-color: var(--pas-light); }

.section-dark {
    background-color: var(--pas-navy);
    color: var(--pas-white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--pas-white); }

/* Section eyebrow label */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pas-red);
    margin-bottom: 0.6rem;
}

.section-dark .section-label { color: #ff8f9e; }

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--pas-muted);
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.75;
}

.section-dark .section-subtitle { color: rgba(255,255,255,.6); }

/* Divider */
.divider {
    width: 48px;
    height: 3px;
    background-color: var(--pas-red);
    border: none;
    opacity: 1;
    margin: 0.75rem auto 1.5rem;
    border-radius: 2px;
}

.divider-left { margin-left: 0; }

/* ===== Trust Bar ===== */

.trust-bar {
    background: var(--pas-white);
    border-bottom: 1px solid var(--pas-border);
    padding: 1rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pas-muted);
    white-space: nowrap;
}

.trust-item .bi { color: var(--pas-red); font-size: 1.05rem; }

/* ===== Value Cards ===== */

.value-card {
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius);
    padding: 1.75rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--pas-transition);
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pas-red), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pas-shadow-md);
    border-color: transparent;
}

.value-card:hover::after { opacity: 1; }

.value-card h5, .value-card h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pas-navy);
}

/* ===== Feature Icons ===== */

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--pas-radius-sm);
    background: linear-gradient(135deg, var(--pas-navy) 0%, var(--pas-navy-light) 100%);
    color: var(--pas-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10,31,63,.2);
}

.feature-icon.accent {
    background: linear-gradient(135deg, var(--pas-red) 0%, var(--pas-red-hover) 100%);
    box-shadow: 0 4px 12px rgba(200,16,46,.25);
}

/* ===== Feature Mini Cards (Products page) ===== */

.feature-mini-card {
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius);
    padding: 1.25rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    position: relative;
    overflow: hidden;
    transition: var(--pas-transition);
}

.feature-mini-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--pas-red);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.feature-mini-card:hover {
    box-shadow: var(--pas-shadow);
    border-color: var(--pas-border-dark);
    transform: translateY(-3px);
}

.feature-mini-card:hover::before { opacity: 1; }

.feature-mini-card .mini-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--pas-radius-sm);
    background: rgba(200,16,46,.08);
    color: var(--pas-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-mini-card h6 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--pas-navy);
    margin-bottom: 0.2rem;
}

.feature-mini-card p {
    font-size: 0.8rem;
    color: var(--pas-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===== Product Cards (Home page) ===== */

.product-card {
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--pas-transition);
    box-shadow: var(--pas-shadow-sm);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pas-shadow-lg);
    border-color: transparent;
}

.product-card-header {
    background: linear-gradient(135deg, var(--pas-navy) 0%, var(--pas-navy-light) 100%);
    color: var(--pas-white);
    padding: 2.75rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card-header::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}

.product-card-header::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(200,16,46,.07);
    pointer-events: none;
}

.product-card-header h3 {
    color: var(--pas-white);
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.product-card-header .product-tag {
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    position: relative;
    z-index: 1;
}

.product-card-header .product-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.product-card-body { padding: 2rem; }

.product-card-body p {
    font-size: 0.95rem;
    color: var(--pas-muted);
    line-height: 1.7;
}

.product-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1.1rem 0 1.5rem;
}

.product-pills .pill {
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--pas-light);
    color: var(--pas-navy);
    padding: 0.25rem 0.7rem;
    border-radius: 2rem;
    border: 1px solid var(--pas-border);
    white-space: nowrap;
}

/* ===== Why-Choose Cards ===== */

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--pas-radius);
    height: 100%;
    transition: var(--pas-transition);
}

.why-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.14);
    transform: translateY(-3px);
}

.why-card .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(200,16,46,.15);
    color: #ff8f9e;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.why-card h5 {
    color: var(--pas-white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    margin: 0;
}

/* ===== About — Stat Blocks ===== */

.stat-block {
    text-align: center;
    padding: 1.75rem 1rem;
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius);
    transition: var(--pas-transition);
}

.stat-block:hover {
    box-shadow: var(--pas-shadow);
    border-color: transparent;
    transform: translateY(-3px);
}

.stat-block .stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--pas-red);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-block .stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pas-muted);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ===== About — Mission / Vision Cards ===== */

.mission-card {
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius-lg);
    padding: 2.25rem;
    height: 100%;
    transition: var(--pas-transition);
}

.mission-card.mission { border-top: 3px solid var(--pas-navy); }
.mission-card.vision  { border-top: 3px solid var(--pas-red); }

.mission-card:hover {
    box-shadow: var(--pas-shadow-md);
    transform: translateY(-4px);
}

/* ===== About — Timeline ===== */

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2rem;
}

.timeline-item:not(:last-child) { border-left: 2px solid var(--pas-border); }
.timeline-item:last-child        { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--pas-red);
    box-shadow: 0 0 0 3px rgba(200,16,46,.15);
}

.timeline-item h5 {
    color: var(--pas-navy);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.timeline-item p { margin: 0; color: var(--pas-muted); font-size: 0.9rem; }

/* ===== About — Core Values Cards ===== */

.value-icon-card {
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--pas-radius);
    background: rgba(255,255,255,.04);
    height: 100%;
    text-align: center;
    transition: var(--pas-transition);
}

.value-icon-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.15);
    transform: translateY(-3px);
}

.value-icon-card .vi-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(200,16,46,.15);
    color: #ff8f9e;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.value-icon-card h5 {
    color: var(--pas-white);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.value-icon-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,.58);
    line-height: 1.65;
    margin: 0;
}

/* ===== Contact ===== */

.contact-info-card {
    background: linear-gradient(160deg, var(--pas-navy) 0%, var(--pas-navy-light) 100%);
    color: var(--pas-white);
    border-radius: var(--pas-radius-lg);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(200,16,46,.1);
    pointer-events: none;
}

.contact-info-card h4 { color: var(--pas-white); }

.contact-intro {
    font-size: 0.9rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--pas-radius-sm);
    background: rgba(200,16,46,.18);
    color: #ff8f9e;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .contact-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 0.1rem;
}

.contact-item .contact-value {
    font-size: 0.875rem;
    color: rgba(255,255,255,.88);
    line-height: 1.55;
}

.contact-social {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.75rem;
}

.contact-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--pas-radius-sm);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--pas-transition);
    text-decoration: none;
}

.contact-social a:hover {
    background: rgba(255,255,255,.16);
    color: #fff;
    transform: translateY(-2px);
}

.contact-form-card {
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--pas-shadow);
}

.contact-form-card .form-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--pas-navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-color: var(--pas-border);
    border-radius: var(--pas-radius-sm);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--pas-navy);
    box-shadow: 0 0 0 3px rgba(10,31,63,.1);
}

.contact-form-card .form-control::placeholder { color: #b5bfcc; }

/* ===== Pre-footer CTA band ===== */

.pre-footer {
    background: linear-gradient(135deg, var(--pas-red) 0%, var(--pas-red-hover) 100%);
    padding: 3.75rem 0;
    position: relative;
    overflow: hidden;
}

.pre-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.pre-footer h3 {
    color: #fff;
    font-size: 1.65rem;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.pre-footer p {
    color: rgba(255,255,255,.8);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.pre-footer .btn-white {
    background: #fff;
    color: var(--pas-red);
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    position: relative;
    z-index: 1;
    padding: 0.8rem 2.25rem;
    border-radius: var(--pas-radius);
    transition: var(--pas-transition);
}

.pre-footer .btn-white:hover {
    background: rgba(255,255,255,.92);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(0,0,0,.2);
    color: var(--pas-red-hover);
}

/* ===== Footer ===== */

.site-footer {
    background-color: var(--pas-navy-deep);
    color: rgba(255,255,255,.55);
    padding: 4.5rem 0 0;
}

.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
}

.footer-brand-name .brand-auto  { color: var(--pas-red); }
.footer-brand-name .brand-prime { color: #fff; }

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.65;
    margin-top: 0.75rem;
    color: rgba(255,255,255,.38);
    max-width: 280px;
}

.site-footer h6 {
    color: rgba(255,255,255,.85);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
    color: rgba(255,255,255,.45);
    font-size: 0.875rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-links a:hover { color: rgba(255,255,255,.85); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,.45);
}

.footer-contact-item .bi {
    color: var(--pas-red);
    font-size: 0.875rem;
    margin-top: 0.18rem;
    flex-shrink: 0;
}

.footer-divider {
    border-color: rgba(255,255,255,.07);
    margin: 3rem 0 0;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,.3);
}

.footer-bottom a {
    color: rgba(255,255,255,.35);
    font-size: 0.78rem;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ===== Page Header (inner pages) ===== */

.page-header {
    background-color: var(--pas-navy);
    background-image:
        radial-gradient(ellipse 70% 80% at 80% 50%, rgba(200,16,46,.1) 0%, transparent 60%),
        linear-gradient(180deg, var(--pas-navy) 0%, var(--pas-navy-light) 100%);
    color: var(--pas-white);
    padding: 7rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
    color: var(--pas-white);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    letter-spacing: -0.035em;
}

.page-header p {
    color: rgba(255,255,255,.62);
    max-width: 540px;
    margin: 0.75rem auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-header .breadcrumb { justify-content: center; margin-bottom: 0.75rem; }

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 0.78rem;
    color: rgba(255,255,255,.4);
}

.page-header .breadcrumb-item.active { color: rgba(255,255,255,.65); }

.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.25); }

/* ===== Scroll Animations ===== */

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ===== Utilities ===== */

.text-red { color: var(--pas-red) !important; }
.bg-light-custom { background-color: var(--pas-light) !important; }

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* ===== Who We Serve Cards ===== */

.serve-card {
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--pas-transition);
}

.serve-card:hover {
    border-color: var(--pas-red);
    box-shadow: var(--pas-shadow-md);
    transform: translateY(-3px);
}

.serve-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--pas-radius-sm);
    background: linear-gradient(135deg, var(--pas-navy) 0%, var(--pas-navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pas-white);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.serve-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.serve-card p {
    color: var(--pas-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Benefit Cards ===== */

.benefit-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius);
    padding: 1.75rem;
    height: 100%;
    transition: var(--pas-transition);
}

.benefit-card:hover {
    border-color: var(--pas-red);
    box-shadow: var(--pas-shadow);
}

.benefit-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pas-red);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.35;
}

.benefit-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

/* ===== FAQ Accordion ===== */

.faq-item {
    border: 1px solid var(--pas-border) !important;
    border-radius: var(--pas-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-item .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--pas-navy);
    background: var(--pas-white);
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--pas-lighter);
    color: var(--pas-navy);
    box-shadow: none;
}

.faq-item .accordion-button::after {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.faq-item .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--pas-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ===== Responsive ===== */

@media (max-width: 575.98px) {
    .section          { padding: 3.5rem 0; }
    .hero-section     { padding: 5.5rem 0 3.5rem; }
    .page-header      { padding: 6rem 0 2.5rem; }
    .pre-footer       { padding: 2.5rem 0; }
    .site-footer      { padding: 3rem 0 0; }
    .contact-info-card, .contact-form-card { padding: 1.75rem; }
    .section-title    { font-size: 1.7rem; }
    .hero-stats       { gap: 1.25rem; }
    .hero-stat .stat-value { font-size: 1.5rem; }
    .product-card-header   { padding: 2rem 1.5rem 1.75rem; }
    .btn-lg           { padding: 0.7rem 1.75rem; font-size: 1rem; }
}

/* ===== Blog Filter Bar ===== */

.blog-filter-bar {
    background: var(--pas-white);
    border-bottom: 1px solid var(--pas-border);
    padding: 1rem 0;
    position: sticky;
    top: 60px;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255,255,255,.95);
}

.btn-filter {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 1.1rem;
    border-radius: 2rem;
    border: 1.5px solid var(--pas-border);
    background: var(--pas-white);
    color: var(--pas-muted);
    transition: var(--pas-transition);
    white-space: nowrap;
}

.btn-filter:hover {
    border-color: var(--pas-navy);
    color: var(--pas-navy);
    background: var(--pas-lighter);
    box-shadow: var(--pas-shadow-sm);
}

.btn-filter.active {
    background: var(--pas-navy);
    border-color: var(--pas-navy);
    color: var(--pas-white);
    box-shadow: 0 2px 8px rgba(10,31,63,.2);
}

/* ===== Blog Featured Card ===== */

.blog-featured-card {
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--pas-transition);
    box-shadow: var(--pas-shadow);
    margin-bottom: 1rem;
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pas-shadow-lg);
    border-color: transparent;
}

.blog-featured-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pas-red), var(--pas-navy));
    z-index: 1;
}

.blog-featured-visual {
    background: linear-gradient(160deg, var(--pas-navy) 0%, var(--pas-navy-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 2rem;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.blog-featured-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.blog-featured-visual::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(200,16,46,.08);
    pointer-events: none;
}

.blog-featured-icon-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,.5);
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
}

.blog-featured-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff8f9e;
    background: rgba(200,16,46,.18);
    border: 1px solid rgba(200,16,46,.25);
    padding: 0.25rem 0.85rem;
    border-radius: 2rem;
    position: relative;
    z-index: 1;
}

.blog-featured-body {
    padding: 2.5rem;
}

.blog-featured-title {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--pas-navy);
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.blog-featured-excerpt {
    font-size: 1rem;
    color: var(--pas-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.blog-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: var(--pas-muted);
    margin-bottom: 1.5rem;
}

.blog-featured-meta i {
    color: var(--pas-red);
    font-size: 0.75rem;
}

.blog-featured-cta {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--pas-red);
    transition: var(--pas-transition);
}

.blog-featured-card:hover .blog-featured-cta {
    gap: 0.35rem;
}

.blog-featured-cta .bi-arrow-right {
    transition: transform 0.22s ease;
}

.blog-featured-card:hover .blog-featured-cta .bi-arrow-right {
    transform: translateX(4px);
}

/* ===== Blog Cards ===== */

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-card-link:hover { color: inherit; }

.blog-card {
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--pas-transition);
    box-shadow: var(--pas-shadow-sm);
    position: relative;
}

.blog-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pas-red), transparent 80%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pas-shadow-md);
    border-color: transparent;
}

.blog-card:hover .blog-card-accent { opacity: 1; }

.blog-card-body {
    padding: 1.75rem 1.75rem 1rem;
    flex: 1;
}

.blog-card-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    gap: 0.5rem;
}

.blog-card-category {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pas-red);
    background: rgba(200,16,46,.07);
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    line-height: 1;
}

.blog-card-category .bi {
    font-size: 0.7rem;
}

.blog-card-readtime {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--pas-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.blog-card-readtime .bi {
    font-size: 0.7rem;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pas-navy);
    line-height: 1.35;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title { color: var(--pas-red-hover); }

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--pas-muted);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    padding: 1rem 1.75rem;
    border-top: 1px solid var(--pas-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--pas-muted);
    background: var(--pas-lighter);
}

.blog-card-date {
    display: inline-flex;
    align-items: center;
}

.blog-card-date .bi {
    font-size: 0.72rem;
    opacity: 0.6;
}

.blog-card-read {
    font-weight: 700;
    color: var(--pas-navy);
    transition: var(--pas-transition);
    display: inline-flex;
    align-items: center;
}

.blog-card-read .bi-arrow-right {
    transition: transform 0.22s ease;
}

.blog-card:hover .blog-card-read {
    color: var(--pas-red);
}

.blog-card:hover .blog-card-read .bi-arrow-right {
    transform: translateX(3px);
}

/* ===== Blog Article Category Badge (header) ===== */

.blog-article-category {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff8f9e;
    background: rgba(200,16,46,.18);
    border: 1px solid rgba(200,16,46,.25);
    padding: 0.3rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 0.85rem;
}

.blog-article-category .bi {
    font-size: 0.72rem;
}

/* ===== Blog Article Meta ===== */

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,.55);
    margin-top: 0.5rem;
}

.blog-article-meta i {
    font-size: 0.78rem;
    opacity: 0.7;
}

.blog-article-meta-sep {
    opacity: 0.3;
}

/* ===== Blog Reading Progress ===== */

.blog-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--pas-red), #f05370);
    z-index: 9999;
    transition: width 0.08s linear;
    border-radius: 0 2px 2px 0;
}

/* ===== Blog Article Body ===== */

.blog-article-body h2 {
    font-size: 1.5rem;
    margin-top: 2.75rem;
    margin-bottom: 0.75rem;
    padding-top: 0.5rem;
    position: relative;
    padding-left: 0.85rem;
}

.blog-article-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--pas-red), transparent);
    border-radius: 3px;
}

.blog-article-body h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.blog-article-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.35rem;
}

.blog-article-body .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--pas-body);
    border-left: 3px solid var(--pas-red);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}

.blog-article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.blog-article-body ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.6rem;
    color: var(--pas-body);
    padding-left: 1.5rem;
    position: relative;
}

.blog-article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pas-red);
    opacity: 0.5;
}

.blog-article-body a {
    color: var(--pas-red);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(200,16,46,.25);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.blog-article-body a:hover {
    text-decoration-color: var(--pas-red);
    color: var(--pas-red-hover);
}

/* ===== Blog Related Section ===== */

.blog-related-section {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--pas-border);
}

.blog-related-heading {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.blog-related-heading-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--pas-radius-sm);
    background: linear-gradient(135deg, var(--pas-navy) 0%, var(--pas-navy-light) 100%);
    color: var(--pas-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== Blog Post CTA ===== */

.blog-post-cta {
    padding: 4rem 0;
    background: var(--pas-lighter);
}

.blog-post-cta-card {
    background: var(--pas-white);
    border: 1px solid var(--pas-border);
    border-radius: var(--pas-radius-lg);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--pas-shadow);
}

.blog-post-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pas-red), var(--pas-navy));
}

.blog-post-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pas-red) 0%, var(--pas-red-hover) 100%);
    color: var(--pas-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(200,16,46,.25);
}

.blog-post-cta-card h2 {
    font-size: 1.65rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.blog-post-cta-card p {
    font-size: 1rem;
    color: var(--pas-muted);
    max-width: 520px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
}

.blog-post-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* ===== Blog Index CTA ===== */

.blog-cta-section {
    padding: 0 0 5.5rem;
}

.blog-cta-card {
    background: linear-gradient(160deg, var(--pas-navy) 0%, var(--pas-navy-light) 100%);
    border-radius: var(--pas-radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    color: var(--pas-white);
}

.blog-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.blog-cta-card::after {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(200,16,46,.1);
    pointer-events: none;
}

.blog-cta-card .section-label {
    color: #ff8f9e;
    position: relative;
    z-index: 1;
}

.blog-cta-title {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--pas-white);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.blog-cta-text {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.blog-cta-card .btn {
    position: relative;
    z-index: 1;
}

/* ===== Blog Responsive ===== */

@media (max-width: 991.98px) {
    .blog-featured-visual {
        min-height: 200px;
        padding: 2.5rem 2rem;
    }

    .blog-featured-body {
        padding: 2rem;
    }

    .blog-featured-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 767.98px) {
    .blog-filter-bar {
        top: 54px;
        padding: 0.75rem 0;
    }

    .blog-filter-bar .d-flex {
        justify-content: flex-start !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.25rem;
        flex-wrap: nowrap !important;
    }

    .blog-filter-bar .d-flex::-webkit-scrollbar { display: none; }

    .blog-featured-visual {
        min-height: 160px;
        padding: 2rem 1.5rem;
    }

    .blog-featured-icon-ring {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }

    .blog-featured-body {
        padding: 1.5rem;
    }

    .blog-featured-title {
        font-size: 1.2rem;
    }

    .blog-card-body {
        padding: 1.25rem 1.25rem 0.75rem;
    }

    .blog-card-footer {
        padding: 0.75rem 1.25rem;
    }

    .blog-post-cta-card {
        padding: 2rem 1.5rem;
    }

    .blog-cta-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .blog-cta-card .col-lg-5 {
        text-align: center !important;
    }

    .blog-article-body h2 {
        font-size: 1.3rem;
    }

    .blog-article-body p {
        font-size: 1rem;
    }

    .blog-article-meta {
        font-size: 0.78rem;
    }

    .blog-related-section {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .blog-featured-meta {
        flex-direction: column;
        gap: 0.35rem;
    }

    .blog-post-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .blog-post-cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}