/* About Page Specific Styles */

/* ========================================
   Scroll Progress & Floating Elements
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.12;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-purple);
    top: 10%;
    left: -10%;
    animation: floatShape1 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    top: 50%;
    right: -5%;
    animation: floatShape2 25s ease-in-out infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-yellow);
    bottom: 10%;
    left: 30%;
    animation: floatShape3 18s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(50px, -30px) scale(0.95); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, -60px) scale(1.15); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.1); }
    75% { transform: translate(-40px, 30px) scale(0.9); }
}

/* ========================================
   Page Hero Section - Like Homepage
   ======================================== */
.page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 0 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
}

.hero-particles {
    position: absolute;
    inset: 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.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-yellow);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.page-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    font-size: 1.6rem;
}

.highlight-item strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-light {
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* Hero Visual */
.page-hero-visual {
    position: relative;
    z-index: 2;
}

.page-hero-visual img,
.hero-illustration {
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--white);
    transform: translateY(5px);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Section Styling */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.about-story {
    padding: 100px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.story-content .section-badge {
    margin-bottom: 20px;
}

.story-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-visual {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-violet) 100%);
    border-radius: 20px;
    padding: 40px;
}

.story-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.story-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.mv-card.mission::before {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mv-card.vision::before {
    background: linear-gradient(90deg, var(--accent-violet), var(--accent-yellow));
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
}

.mv-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.mv-card > p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.mv-points {
    list-style: none;
    padding: 0;
}

.mv-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.mv-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Core Values Section */
.core-values {
    padding: 100px 0;
    background: #0F172A;
}

.core-values .section-badge {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.core-values .section-title {
    color: white;
}

.core-values .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    padding: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #1E293B 0%, #1E1B4B 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
    border-color: rgba(129, 140, 248, 0.5);
}

.value-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
}

.value-image img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.value-card:hover .value-image img {
    transform: scale(1.1);
}

.value-content {
    padding: 25px 30px 30px;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.advantage-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.advantage-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #0F172A;
}

.team-section .section-badge {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.team-section .section-title {
    color: white;
}

.team-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.team-stat-card {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, #1E293B 0%, #1E1B4B 100%);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.team-stat-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #2D3A52 0%, #312E81 100%);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.3);
}

.team-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.team-stat-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.team-stat-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.team-stat-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Team Culture */
.team-culture {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #4C1D95 100%);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(30, 27, 75, 0.4);
}

.team-culture h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.culture-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.culture-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.culture-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.culture-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.culture-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.culture-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Certifications Section */
.certifications {
    padding: 100px 0;
    background: #0F172A;
}

.certifications .section-badge {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.certifications .section-title {
    color: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-card {
    background: linear-gradient(135deg, #1E293B 0%, #1E1B4B 100%);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.3);
    overflow: hidden;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
    border-color: rgba(129, 140, 248, 0.5);
}

.cert-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    padding: 15px;
}

.cert-image img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cert-card:hover .cert-image img {
    transform: scale(1.1);
}

.cert-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 20px 20px 10px;
}

.cert-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    padding: 0 20px 25px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .page-hero-grid {
        gap: 40px;
    }
    
    .culture-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .page-hero {
        min-height: auto;
        padding: 120px 0 100px;
    }
    
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .page-hero-content {
        order: 1;
    }
    
    .page-hero-visual {
        order: 2;
    }
    
    .page-description {
        max-width: 100%;
    }
    
    .hero-highlights {
        align-items: center;
    }
    
    .highlight-item {
        justify-content: flex-start;
        max-width: 400px;
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .page-hero-visual img,
    .hero-illustration {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 12px 15px;
    }
    
    .highlight-item strong {
        font-size: 0.9rem;
    }
    
    .highlight-item p {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-light,
    .btn-outline-light {
        text-align: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-shapes {
        display: none;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture-intro {
        font-size: 1rem;
    }
    
    .team-culture {
        padding: 40px 25px;
    }
    
    .story-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .team-highlights {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 30px 25px;
    }
}
