/* =========================================================
   ELEVATED ABOUT PAGE LUXURY STYLES (DESKTOP & GENERAL)
   ========================================================= */

:root {
    --gold-primary: #d4af37;
    --bg-dark: #050505;
    --font-serif: 'Cinzel', serif;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* 1. Full-Screen Parallax Hero */
.about-hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes content to top/middle and bar to bottom */
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.75) 0%, rgba(5, 5, 5, 0.95) 100%),
        url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=1800') center/cover no-repeat fixed;
    text-align: center;
    padding: 120px 20px 0 20px;
    /* Top padding clears fixed header */
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-sizing: border-box;
}

.about-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.about-hero-inner .tag-gold {
    display: inline-block;
    border: 1px solid var(--gold-primary, #d4af37);
    color: var(--gold-primary, #d4af37);
    padding: 8px 24px;
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 25px;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(10px);
}

.about-hero-inner h1 {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-hero-inner p {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 300;
}

/* FLOATING BAR FIX: Centered Grid Container */
.hero-floating-bar {
    position: relative !important;
    bottom: -35px !important;
    /* Sitting halfway out the hero bottom */
    left: 0 !important;
    right: 0 !important;
    transform: none !important;

    width: 100% !important;
    max-width: 1150px !important;
    margin: 0 auto !important;

    background: rgba(15, 15, 15, 0.92) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 6px;
    padding: 25px 20px !important;

    /* Strict 4-Column Grid */
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    box-sizing: border-box !important;
}

.hero-stat {
    text-align: center;
    width: 100%;
}

.hero-stat .stat-num {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 32px;
    color: var(--gold-primary, #d4af37);
    font-weight: 600;
    display: block;
    line-height: 1;
}

.hero-stat .stat-lbl {
    font-size: 10px;
    letter-spacing: 2px;
    color: #aaaaaa;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
    line-height: 1.3;
}

/* 2. Split Brand Legacy Section */
.brand-story-section {
    padding: 160px 40px 120px 40px;
    background: #080808;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.story-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-box {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95);
}

.story-image-box img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.story-image-box:hover img {
    transform: scale(1.06);
}

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gold-primary);
    padding: 22px 32px;
    text-align: center;
    border-radius: 2px;
}

.story-badge .num {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--gold-primary);
    font-weight: 600;
    display: block;
    line-height: 1;
}

.story-badge .txt {
    font-size: 10px;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.story-content .sub-tag {
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.story-content h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 25px;
}

.story-content p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pillar-item i {
    color: var(--gold-primary);
    font-size: 22px;
    margin-top: 2px;
}

.pillar-item div h4 {
    font-family: var(--font-serif);
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.pillar-item div p {
    font-size: 12px;
    color: #888888;
    margin: 0;
    line-height: 1.5;
}

/* 3. In-House Engineering Showcase Section */
.engineering-section {
    padding: 120px 40px;
    background: #030303;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header-center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 70px auto;
}

.section-header-center .sub-tag {
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.section-header-center h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.25;
}

.engineering-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.eng-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.eng-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.15);
}

.eng-img-box {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.eng-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
}

.eng-card:hover .eng-img-box img {
    transform: scale(1.1);
    opacity: 1;
}

.eng-card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.eng-card-body .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: -50px;
    z-index: 2;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.eng-card h3 {
    font-family: var(--font-serif);
    font-size: 19px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.3;
}

.eng-card p {
    color: #888888;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* 4. "Why Choose Us" Feature Grid */
.why-us-section {
    padding: 120px 40px;
    background: #080808;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-box {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid var(--gold-primary);
    padding: 35px 30px;
    border-radius: 0 0 4px 4px;
    transition: all 0.3s ease;
}

.why-box:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: #ffffff;
    transform: translateY(-5px);
}

.why-box i {
    color: var(--gold-primary);
    font-size: 22px;
    margin-bottom: 18px;
    display: block;
}

.why-box h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
}

.why-box p {
    color: #888888;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* 5. Cinematic CTA Banner */
.cinematic-cta-section {
    position: relative;
    padding: 110px 30px;
    background: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?q=80&w=1600') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.cinematic-cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.88) 0%, rgba(5, 5, 5, 0.98) 100%);
    z-index: 1;
}

.cinematic-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cinematic-cta-content .cta-tag {
    color: var(--gold-primary);
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.cinematic-cta-content h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.cinematic-cta-content p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold-solid {
    background: var(--gold-primary) !important;
    color: #0a0a0a !important;
    padding: 16px 36px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-gold-solid:hover {
    background: #ffffff !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-glass-call {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px);
    color: #ffffff !important;
    padding: 16px 28px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-glass-call:hover {
    border-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
}


/* =========================================================
   TABLET BREAKPOINT (<= 1024px)
   ========================================================= */

@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .engineering-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-inner h1 {
        font-size: 46px;
    }
}


/* =========================================================
   MOBILE RESPONSIVE BREAKPOINT (<= 768px)
   ========================================================= */

@media (max-width: 768px) {

    /* 1. Hero Section Mobile Overrides */
    .about-hero {
        height: auto !important;
        min-height: unset !important;
        padding: 130px 20px 50px 20px !important;
        /* Top padding clears fixed navbar */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-hero-inner {
        width: 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .about-hero-inner .tag-gold {
        font-size: 9px !important;
        letter-spacing: 2px !important;
        padding: 6px 16px !important;
        margin-bottom: 18px !important;
    }

    .about-hero-inner h1 {
        font-size: 30px !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
        letter-spacing: 0 !important;
    }

    .about-hero-inner p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: #b0b0b0;
    }

    /* 2. Converts Floating Bar into a Clean 2x2 Grid Below Text */
    .hero-floating-bar {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 15px !important;
        padding: 22px 15px !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2x2 Clean Grid */
        gap: 20px 10px !important;
        background: rgba(15, 15, 15, 0.9) !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
        border-radius: 6px;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat .stat-num {
        font-size: 26px !important;
        line-height: 1 !important;
        margin-bottom: 4px;
    }

    .hero-stat .stat-lbl {
        font-size: 9px !important;
        letter-spacing: 1.2px !important;
        line-height: 1.3 !important;
    }

    /* 3. Section Padding Adjustments */
    .brand-story-section {
        padding: 60px 20px !important;
    }

    .story-image-box img {
        height: 300px !important;
    }

    .story-content h2 {
        font-size: 26px !important;
    }

    .story-pillars {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .engineering-section,
    .why-us-section {
        padding: 60px 20px !important;
    }

    .engineering-grid,
    .why-grid {
        grid-template-columns: 1fr !important;
    }

    .cinematic-cta-section {
        padding: 70px 20px !important;
    }

    .cinematic-cta-content h2 {
        font-size: 28px !important;
    }
}