/* ---------- Design Base Colors ---------- */
:root {
    --jc-navy: #1B2A4A;
    --jc-navy-light: #243560;
    --jc-slate: #2D4A7A;
    --jc-copper: #C47A2D;
    --jc-copper-dark: #A8651F;
    --jc-amber: #E8A84C;
    --jc-offwhite: #F5F3F0;
    --jc-charcoal: #2C2C2C;
    --jc-gray: #6B7280;
    --jc-light-gray: #D1D5DB;
    --jc-white: #FFFFFF;
    --jc-radius: 4px;
    --jc-shadow: 0 4px 24px rgba(27, 42, 74, 0.10);
    --jc-shadow-hover: 0 8px 32px rgba(27, 42, 74, 0.18);
    --jc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --jc-copper-tint: rgba(196, 122, 45, 0.08);
    --jc-grid-opacity: 0.02;
}

html,
body {
    overflow-x: clip;
}

/* ---------- Typography ---------- */
body {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    color: var(--jc-charcoal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', 'Impact', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--jc-navy);
}

.jc-section-title {
    font-size: 2.4rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.jc-section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--jc-copper);
}

.jc-section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.jc-section-subtitle {
    font-size: 1.1rem;
    color: var(--jc-gray);
    max-width: 600px;
    line-height: 1.7;
}

/* ---------- Reusable: Blueprint Grid Overlay ---------- */
/* Apply to any element that needs the industrial grid texture via ::before */
.jc-blueprint-grid {
    position: relative;
    overflow: hidden;
}

.jc-blueprint-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255, var(--jc-grid-opacity)) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255, var(--jc-grid-opacity)) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* ---------- Reusable: Icon Circle ---------- */
/* Replaces 3 duplicated icon-in-circle patterns */
.jc-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--jc-copper-tint);
    color: var(--jc-copper);
    flex-shrink: 0;
}

.jc-icon-circle--sm {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.jc-icon-circle--md {
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
}

.jc-icon-circle--lg {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
}

/* ---------- Reusable: Image Placeholder ---------- */
/* Replaces duplicated flex-centered icon+label image blocks */
.jc-img-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--jc-white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.jc-img-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

/* ---------- Reusable: Dark Navy Section ---------- */
/* Navy background with optional blueprint grid overlay — used for service areas, etc. */
.jc-dark-section {
    background: var(--jc-navy);
    padding: 80px 0;
    --jc-grid-opacity: 0.02;
}

.jc-dark-section .jc-section-title {
    color: var(--jc-white);
}

.jc-dark-section .jc-section-title::after {
    background: var(--jc-copper);
}

.jc-dark-section .jc-section-subtitle {
    color: rgba(255,255,255,0.6);
}

/* ---------- Buttons ---------- */
.jc-btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--jc-transition);
    position: relative;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.jc-btn-primary {
    background: var(--jc-copper);
    color: var(--jc-white);
}

.jc-btn-primary:hover {
    background: var(--jc-amber);
    color: var(--jc-white);
    transform: translateY(-2px);
}

.jc-btn-outline {
    background: transparent;
    color: var(--jc-white);
    border: 2px solid var(--jc-white);
    clip-path: none;
}

.jc-btn-outline:hover {
    background: var(--jc-white);
    color: var(--jc-navy);
}

.jc-btn-navy {
    background: var(--jc-navy);
    color: var(--jc-white);
}

.jc-btn-navy:hover {
    background: var(--jc-slate);
    color: var(--jc-white);
    transform: translateY(-2px);
}

/* ---------- Navbar Overrides ---------- */
header .navbar {
    background: var(--jc-white) !important;
    border-bottom: 3px solid var(--jc-copper);
    box-shadow: 0 2px 12px rgba(27, 42, 74, 0.08);
}

header .navbar a,
header .navbar .nav-link,
header .navbar .navbar-brand {
    color: var(--jc-navy) !important;
}

header .navbar a:hover,
header .navbar .nav-link:hover {
    color: var(--jc-copper) !important;
}

header .navbar.scrolled {
    box-shadow: 0 2px 16px rgba(27, 42, 74, 0.25);
}

.navbar-brand > img {
    max-height: 4rem;
    width: auto;
    padding-left: 1rem;
}

/* ---------- Footer Overrides ---------- */
footer {
    background: var(--jc-navy) !important;
    border-top: 4px solid var(--jc-copper) !important;
    color: var(--jc-light-gray) !important;
}

footer a {
    color: var(--jc-amber) !important;
}

footer a:hover {
    color: var(--jc-copper) !important;
}

/* ---------- Footer Layout ---------- */
.jc-footer-section {
    padding: 4rem 0 1.5rem;
}

