/* 
   =============================================
   ABOUT US PAGE STYLES (about-design.css)
   Follows SKILL.md Luxury Guidelines
   ============================================= 
*/

/* --- 1. HERO SECTION --- */
.about-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.7) 100%);
    z-index: 2;
}

/* Background Animation: Blueprint Lines & Glow */
.about-hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.5;
    pointer-events: none;
}
.hero-noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    z-index: 4;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}
.hero-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0.25;
}
.hero-bg-lines svg {
    width: 100%;
    height: 100%;
}
.blueprint-grid {
    stroke: rgba(206, 158, 81, 0.12);
    stroke-dasharray: 20 20;
}
.blueprint-line {
    stroke: rgba(206, 158, 81, 0.25);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: var(--space-4);
}

.about-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(237, 139, 51, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.about-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-4);
    font-family: var(--font-heading);
}

.about-hero p {
    font-size: 18px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: var(--space-5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- 2. BREADCRUMB --- */
.about-breadcrumb {
    background-color: var(--color-white);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.about-breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.about-breadcrumb li {
    color: var(--color-text);
}

.about-breadcrumb li a {
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.about-breadcrumb li a:hover {
    color: var(--color-primary);
}

.about-breadcrumb li.separator {
    margin: 0 10px;
    color: var(--color-text-muted);
}

/* --- 3. COMPANY STORY --- */
.about-story {
    padding: 120px 0;
    background-color: var(--color-white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 38% 56%;
    gap: 6%;
    align-items: center;
}

.about-story-images {
    position: relative;
    height: 100%;
    min-height: 550px;
}

.about-story-img-main {
    width: 80%;
    height: 75%;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-story-img-sub {
    width: 55%;
    height: 45%;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    bottom: -20px;
    right: 20px;
    border: 8px solid var(--color-white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
}

.about-story-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: var(--space-4);
    color: var(--color-dark);
}

.about-story-content p {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
    line-height: 1.8;
}

/* --- 4. VISION, MISSION, VALUES --- */
.about-vmv {
    padding: 120px 0;
    background-color: #121212;
}

.about-vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.vmv-card {
    background: #1a1a1a;
    padding: var(--space-5);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 3px solid transparent;
    border: 1px solid rgba(255,255,255,0.05);
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(206,158,81,0.05);
    border-top-color: var(--color-primary);
}

.vmv-icon {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.vmv-card h3 {
    font-size: 24px;
    margin-bottom: var(--space-3);
    color: var(--color-white);
}

.vmv-card p, .vmv-card ul {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.vmv-card ul {
    padding-left: 20px;
    margin-top: 15px;
}

.vmv-card li {
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

/* --- 5. WHY CHOOSE US --- */
.about-why {
    padding: 120px 0;
    background-color: var(--color-white);
}

.about-why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-6);
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-feature-card {
    background: #fafafa !important;
    padding: 24px !important;
    border-radius: 12px !important;
    border-left: none !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    transition: all 0.4s ease !important;
    position: relative;
    overflow: hidden;
}
.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}
.why-feature-card:hover::before {
    transform: scaleY(1);
}
.why-feature-card:hover {
    background: white !important;
    box-shadow: 0 8px 40px rgba(206,158,81,0.1) !important;
    transform: translateY(-4px) !important;
}

.why-feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px !important;
}

.why-feature-num {
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    color: var(--color-primary) !important;
    font-family: var(--font-heading) !important;
    opacity: 0.6;
}

.why-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(206,158,81,0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.4s ease;
}

.why-feature-card:hover .why-feature-icon {
    background: var(--color-primary);
    color: #fff;
    transform: rotate(15deg) scale(1.1);
}

.why-feature-card h4 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.2px;
}

.why-feature-card p {
    font-size: 13px !important;
    color: #888 !important;
    line-height: 1.6 !important;
}



/* --- 7. DESIGN PHILOSOPHY --- */
.about-philosophy {
    padding: 120px 0;
    background-color: #F8F9FA;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 58% 38%;
    gap: 4%;
    align-items: center;
}

.philosophy-content h2 {
    font-size: 40px;
    margin-bottom: var(--space-4);
}

.philosophy-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.philosophy-list li {
    background: #111;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.philosophy-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(206,158,81,0.1);
    border-color: rgba(206,158,81,0.3);
}

.philosophy-list li i {
    color: var(--color-primary);
    margin-right: 12px;
    font-size: 16px;
}

.philosophy-visual {
    position: relative;
    z-index: 1;
}

.philosophy-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    z-index: -1;
}

.philosophy-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(237, 139, 51, 0.1), transparent);
    pointer-events: none;
    border-radius: 8px;
}

/* --- 8. PROCESS TIMELINE --- */
.about-process {
    padding: 120px 0;
    background-color: var(--color-white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: var(--space-6);
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,0.05);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 15%;
}

.process-dot {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.process-step:hover .process-dot {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 16px;
    color: var(--color-dark);
}



/* --- 10. STUDIO SHOWCASE --- */
.about-studio {
    padding: 120px 0;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.about-studio-header h2 {
    color: var(--color-white);
}

.studio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.studio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.studio-item:nth-child(1) { grid-row: span 2; }
.studio-item:nth-child(4) { grid-column: span 2; }

.studio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.studio-item:hover img {
    transform: scale(1.1);
}

.studio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-3);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--color-white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.studio-item:hover .studio-caption {
    opacity: 1;
}

/* --- 11. TESTIMONIALS --- */
/* (Re-use existing sasvat-design.css testimonials slider, just need wrapper styling) */
.about-testimonials {
    padding: 120px 0;
    background-color: var(--color-white);
}

/* --- 12. FINAL CTA --- */
.about-cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-color: var(--color-dark);
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.about-cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.about-cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}


/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .about-story, .about-vmv, .about-why, .about-stats, .about-philosophy, .about-process, .about-team, .about-studio, .about-testimonials {
        padding: 80px 0;
    }
    .about-hero { 
        height: auto; 
        min-height: 100vh;
        padding: 150px 20px 80px;
    }
    .about-story-grid, .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .about-story-images {
        min-height: 400px;
        margin-bottom: var(--space-5);
    }
    .philosophy-visual {
        margin-top: 40px;
        margin-right: 15px;
    }
    .philosophy-visual::before {
        top: -15px;
        right: -15px;
    }
    .about-vmv-grid, .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
    .process-timeline::before {
        top: 0;
        left: 40px;
        width: 2px;
        height: 100%;
    }
    .process-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
    }
    .process-dot {
        margin: 0 var(--space-3) 0 0;
    }
    .studio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .studio-item:nth-child(1), .studio-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 767px) {
    .about-story, .about-vmv, .about-why, .about-stats, .about-philosophy, .about-process, .about-team, .about-studio, .about-testimonials {
        padding: 60px 0 !important;
    }
    .about-story-content {
        text-align: center;
    }
    .about-story-content .btn {
        width: 100%;
        display: block;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .about-vmv-grid, .about-stats-grid, .studio-gallery, .philosophy-list {
        grid-template-columns: 1fr;
    }
    .philosophy-visual::before {
        top: -10px;
        right: -10px;
    }
    .philosophy-visual {
        margin-right: 10px;
    }
}
