body{
    background:#ffffff;
    color:#0f0f0f;
}

/* HERO */
.about-hero{
    min-height:75vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/about/jmca_bg.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    color:#ffffff;
    position:relative;
    overflow:hidden;
}

.about-hero::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:radial-gradient(circle at 30% 50%, rgba(210,155,32,0.15), transparent 70%);
    pointer-events:none;
}

.about-hero-content{
    position:relative;
    z-index:1;
    animation:fadeInUp 1s ease-out;
}

.about-hero-content h1{
    font-size:3.5rem;
    font-weight:800;
    line-height:1.2;
    margin-bottom:15px;
    text-shadow:2px 4px 8px rgba(0,0,0,0.3);
}

.about-hero-content span{
    color:#D29B20;
    position:relative;
    display:inline-block;
}

.about-hero-content span::after{
    content:'';
    position:absolute;
    bottom:-5px;
    left:0;
    width:100%;
    height:3px;
    background:#D29B20;
    animation:slideIn 0.8s ease-out 0.3s backwards;
}

.about-hero-content p{
    margin-top:20px;
    color:#f0f0f0;
    font-size:1.2rem;
    font-weight:300;
    letter-spacing:1px;
}

@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideIn{
    from{
        width:0;
    }
    to{
        width:100%;
    }
}

/* SECTION HEADER */
.section-header{
    text-align:center;
    margin-bottom:60px;
    position:relative;
}

.section-header span{
    color:#D29B20;
    font-weight:700;
    letter-spacing:3px;
    font-size:0.85rem;
    text-transform:uppercase;
    position:relative;
    display:inline-block;
    padding:0 20px;
}

.section-header span::before,
.section-header span::after{
    content:'';
    position:absolute;
    top:50%;
    width:40px;
    height:2px;
    background:#D29B20;
}

.section-header span::before{
    left:-50px;
}

.section-header span::after{
    right:-50px;
}

.section-header h2{
    font-size:2.5rem;
    margin:15px 0 0;
    color:#0f0f0f;
    font-weight:700;
    position:relative;
}

