/* About Section CSS - Extracted from index.html */

/* Cinematic About Section */
.about {
    background: 
        linear-gradient(135deg, #0c4a6e 0%, #1e293b 25%, #0f172a 50%, #1e293b 75%, #0c4a6e 100%),
        radial-gradient(ellipse at top, rgba(13, 148, 136, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at bottom right, rgba(12, 74, 110, 0.15) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Simplified Background Orbs */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(12, 74, 110, 0.06) 0%, transparent 50%);
    animation: gentlePulse 8s ease-in-out infinite;
    z-index: 1;
}

/* Subtle Background Layer */
.about::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(12, 74, 110, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 25%);
    animation: gentlePulse 10s ease-in-out infinite reverse;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

/* Content Header */
.about-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
    padding-top: var(--spacing-8);
}

.about-header .section-title {
    color: var(--secondary-white) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--secondary-white) !important;
    background-clip: unset !important;
    margin-bottom: var(--spacing-4);
}

.about-header .section-title::after {
    display: none !important;
}

.about-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content Grid */
.about-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-20);
}

/* Story Card */
.about-story-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: var(--spacing-10);
    grid-row: 1 / 3;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(12, 74, 110, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-story-card:hover::before {
    opacity: 1;
}

.about-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-4);
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.about-story-card:hover .card-icon,
.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    color: var(--accent-teal);
    transform: scale(1.1);
    opacity: 1;
}

.about-story-card h3 {
    color: var(--secondary-white);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-6);
    position: relative;
}

.about-story-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-teal);
    border-radius: 2px;
}

.about-story-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-6);
}

.story-highlight {
    background: rgba(13, 148, 136, 0.1);
    border-left: 3px solid var(--accent-teal);
    padding: var(--spacing-4);
    border-radius: 8px;
    margin-top: var(--spacing-6);
}

.story-highlight p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Mission & Vision Cards */
.about-mission-vision {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: var(--spacing-8);
    transition: all 0.4s ease;
    position: relative;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.mission-card h3, .vision-card h3 {
    color: var(--secondary-white);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-4);
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.mission-card p, .vision-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Logo Meaning Card */
.logo-meaning-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: var(--spacing-8);
    grid-column: 1 / 3;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-meaning-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.logo-visualization {
    margin-bottom: var(--spacing-6);
    text-align: center;
}

.efba-logo {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    border-radius: 12px;
    background: white;
    padding: var(--spacing-3);
}

.hexagon-logo {
    display: inline-block;
    position: relative;
}

.hexagon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-blue));
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: hexagonFloat 8s ease-in-out infinite;
    /* will-change removed for global performance */
}

.hex-dots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    /* animation: dotPulse 2s ease-in-out infinite; */
}

.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 0.5s; }
.dot-3 { animation-delay: 1s; }
.dot-4 { animation-delay: 1.5s; }

.logo-meaning-card h3 {
    color: var(--secondary-white);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-6);
    margin-top: var(--spacing-4);
    text-align: center;
}

.logo-meaning-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-8);
    text-align: center;
    max-width: 600px;
}

.logo-principles {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-2);
}

.principle {
    background: rgba(13, 148, 136, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    border: 1px solid rgba(13, 148, 136, 0.3);
}

/* EFBA Values Showcase */
.efba-values-showcase {
    text-align: center;
    margin-bottom: var(--spacing-20);
    padding: var(--spacing-16) 0;
    position: relative;
}

.values-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary-white);
    margin-bottom: var(--spacing-6);
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.values-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-16);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.values-interactive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-6);
    margin-top: var(--spacing-16);
    padding: 0 var(--spacing-4);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-interactive-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%),
        radial-gradient(circle at top left, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(12, 74, 110, 0.1) 0%, transparent 50%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: var(--spacing-8);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.value-interactive-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(13, 148, 136, 0.4) 0%, 
        rgba(37, 99, 235, 0.4) 25%,
        rgba(139, 92, 246, 0.4) 50%,
        rgba(236, 72, 153, 0.4) 75%,
        rgba(13, 148, 136, 0.4) 100%);
    border-radius: 34px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(1px);
}

.value-interactive-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.value-interactive-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(13, 148, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-white);
    margin: 0 auto var(--spacing-6);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(13, 148, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.value-icon i {
    font-size: 2.5rem;
    color: inherit;
    display: block;
}

/* Individual gradient themes for each value */
.value-interactive-card[data-value="etik"] .value-icon {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #5eead4 100%);
}

.value-interactive-card[data-value="farkindalik"] .value-icon {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
}

.value-interactive-card[data-value="bilim"] .value-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%);
}

