/* About Page Specific Styles */

/* Base overrides and layout */
.py-6 {
    padding-top: clamp(3rem, 8vw, 8rem);
    padding-bottom: clamp(3rem, 8vw, 8rem);
}

.font-light {
    font-weight: 300;
}

/* Cinematic Hero Section */
.about-hero-section {
    position: relative;
    min-height: 80vh;
    padding-top: 140px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 991px) {
    .about-hero-section {
        min-height: 53vh;
        padding-top: 120px;
    }
}

.about-hero-section .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero-section .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.about-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.1) 50%, #050505 100%);
    z-index: 2;
}

/* Story Section */
.story-content-panel {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
    margin-right: -100px;
}

@media (max-width: 991px) {
    .story-content-panel {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

.story-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: clamp(300px, 50vw, 600px);
}

.story-image-wrapper img,video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.story-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(197, 160, 89, 0.1) 0%, transparent 100%);
}

/* Luxury Statistics Section */
.stats-premium {
    background: #0a0a0a;
}

.stat-premium-card {
    position: relative;
    padding: clamp(1.5rem, 4vw, 3rem) 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.stat-premium-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 160, 89, 0.3);
}

.stat-premium-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.stat-premium-card:hover .stat-premium-glow {
    opacity: 1;
}

.stat-premium-number {
    position: relative;
    z-index: 2;
}

.stat-premium-label {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Founder Vision Section */
.founder-image-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: clamp(400px, 60vw, 700px);
}

.founder-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.founder-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #050505 0%, transparent 40%, transparent 100%);
}

.founder-quote-block {
    position: relative;
}

.founder-quote-icon {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6rem);
    color: rgba(197, 160, 89, 0.2);
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
    z-index: -1;
}

.founder-quote-text {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Interactive Company Journey */
.journey-timeline {
    padding: 2rem 0;
}

.journey-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(197, 160, 89, 0.3) 10%, rgba(197, 160, 89, 0.3) 90%, transparent 100%);
}

@media (min-width: 992px) {
    .journey-line {
        left: 50%;
        transform: translateX(-50%);
    }
    
}

.journey-item {
    position: relative;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    padding-left: 60px;
}

@media (min-width: 992px) {
    .journey-item {
        flex-direction: row;
        align-items: center;
        padding-left: 0;
        justify-content: space-between;
    }

    .journey-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.journey-year {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .journey-year {
        width: 50%;
        text-align: right;
        padding-right: 4rem;
        margin-bottom: 0;
    }

    .journey-item:nth-child(even) .journey-year {
        text-align: left;
        padding-right: 0;
        padding-left: 4rem;
    }

    .journey-item::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: var(--color-primary);
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
        z-index: 3;
    }
}

.journey-content-panel {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 4px;
    width: 100%;
}

@media (min-width: 992px) {
    .journey-content-panel {
        width: calc(50% - 4rem);
    }
   
}

/* Core Values Showcase */
.value-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 4px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.3);
    background: rgba(25, 25, 25, 0.9);
}

.value-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
    filter: blur(30px);
    transition: all 0.4s ease;
}

.value-card:hover .value-glow {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
}

/* Team Section */
.team-premium-section {
    background: #050505;
}

.team-premium-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: clamp(400px, 50vw, 500px);
    cursor: pointer;
}

.team-premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(30%);
}

.team-premium-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: all 0.4s ease;
}

.team-premium-card:hover .team-premium-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 60%);
}

.team-premium-info {
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.team-premium-card:hover .team-premium-info {
    transform: translateY(0);
}

/* Client Trust Section */
.recognition-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    min-width: 200px;
}

.testimonial-premium-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Premium CTA Section */
.premium-cta-section {
    background: #000;
}

.cta-bg-glow {
    position: absolute;
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-glass-panel {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 4px;
}
@media (max-width: 1300px) {
    .about-hero-section {
        min-height: 51vh;
        padding-top: 12px;
    }
}
@media (max-width: 992px) {
 .story-image-wrapper {

    height: clamp(300px, 82vw, 600px);
 }
}