/* ===================================================================
   ABOUT PAGE — Premium Redesign (Red/White Interactive)
   =================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────── */
.about-hero {
    overflow: hidden;
    position: relative;
    /* Background gradient applied inline */
}

/* Subtle interactive pulsing mesh */
.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(184, 74, 90, 0.15) 0%, rgba(253, 253, 253, 0) 60%);
    z-index: 1;
    pointer-events: none;
    animation: slowPulse 20s ease-in-out infinite alternate;
}

.about-hero-image {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(100, 32, 39, 0.15);
    border-radius: 1.5rem;
}

.about-hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 60px rgba(100, 32, 39, 0.25);
}

.about-hero-overlay {
    z-index: 1;
    pointer-events: none;
}

/* ── Interactive Premium Cards ────────────────────────────────────── */
.about-sections {
    background: #fdfdfd; /* Ultra light red-tinted white */
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.premium-about-card {
    background: #ffffff;
    border: 1px solid rgba(184, 74, 90, 0.08);
    border-radius: 2rem;
    box-shadow: 0 15px 35px rgba(100, 32, 39, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-about-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(100, 32, 39, 0.1);
    border-color: rgba(184, 74, 90, 0.15);
}

.premium-about-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(184, 74, 90, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-about-card:hover .icon-wrapper {
    background: rgba(184, 74, 90, 0.1);
    transform: scale(1.1);
}

.premium-about-title {
    color: #642027;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.premium-about-text {
    color: #8a3b45;
    line-height: 1.7;
    font-weight: 400;
}

/* ── Company Overview ─────────────────────────────────────────────── */
.about-overview {
    background: #ffffff;
    position: relative;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.overview-icon-premium {
    width: 48px;
    height: 48px;
    background: rgba(184, 74, 90, 0.08);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b84a5a;
    transition: all 0.4s ease;
}

.overview-item:hover .overview-icon-premium {
    background: #b84a5a;
    color: #ffffff;
    transform: rotate(5deg) scale(1.05);
}

.premium-video-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(100, 32, 39, 0.12);
    border: 1px solid rgba(184, 74, 90, 0.08);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-video-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
}

.premium-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
}

/* ── Chairman Section (Glassmorphism & Overlap) ───────────────────── */
.chairman-premium {
    position: relative;
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
    background: linear-gradient(135deg, rgba(253, 253, 253, 1) 0%, rgba(245, 235, 237, 1) 100%);
    overflow: visible; /* Allow overlap */
}

/* Overlap effect pulling into the section above */
.chairman-overlap-container {
    margin-top: -4rem;
    position: relative;
    z-index: 5;
}

.premium-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(100, 32, 39, 0.08);
    padding: 4rem;
}

.chairman-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(100, 32, 39, 0.15);
    border: 4px solid #ffffff;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.chairman-avatar:hover {
    transform: scale(1.05);
}

/* ── Stats Section ────────────────────────────────────────────────── */
.about-stats {
    background: #ffffff;
    border-top: 1px solid rgba(184, 74, 90, 0.05);
}

.about-stats .counter {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: #642027;
    text-shadow: 0 10px 20px rgba(100, 32, 39, 0.05); /* Soft premium shadow, not muddy */
}

/* ── CTA ──────────────────────────────────────────────────────────── */
.about-cta-premium {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(120deg, rgba(100,32,39,0.95) 60%, rgba(184,74,90,0.9) 100%);
}

.about-cta-premium .btn-light {
    color: #642027;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.about-cta-premium .btn-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes slowPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 0.4; }
}

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
