/* ===================================
   ABOUT PAGE - MODERN & PREMIUM
   =================================== */

.page-hero-modern {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    text-align: center;
    color: white;
}

.page-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 163, 224, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #00A3E0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 1.1;
}

.page-hero-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Breadcrumb */
.breadcrumb-modern {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.breadcrumb-modern a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-modern a:hover {
    color: white;
}

.breadcrumb-modern span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.breadcrumb-modern .active {
    color: #00A3E0;
    font-weight: 600;
}

/* About Intro Section */
.about-intro-section {
    padding: 3rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(10deg);
    transition: transform 0.5s ease;
}

.about-intro-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-intro-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-intro-content .lead {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.about-intro-content p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mission & Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.mv-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.08);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 163, 224, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #0066CC;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.mv-card:hover .mv-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--deep-blue);
}

/* Override for About page compactness */
.why-choose-section {
    padding: 3rem 0 !important;
}

.why-premium-grid {
    gap: 1.5rem !important;
    margin-top: 2rem !important;
}

.why-premium-card {
    padding: 1.5rem !important;
    min-height: auto !important;
}

/* Team Preview Section */
.team-preview-section {
    padding: 6rem 0;
    background: white;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-intro-image {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-modern {
        padding: 140px 0 80px;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .mv-card {
        padding: 2rem;
    }
}

/* ===================================
   PARENT COMPANY SECTION
   =================================== */
.parent-company-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    position: relative;
    border-top: 1px solid var(--light-gray);
}

.parent-company-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.parent-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.parent-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.parent-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.cert-pill {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--deep-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cert-pill:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.cert-pill i {
    color: var(--primary-blue);
}

.parent-logo-card {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.parent-logo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.unicorn-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.unicorn-icon i {
    color: #0f172a;
}

.parent-logo-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.parent-logo-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.unicorn-location {
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.unicorn-logo-img {
    max-width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@media (max-width: 900px) {
    .parent-company-grid {
        grid-template-columns: 1fr;
    }

    .parent-logo-card {
        padding: 2rem;
        order: -1;
    }
}