.jc-footer-heading {
    color: var(--jc-white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.jc-footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.jc-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.jc-footer-list li {
    margin-bottom: 0.5rem;
}

.jc-footer-contact i {
    color: var(--jc-copper);
    margin-right: 0.6rem;
    width: 1rem;
    text-align: center;
}

.jc-footer-social {
    display: flex;
    gap: 0.6rem;
}

.jc-footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--jc-transition);
}

.jc-footer-social a:hover {
    background: var(--jc-copper) !important;
    border-color: var(--jc-copper);
    color: var(--jc-white) !important;
    transform: translateY(-2px);
}

.jc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */

/* ---------- Hero Section ---------- */
.jc-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/static/img/hero-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    overflow: hidden;
}

.jc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 27, 51, 0.3) 0%,
        rgba(27, 42, 74, 0.15) 50%,
        rgba(22, 34, 64, 0.4) 100%
    );
    z-index: 1;
}

.jc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
}

.jc-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.jc-hero-content h1 {
    font-size: 4rem;
    color: var(--jc-white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.jc-hero-content h1 span {
    color: var(--jc-amber);
}

.jc-hero-tagline {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.jc-hero-caption {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.jc-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jc-hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 4;
}

.jc-hero-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---------- Services Section ---------- */
.jc-services-section {
    padding: 100px 0 80px;
}

.jc-service-card {
    background: var(--jc-white);
    border-left: 4px solid var(--jc-copper);
    padding: 2rem 1.8rem;
    box-shadow: var(--jc-shadow);
    border-radius: 0 var(--jc-radius) var(--jc-radius) 0;
    height: 100%;
    transition: var(--jc-transition);
}

.jc-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--jc-shadow-hover);
    border-left-color: var(--jc-amber);
}

.jc-service-card .service-icon { margin-bottom: 1rem; }

.jc-service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.jc-service-card p {
    color: var(--jc-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- Promises tagline band (One Quote » One Invoice » One Team) ---------- */
.jc-promises-section {
    padding: 36px 0;
    background: var(--jc-offwhite);
}

.jc-promises-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.jc-promise-item {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--jc-navy);
    line-height: 1;
}

.jc-promise-arrow {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--jc-copper);
    line-height: 1;
    user-select: none;
}

/* ---------- How It Works ---------- */
.jc-howit-section {
    padding: 80px 0;
    background: var(--jc-white);
}

.jc-howit-card {
    position: relative;
    background: var(--jc-white);
    padding: 2.5rem 1.8rem 2rem;
    border-radius: var(--jc-radius);
    box-shadow: var(--jc-shadow);
    border-top: 4px solid var(--jc-copper);
    transition: var(--jc-transition);
    text-align: center;
}

.jc-howit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--jc-shadow-hover);
    border-top-color: var(--jc-amber);
}

.jc-howit-number {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--jc-copper);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.jc-howit-title {
    font-size: 1.4rem;
    margin: 1rem 0 0.5rem;
}

.jc-howit-desc {
    color: var(--jc-gray);
    line-height: 1.7;
}

/* ---------- Process Zigzag (uttrly-style alternating with curved dotted paths) ---------- */
.jc-process-zigzag {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.jc-zigzag-item {
    width: 60%;
    display: flex;
    align-items: flex-start;
}

.jc-zigzag-item--left {
    align-self: flex-start;
}

.jc-zigzag-item--right {
    align-self: flex-end;
}

.jc-zigzag-item .jc-process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    text-align: left;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}

.jc-zigzag-item .jc-process-content {
    flex: 1;
}

.jc-zigzag-item .jc-process-title {
    margin: 0.5rem 0 0.4rem;
}

.jc-zigzag-curve {
    height: 90px;
    width: 100%;
    pointer-events: none;
    margin: -8px 0;
}

.jc-zigzag-curve svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.jc-zigzag-curve path {
    stroke: var(--jc-copper);
    stroke-width: 3;
    stroke-dasharray: 6 7;
    stroke-linecap: round;
    fill: none;
    opacity: 0.5;
}

.jc-process-icon-wrap {
    position: relative;
    display: inline-block;
    z-index: 1;
    flex-shrink: 0;
}

.jc-process-number {
    position: absolute;
    top: -6px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--jc-copper);
    color: var(--jc-white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(27, 42, 74, 0.18);
}

.jc-process-title {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.5rem;
}

.jc-process-desc {
    color: var(--jc-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- Featured Projects ---------- */
.jc-projects-section {
    padding: 100px 0 80px;
    background: var(--jc-offwhite);
}

.jc-project-card {
    border-radius: var(--jc-radius);
    overflow: hidden;
    box-shadow: var(--jc-shadow);
    transition: var(--jc-transition);
    background: var(--jc-white);
}

.jc-project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--jc-shadow-hover);
}

.jc-project-img {
    height: 240px;
    font-size: 1.1rem;
}

