/* =========================================
   1. FONTS & IMPORTS (DOKUNULMADI)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================
   2. GLOBAL VARIABLES
   ========================================= */
:root {
    --primary-color: #212842;
    --accent-color: #3b82f6;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #94a3b8;
    --bg-white: #ffffff;
    --bg-soft: #f8fafc;
    --neon-blue: #00d2ff;

    /* YENİ: Innovative Renk Paleti (Gradientler) */
    --gradient-purple: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --gradient-pink: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);

    --transition: all 0.3s ease;
    --container-width: 1200px;
}

/* =========================================
   3. BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   4. NAVBAR (ORİJİNAL)
   ========================================= */
.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar__logo img {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 35%;
    padding: 2px;
    object-fit: contain;
}

.navbar__text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
}

.brand-slogan {
    color: #94a3b8;
    font-size: 0.8rem;
}

.navbar__menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bg-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--bg-white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {

    .navbar__menu,
    .navbar__action {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* =========================================
   5. CONTACT MODAL (ORİJİNAL)
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-wide-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-wide-wrapper {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-split-container {
    display: flex;
    min-height: 550px;
}

.modal-left-side {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-white);
}

.form-header {
    margin-bottom: 35px;
}

.mini-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.1;
}

.form-header p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.aesthetic-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-wrapper {
    position: relative;
    height: 50px;
    margin-top: 10px;
}

.input-wrapper:has(textarea) {
    height: auto;
}

.aesthetic-form input,
.aesthetic-form textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
    border: none;
    border-bottom: 1px solid #e2e8f0;
    background: transparent;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.aesthetic-form textarea {
    resize: none;
    min-height: 60px;
}

.aesthetic-form label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s ease;
}

.aesthetic-form input:focus~label,
.aesthetic-form input:not(:placeholder-shown)~label,
.aesthetic-form textarea:focus~label,
.aesthetic-form textarea:not(:placeholder-shown)~label {
    top: -12px;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: 0.4s ease;
}

.aesthetic-form input:focus~.input-highlight,
.aesthetic-form textarea:focus~.input-highlight {
    width: 100%;
}

