/* =============================================
   JVS About Us — Elementor Widget Styles
   ============================================= */

.jvs-about {
    
    background: #FBF7F2;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.jvs-about-fw {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

/* Decorative BG */
.jvs-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(200,168,124,0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(200,168,124,0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ====== INNER CONTAINER ====== */
.jvs-about-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* SPLIT LAYOUT */
.jvs-about-split .jvs-about-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}
.jvs-about-split .jvs-about-inner.jvs-about-reverse {
    grid-template-columns: 1.15fr 1fr;
    direction: rtl;
}
.jvs-about-split .jvs-about-inner.jvs-about-reverse > * {
    direction: ltr;
}

/* CENTERED LAYOUT */
.jvs-about-centered .jvs-about-inner {
    max-width: 860px;
    text-align: center;
}
.jvs-about-centered .jvs-about-badge { justify-content: center; }
.jvs-about-centered .jvs-about-usp { justify-content: center; }
.jvs-about-centered .jvs-about-stats { justify-content: center; }
.jvs-about-centered .jvs-about-ctas { justify-content: center; }
.jvs-about-centered .jvs-about-cert { text-align: left; }

/* ====== IMAGE COLUMN ====== */
.jvs-about-img-col {
    position: relative;
}

.jvs-about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.jvs-about-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    min-height: 420px;
    box-shadow: 0 20px 50px rgba(44,24,16,0.12);
    transition: transform 0.6s ease;
}
.jvs-about-hover .jvs-about-img-wrap:hover img {
    transform: scale(1.02);
}

.jvs-about-img-placeholder {
    width: 100%;
    min-height: 420px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2C1810, #4A2C1A, #5E3824);
    position: relative;
    box-shadow: 0 20px 50px rgba(44,24,16,0.15);
}
.jvs-about-img-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: #C8A87C;
    fill: none;
    stroke-width: 1.2;
    opacity: 0.4;
}

/* Decorative corner elements */
.jvs-about-img-deco1 {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-top: 3px solid #C8A87C;
    border-left: 3px solid #C8A87C;
    border-radius: 12px 0 0 0;
    opacity: 0.5;
    z-index: -1;
}
.jvs-about-img-deco2 {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid #C8A87C;
    border-right: 3px solid #C8A87C;
    border-radius: 0 0 12px 0;
    opacity: 0.5;
    z-index: -1;
}

/* Experience badge on image */
.jvs-about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: linear-gradient(145deg, #2C1810, #4A2C1A);
    color: #fff;
    padding: 20px 26px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(44,24,16,0.25);
    z-index: 5;
    border: 2px solid rgba(200,168,124,0.2);
    min-width: 120px;
    transition: transform 0.4s ease;
}
.jvs-about-hover .jvs-about-img-badge:hover {
    transform: translateY(-4px);
}

.jvs-about-img-badge-num {
    display: block;
    
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #C8A87C, #DFC08E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.jvs-about-img-badge-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
}

/* ====== BADGE ====== */
.jvs-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2C1810, #4A2C1A);
    color: #DFC08E;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 50px;
    margin-bottom: 22px;
}
.jvs-about-badge svg {
    width: 14px;
    height: 14px;
    stroke: #DFC08E;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ====== HEADING ====== */
.jvs-about-heading {
    
    font-size: 36px;
    font-weight: 700;
    color: #2C1810;
    line-height: 1.25;
    margin-bottom: 20px;
}

/* ====== INTRO ====== */
.jvs-about-intro {
    
    font-size: 15px;
    font-weight: 600;
    color: #4A2C1A;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 18px;
    border-left: 3px solid #C8A87C;
}
.jvs-about-centered .jvs-about-intro {
    border-left: none;
    padding-left: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== BODY TEXT ====== */
.jvs-about-text {
    
    font-size: 14px;
    font-weight: 400;
    color: #6B5B4E;
    line-height: 1.8;
    margin-bottom: 24px;
}
.jvs-about-text p {
    margin-bottom: 14px;
}
.jvs-about-text p:last-child {
    margin-bottom: 0;
}

/* ====== CERTIFICATION STRIP ====== */
.jvs-about-cert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(44,24,16,0.04), rgba(200,168,124,0.08));
    border: 1px solid rgba(200,168,124,0.18);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 28px;
    transition: all 0.4s ease;
}
.jvs-about-hover .jvs-about-cert:hover {
    border-color: rgba(200,168,124,0.35);
    box-shadow: 0 8px 25px rgba(200,168,124,0.1);
    transform: translateY(-2px);
}

.jvs-about-cert-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #C8A87C, #DFC08E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(200,168,124,0.25);
}
.jvs-about-cert-icon svg {
    width: 22px;
    height: 22px;
    stroke: #2C1810;
    fill: none;
    stroke-width: 2;
}

.jvs-about-cert-text {
    font-size: 13px;
    font-weight: 500;
    color: #4A2C1A;
    line-height: 1.65;
}

/* ====== USP FEATURE POINTS ====== */
.jvs-about-usp {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 28px;
}

.jvs-about-usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #4A2C1A;
    transition: all 0.3s ease;
}
.jvs-about-hover .jvs-about-usp-item:hover {
    color: #2C1810;
    transform: translateX(3px);
}