.value-interactive-card[data-value="akilcilik"] .value-icon {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #f9a8d4 100%);
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    bottom: -2px;
    background: inherit;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.value-interactive-card:hover .value-icon::before {
    opacity: 0.7;
}

.value-interactive-card:hover .value-icon {
    transform: scale(1.08);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(13, 148, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.value-interactive-card h4 {
    color: var(--secondary-white);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.value-interactive-card:hover h4 {
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.value-interactive-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    max-width: 240px;
    text-align: center;
}

.value-interactive-card:hover p {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

/* Additional Interactive Effects */
.value-interactive-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 1;
}

.value-interactive-card:hover::after {
    width: 150px;
    height: 150px;
    opacity: 0.8;
}

/* Staggered entrance animations */
.value-interactive-card[data-value="etik"] {
    animation-delay: 0.1s;
}

.value-interactive-card[data-value="farkindalik"] {
    animation-delay: 0.2s;
}

.value-interactive-card[data-value="bilim"] {
    animation-delay: 0.3s;
}

.value-interactive-card[data-value="akilcilik"] {
    animation-delay: 0.4s;
}

/* Card content entrance animations */
@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-interactive-card.animate {
    animation: cardSlideUp 0.8s ease-out forwards;
}

/* Floating animation for value icons */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

.value-interactive-card:hover .value-icon {
    animation: iconFloat 2s ease-in-out infinite;
}

/* Decorative Elements for About Section */
.about-molecular-structure {
    position: absolute;
    width: 200px;
    height: 200px;
    left: 8%;
    top: 25%;
    opacity: 0.06;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(13,148,136);stop-opacity:1" /><stop offset="100%" style="stop-color:rgb(12,74,110);stop-opacity:1" /></linearGradient></defs><g fill="none" stroke="url(%23grad)" stroke-width="2"><circle cx="50" cy="50" r="8"/><circle cx="150" cy="50" r="8"/><circle cx="100" cy="100" r="8"/><circle cx="50" cy="150" r="8"/><circle cx="150" cy="150" r="8"/><line x1="50" y1="50" x2="150" y2="50"/><line x1="150" y1="50" x2="100" y2="100"/><line x1="100" y1="100" x2="50" y2="150"/><line x1="50" y1="150" x2="150" y2="150"/><line x1="50" y1="50" x2="100" y2="100"/></g></svg>') no-repeat center;
    background-size: contain;
    animation: slowFade 15s ease-in-out infinite;
    z-index: 0;
}

.about-hexagonal-grid {
    position: absolute;
    width: 250px;
    height: 250px;
    right: 8%;
    bottom: 15%;
    opacity: 0.03;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(255,255,255,0.08) 35px, rgba(255,255,255,0.08) 37px),
        repeating-linear-gradient(60deg, transparent, transparent 35px, rgba(255,255,255,0.08) 35px, rgba(255,255,255,0.08) 37px);
    z-index: 0;
}

.about-particle-storm {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    opacity: 0.7;
}

.about-particle-storm .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(13, 148, 136, 0.4);
    border-radius: 50%;
    animation: simpleParticleFloat 12s linear infinite;
}

.about-particle-storm .particle-1 {
    left: 15%;
    top: 25%;
    animation-delay: 0s;
}

.about-particle-storm .particle-2 {
    left: 75%;
    top: 65%;
    animation-delay: 6s;
    background: rgba(59, 130, 246, 0.4);
}

/* About Section Animations */
@keyframes gentlePulse {
    0%, 100% { 
        opacity: 0.3;
    }
    50% { 
        opacity: 0.5;
    }
}

@keyframes slowFade {
    0%, 100% { 
        opacity: 0.06;
    }
    50% { 
        opacity: 0.1;
    }
}

@keyframes simpleParticleFloat {
    0% { 
        transform: translateY(0);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-20px);
        opacity: 0.4;
    }
    100% { 
        transform: translateY(-40px);
        opacity: 0;
    }
}

/* Advanced Values Section */
.values {
    background: var(--secondary-white);
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(12, 74, 110, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(13, 148, 136, 0.02) 0%, transparent 50%);
}

.values .container {
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-10);
}

.value-card {
    background: rgba(255, 255, 255, 0.85);
    padding: var(--spacing-10);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.value-card:hover::after {
    opacity: 1;
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-6);
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    font-size: var(--font-size-2xl);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-white);
    font-weight: 700;
    font-size: var(--font-size-xl);
    box-shadow: 
        0 8px 16px rgba(12, 74, 110, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        0 12px 24px rgba(12, 74, 110, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: var(--font-size-base);
}