/* Gradient backgrounds — shared across project, service-detail, and gallery images */
.jc-img-placeholder.kitchen    { background: linear-gradient(135deg, var(--jc-navy) 0%, var(--jc-slate) 100%); }
.jc-img-placeholder.bathroom   { background: linear-gradient(135deg, var(--jc-copper-dark) 0%, var(--jc-copper) 100%); }
.jc-img-placeholder.basement   { background: linear-gradient(135deg, #3D5A80 0%, #5A7FA8 100%); }
.jc-img-placeholder.exterior   { background: linear-gradient(135deg, #4A6741 0%, #6B8F5E 100%); }
.jc-img-placeholder.electrical { background: linear-gradient(135deg, #8B6508 0%, #C4940A 100%); }
.jc-img-placeholder.whole-home { background: linear-gradient(135deg, #3D5A80 0%, #5A7FA8 100%); }
.jc-img-placeholder.cleaning   { background: linear-gradient(135deg, #5A8FA8 0%, #7AAFC4 100%); }
.jc-img-placeholder.kitchen-alt { background: linear-gradient(135deg, #243560 0%, #3D5A80 100%); }
.jc-img-placeholder.bathroom-alt { background: linear-gradient(135deg, #A8651F 0%, #D4943A 100%); }
.jc-img-placeholder.basement-alt { background: linear-gradient(135deg, #4A6B8A 0%, #6B90B0 100%); }
.jc-img-placeholder.whole-home-alt { background: linear-gradient(135deg, #4A6070 0%, #6A8898 100%); }

.jc-project-body {
    padding: 1.5rem;
}

.jc-project-body h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.jc-project-body p {
    color: var(--jc-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- Testimonials ---------- */
.jc-testimonials-section {
    padding: 100px 0 80px;
}

.jc-testimonial-card {
    background: var(--jc-offwhite);
    border-radius: var(--jc-radius);
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.jc-testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--jc-copper);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.jc-testimonial-stars {
    color: var(--jc-amber);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.jc-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--jc-charcoal);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.jc-testimonial-author {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--jc-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jc-testimonial-location {
    font-size: 0.85rem;
    color: var(--jc-gray);
}

.jc-testimonial-indicators {
    position: static;
    margin: 1.5rem 0 0;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--jc-copper);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    opacity: 0.4;
}

.carousel-indicators .active {
    opacity: 1;
}

/* ---------- Service Areas (uses .jc-dark-section .jc-blueprint-grid in HTML) ---------- */
.jc-area-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--jc-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--jc-transition);
    height: 100%;
}

.jc-area-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-4px);
}

.jc-area-card i {
    font-size: 2.5rem;
    color: var(--jc-amber);
    margin-bottom: 1rem;
}

.jc-area-card h4 {
    color: var(--jc-white);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.jc-area-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ---------- CTA Banner ---------- */
.jc-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--jc-copper) 0%, var(--jc-copper-dark) 100%);
    text-align: center;
}

.jc-cta-section h2 {
    color: var(--jc-white);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.jc-cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.jc-cta-contact {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.jc-cta-contact a {
    color: var(--jc-white);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: var(--jc-transition);
}

.jc-cta-contact a:hover {
    color: var(--jc-navy);
}

.jc-cta-contact a i {
    margin-right: 8px;
}

/* ==========================================================================
   SUBPAGE HERO (reusable)
   ========================================================================== */

.jc-page-hero {
    padding: 120px 0 60px;
    background: var(--jc-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
    --jc-grid-opacity: 0.02;
}

/* Reuses .jc-blueprint-grid pattern via shared class in HTML,
   but keep this fallback for pages not yet updated */
.jc-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.jc-page-hero h1 {
    color: var(--jc-white);
    font-size: 3rem;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.jc-page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.jc-page-hero .jc-breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.jc-page-hero .jc-breadcrumb a {
    color: var(--jc-amber);
    text-decoration: none;
}

.jc-page-hero .jc-breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.jc-page-hero .jc-breadcrumb .jc-breadcrumb-current {
    color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.jc-service-detail {
    padding: 80px 0;
}

.jc-service-detail:nth-child(even) {
    background: var(--jc-offwhite);
}

.jc-service-detail-img {
    height: 350px;
    border-radius: var(--jc-radius);
}

.jc-service-detail-img i {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.jc-service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.jc-service-detail p {
    color: var(--jc-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.jc-service-detail ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.jc-service-detail ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    color: var(--jc-charcoal);
    position: relative;
}

.jc-service-detail ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--jc-copper);
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.jc-about-intro {
    padding: 80px 0;
}

.jc-about-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--jc-gray);
}

.jc-about-intro .jc-img-placeholder i {
    font-size: 4rem;
    opacity: 0.6;
}

.jc-about-intro .jc-img-placeholder span {
    font-size: 1.2rem;
}

.jc-about-intro-photo {
    position: relative;
    width: 100%;
    border-radius: var(--jc-radius);
    overflow: hidden;
    box-shadow: var(--jc-shadow);
}

.jc-about-intro-photo img {
    display: block;
    width: 100%;
}

.jc-about-intro-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.1rem;
    background: rgba(27, 42, 74, 0.85);
    color: var(--jc-white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.jc-about-intro-badge i {
    font-size: 1.05rem;
    opacity: 0.9;
}

.jc-values-section {
    padding: 80px 0;
    background: var(--jc-offwhite);
}

.jc-value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--jc-white);
    border-radius: var(--jc-radius);
    box-shadow: var(--jc-shadow);
    transition: var(--jc-transition);
    height: 100%;
}

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

.jc-value-card i {
    margin-bottom: 1.2rem;
}

.jc-value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.jc-value-card p {
    color: var(--jc-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.jc-team-section {
    padding: 80px 0;
}

.jc-team-card {
    text-align: center;
    padding: 2rem;
}

.jc-team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--jc-navy);
    color: var(--jc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
}

.jc-team-avatar--slate { background: var(--jc-slate); }
.jc-team-avatar--copper { background: var(--jc-copper); }
.jc-team-avatar--charcoal { background: var(--jc-charcoal); }

.jc-team-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.jc-team-card p {
    color: var(--jc-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.jc-contact-section {
    padding: 80px 0;
}

.jc-contact-intro {
    color: var(--jc-gray);
    line-height: 1.8;
}

.jc-contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--jc-light-gray);
}

.jc-contact-info-card:last-child {
    border-bottom: none;
}

.jc-contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.jc-contact-info-card p {
    color: var(--jc-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.jc-contact-info-card a {
    color: var(--jc-copper);
    text-decoration: none;
}

.jc-contact-info-card a:hover {
    color: var(--jc-amber);
}

.jc-contact-form {
    background: var(--jc-offwhite);
    padding: 2.5rem;
    border-radius: var(--jc-radius);
    border-top: 4px solid var(--jc-copper);
}

.jc-contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.jc-contact-form .form-control,
.jc-contact-form .form-select {
    border: 1px solid var(--jc-light-gray);
    border-radius: var(--jc-radius);
    padding: 0.75rem 1rem;
    font-family: 'Source Sans 3', sans-serif;
    transition: var(--jc-transition);
}

.jc-contact-form .form-control:focus,
.jc-contact-form .form-select:focus {
    border-color: var(--jc-copper);
    box-shadow: 0 0 0 3px rgba(196, 122, 45, 0.15);
}

.jc-contact-form label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--jc-navy);
    margin-bottom: 0.4rem;
}
.jc-dripjobs-embed {
    display: block;
    width: 100%;
    border: 0;
    height: 3250px;
}

@media (max-width: 767.98px) {
    .jc-dripjobs-embed {
        height: 3750px;
    }
}

/* ==========================================================================
   AOS ANIMATION OVERRIDES
   ========================================================================== */

[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
    .jc-hero-content h1 { font-size: 2.8rem; }
    .jc-section-title { font-size: 2rem; }
    .jc-service-detail-img { height: 250px; margin-bottom: 2rem; }
    .jc-page-hero h1 { font-size: 2.4rem; }
    .jc-promise-item { font-size: 1.3rem; }
}

@media (max-width: 767px) {
    .jc-hero-content h1 { font-size: 2.2rem; }
    .jc-hero-tagline { font-size: 1.05rem; }
    .jc-hero-btns { flex-direction: column; align-items: center; }
    .jc-section-title { font-size: 1.7rem; }
    .jc-cta-contact { flex-direction: column; gap: 1rem; }
    .jc-testimonial-card { padding: 2rem 1.5rem; }
    .jc-page-hero { padding: 100px 0 40px; }
    .jc-page-hero h1 { font-size: 2rem; }
    .jc-contact-form { padding: 2rem 1.5rem; margin-top: 2rem; }
    .jc-promises-flow { flex-direction: column; align-items: center; gap: 0.5rem; }
    .jc-promise-arrow { transform: rotate(90deg); font-size: 1.5rem; }
    .jc-promise-item { font-size: 1.15rem; }
    .jc-zigzag-item { width: 100%; align-self: flex-start; }
    .jc-zigzag-curve { height: 30px; }
}

@media (max-width: 575px) {
    .jc-hero { background-attachment: scroll; }
    .jc-hero-content h1 { font-size: 1.8rem; }
    .jc-btn { padding: 12px 28px; font-size: 0.9rem; }
}

/* ---------- Mobile nav: center the collapsed menu links ---------- */
@media (max-width: 767.98px) {
    #mobileNavbar .navbar-nav {
        width: 100%;
        margin-left: 0 !important;
        text-align: center;
    }

    #mobileNavbar .nav-link {
        text-align: center;
    }
}
