/* ===================================
   ABOUT PAGE - ULTRA PREMIUM STYLES
   =================================== */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?w=1920') center/cover;
    filter: brightness(0.3);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(11, 11, 11, 0.9) 0%,
        rgba(229, 9, 20, 0.3) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--black);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-red);
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-number {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content {
    padding-left: 20px;
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-grey);
    margin-bottom: 20px;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 12px;
    transition: var(--transition);
}

.story-feature:hover {
    background: rgba(229, 9, 20, 0.1);
    transform: translateX(5px);
}

.story-feature i {
    font-size: 20px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.story-feature span {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--dark-grey);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(229, 9, 20, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(229, 9, 20, 0.05);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(229, 9, 20, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg);
}

.stat-icon i {
    font-size: 36px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: var(--light-grey);
    font-weight: 600;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 120px 0;
    background: var(--black);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 25px 60px rgba(229, 9, 20, 0.3);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
}

.mv-icon i {
    font-size: 36px;
    color: var(--white);
}

.mv-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.mv-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-grey);
    margin-bottom: 30px;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--light-grey);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mv-list li:last-child {
    border-bottom: none;
}

.mv-list li i {
    color: var(--primary-red);
    font-size: 12px;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: var(--dark-grey);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(229, 9, 20, 0.05);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(229, 9, 20, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 32px;
    color: var(--white);
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.value-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-grey);
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: var(--black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(229, 9, 20, 0.3);
}

.member-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    gap: 10px;
    transition: var(--transition);
}

.team-member:hover .member-social {
    transform: translateX(-50%) translateY(0);
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.member-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.5);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.member-position {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 8px;
}

.member-bio {
    font-size: 13px;
    color: var(--light-grey);
}

/* Certificates Section */
.certificates-section {
    padding: 100px 0;
    background: var(--dark-grey);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.certificate-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.certificate-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(229, 9, 20, 0.05);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(229, 9, 20, 0.3);
}

.certificate-card i {
    font-size: 60px;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.certificate-card:hover i {
    transform: rotateY(360deg);
}

.certificate-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.certificate-card p {
    font-size: 13px;
    color: var(--light-grey);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--light-grey);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .story-grid {
        gap: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        margin-top: 70px;
        min-height: 400px;
    }

    .about-hero-content {
        padding: 80px 20px;
    }

    .story-section {
        padding: 80px 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-content {
        padding-left: 0;
    }

    .story-features {
        grid-template-columns: 1fr;
    }

    .stats-section,
    .mission-vision-section,
    .values-section,
    .team-section,
    .certificates-section {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mv-card {
        padding: 35px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .story-badge {
        bottom: 15px;
        right: 15px;
        padding: 20px 25px;
    }

    .badge-number {
        font-size: 32px;
    }

    .badge-text {
        font-size: 11px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }

    .mv-card {
        padding: 25px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
    }

    .mv-icon i {
        font-size: 28px;
    }

    .mv-title {
        font-size: 24px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .certificate-card {
        padding: 30px 20px;
    }
}

/* Animation Delays */
.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: -20px auto;
    padding: 0 20px;
}

/* Page Header */
.ultra-premium-page-header {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

    .float-element.element-1 {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .float-element.element-2 {
        width: 60px;
        height: 60px;
        top: 70%;
        right: 15%;
        animation-delay: 2s;
    }

    .float-element.element-3 {
        width: 100px;
        height: 100px;
        bottom: 10%;
        left: 20%;
        animation-delay: 4s;
    }

    .float-element.element-4 {
        width: 40px;
        height: 40px;
        top: 40%;
        right: 25%;
        animation-delay: 6s;
    }

    .float-element.element-5 {
        width: 70px;
        height: 70px;
        bottom: 30%;
        right: 10%;
        animation-delay: 8s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }

    50% {
        transform: translateY(-60px) translateX(-20px) rotate(180deg);
    }

    75% {
        transform: translateY(-30px) translateX(-40px) rotate(270deg);
    }
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 60px 20px;
}

.premium-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .breadcrumb-link:hover {
        color: #ff6b35;
    }

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.current-page {
    color: #fff;
    font-weight: 600;
}

.ultra-page-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-word {
    background: linear-gradient(135deg, #ff6b35 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ultra-page-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.highlight-text {
    color: #ff6b35;
    font-weight: 600;
}

.page-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Content */
.ultra-about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

    .gradient-orb.orb-1 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
        top: 10%;
        left: 5%;
    }

    .gradient-orb.orb-2 {
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
        top: 50%;
        right: 10%;
        animation-delay: 5s;
    }

.about-content-wrapper {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    }

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

    .feature-icon i {
        font-size: 36px;
        color: #ff6b35;
    }

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Values Section */
.values-section {
    margin-top: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    }

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .value-icon i {
        font-size: 28px;
        color: #fff;
    }

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.value-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ultra-premium-page-header {
        min-height: 400px;
        margin-bottom: 40px;
    }

    .page-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .ultra-about-section {
        padding: 40px 0;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .value-card {
        padding: 30px;
    }
}

/* ========== ABOUT STORY SECTION ========== */

.ultra-premium-about {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-story {
    margin-bottom: 80px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text {
    position: relative;
    z-index: 1;
}

.story-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff6b35);
    margin: 20px 0 30px;
    border-radius: 2px;
}

.story-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
    z-index: 1;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

    .image-container img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .image-container:hover img {
        transform: scale(1.05);
    }

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.2));
    pointer-events: none;
}

/* Mission Vision Values Section */
.mvv-section {
    margin-top: 80px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 45px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-align: center;
}

    .mvv-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    }

    .mvv-card.mission {
        border-color: rgba(255, 107, 53, 0.3);
    }

    .mvv-card.vision {
        border-color: rgba(255, 107, 53, 0.3);
    }

    .mvv-card.values {
        border-color: rgba(99, 102, 241, 0.3);
    }

.mvv-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.mvv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.mvv-card.mission .mvv-icon {
    border-color: rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.15));
}

.mvv-card.vision .mvv-icon {
    border-color: rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.15));
}

.mvv-card.values .mvv-icon {
    border-color: rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.15));
}

.mvv-icon i {
    font-size: 48px;
    color: #ff6b35;
    position: relative;
    z-index: 2;
}

.mvv-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mvv-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.value-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .value-item:hover {
        background: rgba(255, 107, 53, 0.1);
        border-color: rgba(255, 107, 53, 0.3);
        transform: translateX(5px);
    }

    .value-item i {
        font-size: 18px;
        color: #ff6b35;
    }

    .value-item span {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
    }

/* Why Choose Us Section */
.why-choose-section {
    margin-top: 100px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.why-choose-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.why-choose-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-item {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

    .why-item:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    }

.why-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.why-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.why-item-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Mobile Responsive for Story Section */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mvv-card {
        padding: 35px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-item {
        padding: 30px;
    }
}

