:root {
    --primary: #000000;
    --primary-light: #1a1a1a;
    --accent: #b49164;
    --accent-dark: #8e6f4a;
    --text-dark: #111111;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --white: #ffffff;
    --accent-glow: rgba(180, 145, 100, 0.2);
}
/* Header and global styles managed by home.css */

/* About Hero */
.about-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(78, 77, 77, 0.7)), url('/assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 1px solid var(--accent-glow);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumbs span.current {
    color: var(--accent);
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #ffffff;
    color: #111111;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #000000;
    font-weight: 800;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 20px;
    text-align: justify;
}

.vision-mission-full p {
    font-size: 18px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 20px;
    text-align: justify;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.story-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-radius: 0 20px 0 0;
}

/* Values Grid */
.values-section {
    padding: 80px 0;
    background: #ffffff;
    color: #111111;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #000000;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fbfbfb;
    border: 1px solid #eeeeee;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.value-card i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000000;
}

.value-card p {
    color: #666666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: #F8F9FA;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    color: #000000;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 20px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Footer Social Icons */
.footer-social-v3 {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px !important; /* Strict 10px side padding */
    }

    /* Cinematic Hero Mobile */
    .about-hero {
        height: 320px;
        background-attachment: scroll; /* Smoother on mobile */
    }

    .hero-content h1 {
        font-size: 32px;
        color: white;
        letter-spacing: 1px;
    }

    /* Story Section Stack */
    .story-section {
        padding: 60px 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .story-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .story-image img {
        border-radius: 20px;
    }

    .story-image::after {
        width: 60px;
        height: 60px;
        top: -10px;
        right: -10px;
    }

    /* Premium Stats Grid (2x2) */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
        text-align: center;
    }

    .stat-item h3 {
        font-size: 30px;
        margin-bottom: 2px;
    }

    .stat-item p {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    /* Elite Values Section */
    .values-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .value-card i {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .value-card h3 {
        font-size: 20px;
    }

    .value-card p {
        font-size: 14px;
    }

    /* Footer Mobile Consistency */
    .footer {
        padding: 50px 0 20px;
        margin-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }
}
