/* JCR Locations - Frontend Styles */
:root {
    --jcr-primary:      #003366;
    --jcr-primary-dark: #001a33;
    --jcr-accent:       #FF6B35;
    --jcr-accent-dark:  #E55A2B;
    --jcr-white:        #ffffff;
    --jcr-light:        #f8f9fa;
    --jcr-gray:         #666666;
    --jcr-border:       #e0e0e0;
    --jcr-shadow:       rgba(0, 51, 102, 0.15);
}

/* Page Wrap */
.jcr-page-wrap { font-family: 'Outfit', sans-serif; color: #1a1a1a; }

/* Hero */
.jcr-hero {
    background: linear-gradient(135deg, var(--jcr-primary-dark) 0%, var(--jcr-primary) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.jcr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.02) 35px, rgba(255,255,255,.02) 70px);
}
.jcr-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.jcr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,107,53,.15);
    border: 2px solid var(--jcr-accent);
    color: var(--jcr-accent);
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 1.5rem;
}
.jcr-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--jcr-white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
}
.jcr-city-highlight { color: var(--jcr-accent); display: block; }
.jcr-hero-sub { color: rgba(255,255,255,.9); font-size: 1.2rem; margin-bottom: 2rem; }
.jcr-hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.jcr-hero-trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,.9);
    font-size: .95rem;
}
.jcr-hero-trust span { display: flex; align-items: center; gap: .4rem; }
.jcr-hero-trust svg { color: var(--jcr-accent); }

/* Buttons */
.jcr-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 1rem 2rem;
    background: var(--jcr-accent);
    color: var(--jcr-white);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,.3);
}
.jcr-btn-primary:hover { background: var(--jcr-accent-dark); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255,107,53,.4); color: var(--jcr-white); }
.jcr-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--jcr-white);
    border: 2px solid var(--jcr-white);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .3s ease;
}
.jcr-btn-secondary:hover { background: var(--jcr-white); color: var(--jcr-primary); }
.jcr-btn-sms {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--jcr-primary);
    border: 2px solid var(--jcr-primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .3s ease;
}
.jcr-btn-sms:hover { background: var(--jcr-primary); color: var(--jcr-white); }
.jcr-btn-large { font-size: 1rem; padding: 0.8rem 1.5rem; }
.jcr-full-width { width: 100%; justify-content: center; }

/* Main Layout */
.jcr-main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}
.jcr-content-area { min-width: 0; }

/* Body Content */
.jcr-body-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--jcr-primary); margin: 2rem 0 1rem; letter-spacing: 1px; }
.jcr-body-content p { color: #444; line-height: 1.8; margin-bottom: 1.25rem; }
.jcr-body-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.jcr-body-content li { color: #444; line-height: 1.8; margin-bottom: .5rem; }

/* Steps */
.jcr-steps { display: flex; flex-direction: column; gap: 1.5rem; margin: 1.5rem 0; }
.jcr-step { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem; background: var(--jcr-light); border-radius: 12px; border-left: 4px solid var(--jcr-accent); }
.jcr-step-number { width: 44px; height: 44px; background: var(--jcr-primary); color: var(--jcr-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; flex-shrink: 0; }
.jcr-step h4 { font-size: 1.1rem; font-weight: 700; color: var(--jcr-primary); margin-bottom: .4rem; }
.jcr-step p { margin: 0; font-size: .95rem; }
.jcr-step a { color: var(--jcr-accent); font-weight: 700; }

/* Vehicle Grid */
.jcr-vehicle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .75rem; margin: 1.25rem 0; }
.jcr-vehicle-grid span { background: var(--jcr-primary); color: var(--jcr-white); padding: .75rem 1rem; border-radius: 8px; text-align: center; font-weight: 600; font-size: .9rem; }

/* CTA Block */
.jcr-cta-block { background: var(--jcr-primary); padding: 1.5rem 1.75rem; border-radius: 12px; text-align: center; margin: 2rem 0; }
.jcr-cta-block h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--jcr-white); margin-bottom: 0.6rem; letter-spacing: 1px; }
.jcr-cta-block p { color: rgba(255,255,255,.9); margin-bottom: 1rem; font-size: .9rem; }
.jcr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 0.75rem 1.75rem;
    background: var(--jcr-accent);
    color: var(--jcr-white);
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .3s ease;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.jcr-cta-btn svg { flex-shrink: 0; width: 18px !important; height: 18px !important; }
.jcr-cta-btn:hover { background: var(--jcr-accent-dark); transform: translateY(-2px); color: var(--jcr-white); }

