.about-hero-ultra {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(220, 53, 69, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(220, 53, 69, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Grid Pattern */
.about-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(220, 53, 69, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 53, 69, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Floating Shapes */
.about-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: aboutShapeFloat 20s ease-in-out infinite;
}

.about-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.about-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.15) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -10s;
}

@keyframes aboutShapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Floating Particles */
.about-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.about-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(220, 53, 69, 0.6);
    border-radius: 50%;
    animation: aboutParticleRise 15s linear infinite;
}

.about-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.about-particle:nth-child(2) { left: 25%; animation-delay: -3s; }
.about-particle:nth-child(3) { left: 40%; animation-delay: -6s; }
.about-particle:nth-child(4) { left: 55%; animation-delay: -9s; }
.about-particle:nth-child(5) { left: 70%; animation-delay: -12s; }
.about-particle:nth-child(6) { left: 85%; animation-delay: -15s; }

@keyframes aboutParticleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Hero Content */
.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Animated Badge */
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: aboutBadgePulse 3s ease-in-out infinite;
}

.about-hero-badge i {
    color: #dc3545;
    font-size: 18px;
}

.about-hero-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes aboutBadgePulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px 5px rgba(220, 53, 69, 0.2);
        transform: scale(1.02);
    }
}

/* Hero Title */
.about-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.about-hero-title .about-gradient-text {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b7a 50%, #dc3545 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aboutGradientShift 4s ease-in-out infinite;
}

@keyframes aboutGradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Hero Subtitle */
.about-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Hero Stats */
.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.about-hero-stat {
    text-align: center;
    padding: 24px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    min-width: 140px;
}

.about-hero-stat:hover {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    transform: translateY(-8px);
}

.about-hero-stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #dc3545;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.about-hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Wave Separator */
.about-wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
}

.about-wave-separator svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

/* ============================================
   Our Story Section - Simple
   ============================================ */

.about-story-section {
    background: #ffffff;
    padding: 80px 0;
}

.about-mvv-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0;
    position: relative;
}

.about-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-section-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* MVV Cards */
.about-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-mvv-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b7a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-mvv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(220, 53, 69, 0.15);
}

.about-mvv-card:hover::before {
    transform: scaleX(1);
}

.about-mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 32px;
    color: white;
    transition: all 0.4s ease;
}

.about-mvv-card:hover .about-mvv-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-mvv-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-mvv-text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.about-features-section {
    background: #0a0a0a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 20% 20%, rgba(220, 53, 69, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 80%, rgba(220, 53, 69, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-features-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-features-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-features-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.about-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #dc3545, #ff6b7a);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.about-feature-card:hover {
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.3);
    transform: translateX(8px);
}

.about-feature-card:hover::before {
    transform: scaleY(1);
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
    transition: all 0.4s ease;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1);
}

.about-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.about-feature-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */

.about-cta-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.about-cta-btn-primary {
    background: #ffffff;
    color: #dc3545;
}

.about-cta-btn-primary:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-cta-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.about-cta-btn-outline:hover {
    background: #ffffff;
    color: #dc3545;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 52px;
    }
    
    .about-section-title,
    .about-features-title,
    .about-story-title {
        font-size: 36px;
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero-ultra {
        padding: 120px 0 100px;
    }
    
    .about-hero-title {
        font-size: 42px;
    }
    
    .about-story-section {
        padding: 60px 0;
    }
    
    .about-mvv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-stats {
        gap: 20px;
    }
    
    .about-hero-stat {
        padding: 20px 28px;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .about-hero-ultra {
        padding: 100px 0 80px;
    }
    
    .about-hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .about-hero-stat-value {
        font-size: 32px;
    }
    
    .about-story-section,
    .about-mvv-section,
    .about-features-section {
        padding: 50px 0;
    }
    
    .about-section-title,
    .about-features-title,
    .about-cta-title {
        font-size: 28px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero-badge {
        padding: 10px 20px;
    }
    
    .about-hero-badge span {
        font-size: 12px;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-stats {
        gap: 12px;
    }
    
    .about-hero-stat {
        padding: 16px 20px;
        min-width: 100px;
    }
    
    .about-hero-stat-value {
        font-size: 28px;
    }
    
    .about-mvv-card,
    .about-feature-card {
        padding: 28px;
    }
}

