/* ===== e-IBAN Hakkimizda Sayfasi ===== */

:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-tertiary: #18181b;
    --bg-card: #1c1c1f;
    --border-color: #27272a;
    --border-subtle: #1f1f22;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-primary: #3b82f6;
    --accent-success: #22c55e;
    --accent-warning: #f59e0b;
    --accent-error: #ef4444;
    --accent-purple: #a855f7;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-y: scroll; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.8;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 12px rgba(59,130,246,0.4); }
    50% { box-shadow: 0 0 28px rgba(59,130,246,0.7); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.7s ease-out forwards;
    opacity: 0;
}
.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}
.animate-scaleIn {
    animation: scaleIn 0.5s ease-out forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */

/* Header styles managed by menu.php */

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 24px 80px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.12) 0%, rgba(99,102,241,0.06) 40%, transparent 70%);
}

/* Decorative glow orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite reverse;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 20px;
    color: var(--accent-primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* ===== MAIN / TIMELINE ===== */
.main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 24px 40px;
    position: relative;
}

/* Vertical timeline line */
.main::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--border-color), rgba(59,130,246,0.2), var(--border-color));
}

/* Timeline Section */
.timeline-section {
    position: relative;
    padding-left: 72px;
    padding-bottom: 56px;
}

.timeline-section:last-child {
    padding-bottom: 0;
}

/* Year badge + dot */
.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.year-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    margin-top: 8px;
    box-shadow: 0 0 10px rgba(59,130,246,0.4);
    flex-shrink: 0;
}

/* Timeline Card */
.timeline-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.timeline-content:hover {
    border-color: rgba(59,130,246,0.2);
    box-shadow: var(--shadow-md);
}

/* Chapter Icon */
.chapter-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Per-chapter color accents */
.timeline-section[data-chapter="1"] .chapter-icon {
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
}
.timeline-section[data-chapter="1"] .year-badge {
    border-color: #f59e0b;
    color: #f59e0b;
}
.timeline-section[data-chapter="1"] .timeline-dot {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245,158,11,0.4);
}

.timeline-section[data-chapter="2"] .chapter-icon {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}
.timeline-section[data-chapter="2"] .year-badge {
    border-color: #22c55e;
    color: #22c55e;
}
.timeline-section[data-chapter="2"] .timeline-dot {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34,197,94,0.4);
}

.timeline-section[data-chapter="3"] .chapter-icon {
    background: rgba(168,85,247,0.15);
    color: #a855f7;
}

/* Featured Section (2026) */
.featured-section .timeline-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(168,85,247,0.25);
    position: relative;
    overflow: hidden;
}

.featured-section .timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #6366f1, #3b82f6);
}

.featured-section .year-badge {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: #fff;
    border-color: transparent;
}

.featured-section .timeline-dot {
    background: #a855f7;
    box-shadow: 0 0 14px rgba(168,85,247,0.5);
}

/* Flagship Section (Infinite Link) */
.flagship-section .timeline-content {
    background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(6,182,212,0.04));
    border: 1px solid rgba(59,130,246,0.25);
    position: relative;
    overflow: hidden;
}

.flagship-section .timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #3b82f6);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.flagship-section .year-badge {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
    border-color: transparent;
}

.flagship-section .timeline-dot {
    background: #3b82f6;
    box-shadow: 0 0 14px rgba(59,130,246,0.5);
    animation: pulse 2s ease-in-out infinite;
}

.world-first-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Typography */
.timeline-content h2 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 12px;
}

.timeline-content p:last-of-type {
    margin-bottom: 0;
}

/* Quote Box */
.quote-box {
    background: rgba(59,130,246,0.06);
    border-left: 3px solid var(--accent-primary);
    padding: 18px 22px;
    margin-top: 24px;
    border-radius: 0 12px 12px 0;
}

.quote-box .fa-quote-left {
    color: var(--accent-primary);
    opacity: 0.35;
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: block;
}

.quote-box p {
    color: var(--text-primary) !important;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.founder-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    transition: border-color 0.3s;
}

.founder-card:hover {
    border-color: rgba(59,130,246,0.2);
}

/* CSS-only avatar (no image) */
.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(59,130,246,0.2);
    animation: floatUp 4s ease-in-out infinite;
}

.founder-info {
    flex: 1;
    min-width: 0;
}

.founder-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.founder-title {
    color: var(--accent-primary);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.founder-message {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.founder-closing {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.92rem;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 24px 20px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== VALUES SECTION ===== */
.values-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.values-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.values-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 640px;
    margin: 0 auto 36px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.values-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.values-card:hover {
    border-color: rgba(59,130,246,0.2);
    box-shadow: var(--shadow-md);
}

.values-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.values-card-icon-ethics {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}

.values-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.values-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.85;
    margin: 0;
}

.footer a {
    color: var(--accent-primary);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) and (orientation: portrait) {
}

@media screen and (max-width: 768px) and (orientation: landscape) {
}

@media screen and (max-width: 768px) {
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 60px;
    }

    .hero-content h1 {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.6rem;
    }

    .main {
        padding: 16px 16px 32px;
    }

    .main::before {
        left: 15px;
    }

    .timeline-section {
        padding-left: 48px;
        padding-bottom: 40px;
    }

    .timeline-content {
        padding: 24px;
    }

    .timeline-content h2 {
        font-size: 1.25rem;
    }

    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px;
    }

    .founder-section {
        padding: 24px 16px 48px;
    }

    .values-section {
        padding: 0 16px 48px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stats {
        gap: 16px;
    }
}