/* ABOUT */
.about-section{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-text{
    position:relative;
}

.about-text::before{
    content:'';
    position:absolute;
    left:-20px;
    top:0;
    width:4px;
    height:100px;
    background:linear-gradient(to bottom, #D29B20, transparent);
}

.about-text p{
    line-height:1.9;
    color:#444;
    margin-bottom:20px;
    font-size:1.05rem;
}

.about-image{
    position:relative;
}

.about-image::before{
    content:'';
    position:absolute;
    top:-15px;
    right:-15px;
    width:100%;
    height:100%;
    border:3px solid #D29B20;
    border-radius:8px;
    z-index:-1;
}

.about-image img{
    width:100%;
    border-radius:8px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    transition:transform 0.4s ease;
}

.about-image img:hover{
    transform:scale(1.02);
}

/* DETAILED VISION & MISSION */
.vm-detailed-section {
    background:linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding:100px 0;
    position:relative;
}

.vm-detailed-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(to right, transparent, #D29B20, transparent);
}

.vm-detailed-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.vm-detailed-box {
    background:#ffffff;
    padding:45px;
    border-radius:12px;
    position:relative;
    box-shadow:0 8px 30px rgba(0,0,0,0.1);
    transition:all 0.4s ease;
    overflow:hidden;
}

.vm-detailed-box::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:linear-gradient(to bottom, #D29B20, #b8850f);
    border-radius:12px 0 0 12px;
}

.vm-detailed-box::after{
    content:'';
    position:absolute;
    top:-50%;
    right:-50%;
    width:200%;
    height:200%;
    background:radial-gradient(circle, rgba(210,155,32,0.05), transparent 70%);
    transition:all 0.6s ease;
}

.vm-detailed-box:hover::after{
    top:-30%;
    right:-30%;
}

.vm-detailed-box:hover {
    transform:translateY(-8px);
    box-shadow:0 15px 45px rgba(0,0,0,0.15);
}

.vm-icon {
    font-size:3rem;
    margin-bottom:25px;
    filter:grayscale(0.3);
    transition:all 0.3s ease;
}

.vm-detailed-box:hover .vm-icon{
    filter:grayscale(0);
    transform:scale(1.1);
}

.vm-detailed-box h3 {
    color:#D29B20;
    font-size:2rem;
    margin-bottom:20px;
    font-weight:700;
    position:relative;
    z-index:1;
}

.vm-detailed-box p {
    line-height:1.8;
    color:#555;
    margin-bottom:18px;
    font-size:1.02rem;
    position:relative;
    z-index:1;
}

/* CORE VALUES */
.values-section {
    padding:100px 0;
}

.values-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:35px;
}

.value-card {
    background:#ffffff;
    padding:40px 35px;
    border-radius:12px;
    transition:all 0.4s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    border:2px solid transparent;
    position:relative;
    overflow:hidden;
}

.value-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(to right, #D29B20, #b8850f);
    transform:scaleX(0);
    transition:transform 0.4s ease;
}

.value-card:hover::before{
    transform:scaleX(1);
}

.value-card:hover {
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
    border-color:#D29B20;
}

.value-icon {
    font-size:2.8rem;
    margin-bottom:25px;
    color:#D29B20;
    display:inline-block;
    transition:all 0.4s ease;
}

.value-card:hover .value-icon{
    transform:scale(1.15) rotate(5deg);
}

.value-card h4 {
    font-size:1.5rem;
    margin-bottom:18px;
    color:#0f0f0f;
    font-weight:700;
}

.value-card p {
    line-height:1.7;
    color:#666;
    font-size:1rem;
}

/* POLICY SECTION */
.policy-section {
    background:linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding:100px 0;
    border-top:1px solid #e8e8e8;
    border-bottom:1px solid #e8e8e8;
    position:relative;
}

.policy-content {
    max-width:1100px;
    margin:0 auto;
}

.policy-content h3 {
    color:#D29B20;
    font-size:1.8rem;
    margin:40px 0 25px;
    font-weight:700;
    position:relative;
    padding-left:25px;
}

.policy-content h3::before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:5px;
    height:30px;
    background:#D29B20;
    border-radius:3px;
}

.policy-content p {
    line-height:1.9;
    color:#444;
    margin-bottom:22px;
    font-size:1.05rem;
}

.policy-content strong{
    color:#D29B20;
    font-weight:600;
}

/* GALLERY */
.gallery-section{
    padding:100px 0;
    background:#ffffff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:8px;
    transition:all 0.4s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    filter:brightness(1.1);
}

/* RESPONSIVE UPDATES */
@media (max-width:992px){
    .vm-detailed-grid{
        gap:40px;
    }
    
    .about-hero-content h1{
        font-size:3rem;
    }
    
    .section-header span::before,
    .section-header span::after{
        width:30px;
    }
    
    .section-header span::before{
        left:-40px;
    }
    
    .section-header span::after{
        right:-40px;
    }
}

@media (max-width:768px){
    .vm-detailed-grid,
    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
    
    .values-grid{
        grid-template-columns:1fr;
    }
    
    .about-hero-content h1{
        font-size:2.5rem;
    }
    
    .about-hero{
        min-height:65vh;
    }
    
    .about-section,
    .vm-detailed-section,
    .values-section,
    .policy-section,
    .gallery-section{
        padding:70px 0;
    }
    
    .section-header{
        margin-bottom:40px;
    }
    
    .section-header span::before,
    .section-header span::after{
        display:none;
    }
    
    .about-image::before{
        display:none;
    }
    
    .about-text::before{
        display:none;
    }
}

@media (max-width:576px){
    .about-hero-content h1{
        font-size:2rem;
    }
    
    .section-header h2{
        font-size:2rem;
    }
    
    .vm-detailed-box,
    .value-card{
        padding:30px 25px;
    }
    
    .gallery-grid{
        grid-template-columns:1fr;
    }
}