.cyber-submit-v2 {
    margin-top: 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.cyber-submit-v2:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.modal-right-side {
    flex: 1;
    position: relative;
    background-color: var(--primary-color);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.side-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.image-text-content {
    position: relative;
    z-index: 3;
    color: #fff;
    width: 100%;
}

.image-text-content h4 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

@media (max-width: 900px) {
    .modal-split-container {
        flex-direction: column-reverse;
    }

    .modal-right-side {
        height: 200px;
        padding: 20px;
    }

    .modal-left-side {
        padding: 30px 20px;
    }

    .modal-wide-wrapper {
        margin: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-close-btn {
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.4);
    }
}

/* =========================================
   6. HERO SECTION (ORİJİNAL)
   ========================================= */
.about-hero-v2 {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    overflow: hidden;
    padding: 60px 0;
}

.network-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle at center, var(--accent-color) 1px, transparent 1px), radial-gradient(circle at center, var(--primary-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.08;
    animation: moveNetwork 120s linear infinite;
}

@keyframes moveNetwork {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

.node {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    animation: floatNode 15s infinite alternate ease-in-out;
}

@keyframes floatNode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(30px, -40px) scale(1.3);
        opacity: 0.9;
    }

    100% {
        transform: translate(-20px, 40px) scale(0.9);
        opacity: 0.5;
    }
}

.node-1 {
    top: 15%;
    left: 10%;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    animation-duration: 20s;
}

.node-2 {
    top: 75%;
    left: 85%;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    animation-duration: 25s;
}

.node-3 {
    top: 60%;
    left: 20%;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    animation-duration: 18s;
}

.node-4 {
    top: 25%;
    left: 70%;
    width: 12px;
    height: 12px;
    background: #10b981;
    animation-duration: 22s;
}

.node-5 {
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    animation-duration: 30s;
    opacity: 0.3;
}

.about-v2-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    width: 100%;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-tag .line {
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.about-text-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(to right, var(--accent-color), #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-desc {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 95%;
}

.mission-quote {
    position: relative;
    border-left: 5px solid var(--accent-color);
    background: linear-gradient(to right, #f8fafc, #fff);
    padding: 30px;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.mission-quote p {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.mission-quote span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-gallery {
    position: relative;
    height: 500px;
    width: 100%;
}

.gallery-item {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(33, 40, 66, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-img {
    width: 70%;
    height: 90%;
    top: 0;
    left: 0;
    z-index: 1;
}

.sub-img-1 {
    width: 45%;
    height: 50%;
    bottom: 20px;
    right: 0;
    z-index: 2;
    border: 8px solid var(--bg-white);
}

.sub-badge {
    width: 150px;
    height: 150px;
    top: 40px;
    right: 40px;
    z-index: 3;
    background: linear-gradient(135deg, var(--primary-color), #1e293b);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 6px solid var(--bg-white);
    border-radius: 50%;
    animation: floatBadge 5s ease-in-out infinite;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.badge-content .year {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-content .label {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.about-gallery:hover .main-img {
    transform: scale(1.02);
    z-index: 2;
}

.about-gallery:hover .sub-img-1 {
    transform: translateX(10px) translateY(10px);
}

/* =========================================
   7. YENİ: INNOVATIVE ABOUT US & MISSION
   ========================================= */
.about-us-innovative {
    background-color: var(--bg-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Arka Plan Dekoratif Blob (Bulanık Renkler) */
.innovative-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    animation: blobFloat 10s infinite alternate ease-in-out;
}

.blob-1 {
    top: -100px;
    left: -100px;
    background: #6366f1;
}

.blob-2 {
    bottom: -100px;
    right: -100px;
    background: #6366f1;
}

@keyframes blobFloat {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 50px);
    }
}

.innovative-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    position: relative;
    z-index: 1;
}

/* Sol Taraf: Metin */
.innovative-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.innovative-title {
    font-size: 3.2rem;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

/* Hareketli Gradient Metin */
.gradient-text-anim {
    background: linear-gradient(270deg, #6366f1, #ec4899, #3b82f6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.innovative-desc {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Founder Box */
.founder-box {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: fit-content;
}

.founder-avatar {
    width: 60px;
    /* Fotoğraf olduğu için biraz büyüttük */
    height: 60px;
    border-radius: 50%;
    /* Yuvarlak çerçeve */
    overflow: hidden;
    /* Resmin taşmasını engelle */
    border: 2px solid var(--accent-color);
    /* Şık bir mavi çerçeve ekledik */
    /* Eski ikon ortalama ve renk kodlarını kaldırdık */
}

/* Yeni eklenen resim için kural */
.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi bozmadan çerçeveye sığdır */
    display: block;
}

.founder-details h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.founder-details span {
    color: #6366f1;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Sağ Taraf: Kartlar */
.innovative-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.innovative-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.innovative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

/* İkonlar ve Renkler */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.innovative-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

.gradient-1 {
    background: var(--gradient-purple);
}

.gradient-2 {
    background: var(--gradient-cyan);
}

.gradient-3 {
    background: var(--gradient-orange);
}

.gradient-4 {
    background: var(--gradient-pink);
}

.innovative-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.innovative-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Alt Sınır Gradient Efekti */
.card-border-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.innovative-card:hover .card-border-gradient {
    transform: scaleX(1);
}

/* STATS (Floating White Box) */
.stats-innovative-container {
    margin-top: 100px;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    flex: 1;
}

.gradient-num {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin: 0;
}

.plus {
    font-size: 2rem;
    color: #cbd5e1;
    font-weight: 300;
}

.stat-box p {
    color: var(--text-medium);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-separator {
    width: 1px;
    height: 60px;
    background: #e2e8f0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .innovative-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .innovative-title {
        font-size: 2.5rem;
    }

    .stats-innovative-container {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .stat-separator {
        display: none;
    }

    .stat-box {
        min-width: 45%;
    }
}

@media (max-width: 576px) {
    .innovative-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .stat-box {
        min-width: 100%;
    }
}

/* =========================================
   8. TEAM SECTION
   ========================================= */
.clean-team-section {
    background-color: #f8fafc;
    padding: 80px 0;
    overflow: hidden;
}

.section-header.center-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    color: #0f172a;
    font-size: 2.5rem;
    margin-top: 5px;
}

.section-desc {
    color: #64748b;
    margin-top: 15px;
    font-size: 1.1rem;
}

.slider-container {
    position: relative;
    padding: 20px 0;
    margin-top: 20px;
}

.team-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 20px 10px;
    scroll-behavior: smooth;
    width: 100%;
    cursor: grab;
}

.team-slider-track::-webkit-scrollbar {
    display: none;
}

.team-slider-track:active {
    cursor: grabbing;
}

.team-card-hover {
    width: 300px;
    height: 450px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: #000;
}

.team-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card-hover:hover .team-bg-img {
    transform: scale(1.15);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 40, 66, 0.98) 0%, rgba(33, 40, 66, 0.85) 60%, rgba(33, 40, 66, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    backdrop-filter: blur(2px);
}

.team-card-hover:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-overlay h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(10px);
    transition: 0.4s 0.1s;
}

.role-accent {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: 0.4s 0.2s;
}

.team-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
    transform: translateY(10px);
    transition: 0.4s 0.3s;
}

.team-card-hover:hover h4,
.team-card-hover:hover .role-accent,
.team-card-hover:hover p {
    transform: translateY(0);
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 12px;
}

.pagination-dot {
    width: 40px;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: #475569;
}

.pagination-dot:hover {
    background-color: #94a3b8;
}

/* =========================================
   9. FOOTER (ORİJİNAL)
   ========================================= */
.footer {
    background-color: var(--primary-color);
    color: #94a3b8;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    font-size: 0.9rem;
}