.jvs-about-usp-item svg {
    width: 18px;
    height: 18px;
    stroke: #4A7C59;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ====== STATS ====== */
.jvs-about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.jvs-about-stat {
    flex: 1 1 0;
    min-width: 120px;
    max-width: 160px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(200,168,124,0.1);
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.jvs-about-hover .jvs-about-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(200,168,124,0.3);
    box-shadow: 0 15px 35px rgba(44,24,16,0.08), 0 0 20px rgba(200,168,124,0.08);
}

/* Card shine on hover */
.jvs-about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200,168,124,0.06), transparent);
    transition: left 0.5s ease;
}
.jvs-about-hover .jvs-about-stat:hover::before {
    left: 100%;
}

.jvs-about-stat-icon {
    margin-bottom: 10px;
}
.jvs-about-stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: #C8A87C;
    fill: none;
    stroke-width: 1.8;
}

.jvs-about-stat-num {
    
    font-size: 26px;
    font-weight: 800;
    color: #2C1810;
    line-height: 1.1;
    margin-bottom: 4px;
}

.jvs-about-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: #8B6F5E;
    letter-spacing: 0.3px;
    line-height: 1.35;
}

/* ====== CTA BUTTONS ====== */
.jvs-about-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.jvs-about-cta-primary,
.jvs-about-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 12px;
    
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    line-height: 1;
}

.jvs-about-cta-primary svg,
.jvs-about-cta-secondary svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease, stroke 0.3s ease;
    flex-shrink: 0;
}

/* Primary */
.jvs-about-cta-primary {
    background: linear-gradient(135deg, #2C1810, #4A2C1A);
    color: #DFC08E;
    border: none;
}
.jvs-about-cta-primary svg { stroke: #DFC08E; }

.jvs-about-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200,168,124,0.15), transparent);
    transition: left 0.5s ease;
}
.jvs-about-cta-primary:hover::before { left: 100%; }

.jvs-about-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44,24,16,0.2);
    color: #fff;
}
.jvs-about-cta-primary:hover svg {
    transform: translateX(4px);
    stroke: #fff;
}

/* Secondary */
.jvs-about-cta-secondary {
    background: transparent;
    color: #2C1810;
    border: 2px solid #C8A87C;
}
.jvs-about-cta-secondary svg { stroke: #2C1810; }

.jvs-about-cta-secondary:hover {
    background: #C8A87C;
    color: #2C1810;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200,168,124,0.2);
}
.jvs-about-cta-secondary:hover svg {
    transform: translateX(4px);
}

/* ====== SCROLL ANIMATIONS ====== */
.jvs-about-anim .jvs-about-fade-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.jvs-about-anim .jvs-about-fade-item.jvs-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays via JS data attribute */
.jvs-about-anim .jvs-about-content-col .jvs-about-fade-item:nth-child(1) { transition-delay: 0.1s; }
.jvs-about-anim .jvs-about-content-col .jvs-about-fade-item:nth-child(2) { transition-delay: 0.18s; }
.jvs-about-anim .jvs-about-content-col .jvs-about-fade-item:nth-child(3) { transition-delay: 0.26s; }
.jvs-about-anim .jvs-about-content-col .jvs-about-fade-item:nth-child(4) { transition-delay: 0.34s; }
.jvs-about-anim .jvs-about-content-col .jvs-about-fade-item:nth-child(5) { transition-delay: 0.42s; }
.jvs-about-anim .jvs-about-content-col .jvs-about-fade-item:nth-child(6) { transition-delay: 0.5s; }
.jvs-about-anim .jvs-about-content-col .jvs-about-fade-item:nth-child(7) { transition-delay: 0.58s; }
.jvs-about-anim .jvs-about-content-col .jvs-about-fade-item:nth-child(8) { transition-delay: 0.66s; }
.jvs-about-anim .jvs-about-content-col .jvs-about-fade-item:nth-child(9) { transition-delay: 0.74s; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .jvs-about-split .jvs-about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .jvs-about-split .jvs-about-inner.jvs-about-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .jvs-about-img-wrap img,
    .jvs-about-img-placeholder {
        min-height: 320px;
    }
    .jvs-about-heading { font-size: 30px; }
}

@media (max-width: 768px) {
    .jvs-about { padding: 50px 0; }
    .jvs-about-inner { padding: 0 20px; }
    .jvs-about-heading { font-size: 26px; }
    .jvs-about-stats { gap: 10px; }
    .jvs-about-stat { min-width: 100px; padding: 16px 12px; }
    .jvs-about-stat-num { font-size: 22px; }
    .jvs-about-img-badge { right: 10px; bottom: -16px; padding: 16px 20px; }
    .jvs-about-img-badge-num { font-size: 26px; }
    .jvs-about-img-deco1, .jvs-about-img-deco2 { display: none; }
}

@media (max-width: 520px) {
    .jvs-about { padding: 40px 0; }
    .jvs-about-heading { font-size: 23px; }
    .jvs-about-ctas { flex-direction: column; width: 100%; }
    .jvs-about-cta-primary,
    .jvs-about-cta-secondary { width: 100%; justify-content: center; }
    .jvs-about-stat { flex: 1 1 calc(50% - 8px); max-width: none; }
    .jvs-about-usp { gap: 8px 16px; }
}