/* Map */
.jcr-map-section { margin-top: 3rem; }
.jcr-map-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--jcr-primary); margin-bottom: .75rem; letter-spacing: 1px; }
.jcr-map-section p { color: var(--jcr-gray); margin-bottom: 1.25rem; }
.jcr-map-wrapper { position: relative; }
.jcr-map-link { display: inline-block; margin-top: .5rem; color: var(--jcr-accent); font-size: .9rem; text-decoration: none; }
.jcr-map-link:hover { text-decoration: underline; }

/* Sidebar */
.jcr-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 100px; }
.jcr-sidebar-call, .jcr-sidebar-services, .jcr-sidebar-facts {
    background: var(--jcr-white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px var(--jcr-shadow);
    border-top: 4px solid var(--jcr-accent);
}
.jcr-sidebar-call h3, .jcr-sidebar-services h3, .jcr-sidebar-facts h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--jcr-primary); margin-bottom: .75rem; letter-spacing: 1px; }
.jcr-sidebar-call p { color: var(--jcr-gray); margin-bottom: 1rem; font-size: .95rem; }
.jcr-sidebar-call .jcr-btn-primary { margin-bottom: .75rem; }

/* Services List */
.jcr-services-list { list-style: none; padding: 0; margin: 0; }
.jcr-services-list li { display: flex; align-items: center; gap: .6rem; padding: .6rem 0; border-bottom: 1px solid var(--jcr-border); font-size: .95rem; color: #333; }
.jcr-services-list li:last-child { border-bottom: none; }
.jcr-services-list svg { color: var(--jcr-accent); flex-shrink: 0; }

/* Facts */
.jcr-sidebar-facts ul { list-style: none; padding: 0; margin: 0; }
.jcr-sidebar-facts li { padding: .6rem 0; border-bottom: 1px solid var(--jcr-border); font-size: .9rem; color: #444; }
.jcr-sidebar-facts li:last-child { border-bottom: none; }
.jcr-sidebar-facts strong { color: var(--jcr-primary); }

/* Bottom CTA */
.jcr-bottom-cta { background: linear-gradient(135deg, var(--jcr-primary) 0%, var(--jcr-primary-dark) 100%); padding: 5rem 2rem; text-align: center; }
.jcr-bottom-cta-inner { max-width: 800px; margin: 0 auto; }
.jcr-bottom-cta h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3rem); color: var(--jcr-white); margin-bottom: 1rem; letter-spacing: 1px; }
.jcr-bottom-cta p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 1024px) {
    .jcr-main-container { grid-template-columns: 1fr; }
    .jcr-sidebar { position: static; }
}
@media (max-width: 640px) {
    .jcr-hero { padding: 3rem 1.5rem; }
    .jcr-hero-trust { flex-direction: column; align-items: center; gap: .75rem; }
    .jcr-hero-trust svg { width: 20px !important; height: 20px !important; }
    .jcr-hero-btns { flex-direction: column; }
    .jcr-hero-btns svg { width: 22px !important; height: 22px !important; }
    .jcr-btn-primary svg,
    .jcr-btn-secondary svg,
    .jcr-btn-sms svg { width: 20px !important; height: 20px !important; }
    .jcr-cta-btn svg { width: 20px !important; height: 20px !important; }
    .jcr-vehicle-grid { grid-template-columns: 1fr 1fr; }
    .jcr-main-container { padding: 2rem 1.5rem; }
    .jcr-bottom-cta { padding: 3rem 1.5rem; }
    .jcr-bottom-cta .jcr-btn-primary { font-size: 1rem; padding: 0.9rem 1.5rem; width: 100%; justify-content: center; }
    .jcr-cta-block { padding: 1.25rem; }
    .jcr-cta-btn { width: 100%; justify-content: center; }
    .jcr-sidebar-call .jcr-btn-primary svg,
    .jcr-sidebar-call .jcr-btn-sms svg { width: 20px !important; height: 20px !important; }
}
