/* Değerlerimiz Bölümü */
.values-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.values-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    font-weight: 700;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.value-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
    z-index: 0;
}

.value-item:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    background: rgba(99, 102, 241, 0.15);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon i {
    transform: scale(1.1);
}

.value-item h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-item p {
    color: #94A3B8;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Ekibimiz Bölümü */
.team-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.team-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.team-member {
    background: rgba(30, 41, 59, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
    z-index: 0;
}

.team-member:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
    background: rgba(99, 102, 241, 0.15);
}

.member-info {
    position: relative;
    z-index: 1;
}

.member-info h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: var(--primary-color);
    font-size: 1rem;
    opacity: 0.9;
}

/* Hemen Başlayın Bölümü */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 4rem auto;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.4));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.05), transparent);
    z-index: 0;
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-section p {
    color: #94A3B8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-buttons button {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.cta-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: var(--hover-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-buttons .btn-secondary:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Stats Bölümü */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.stat-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
    z-index: 0;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(99, 102, 241, 0.15);
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon i {
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: #94A3B8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Stats Responsive */
@media (max-width: 1200px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-section {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
        margin: 3rem auto;
    }

    .stat-item {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }
}

/* Features Bölümü */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.feature-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
    z-index: 0;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item h3 {
    color: var(--text-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-item p {
    color: #94A3B8;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Features Responsive */
@media (max-width: 1200px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
        margin: 3rem auto;
    }

    .feature-item {
        padding: 2rem;
    }

    .feature-item h3 {
        font-size: 1.5rem;
    }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .values-section,
    .team-section,
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .values-section .section-title,
    .team-section .section-title,
    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item,
    .team-member {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons button {
        width: 100%;
        padding: 1rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .values-section .section-title,
    .team-section .section-title,
    .cta-section h2 {
        font-size: 2rem;
    }

    .value-icon,
    .member-avatar {
        width: 70px;
        height: 70px;
    }

    .value-icon i {
        font-size: 1.75rem;
    }

    .member-avatar {
        font-size: 1.75rem;
    }
}

/* Admin Panel İçerik Bölümü */
.about-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3.5rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-color),
        transparent
    );
}

.about-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.03), 
        transparent
    );
    z-index: 0;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.about-text h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color),
        transparent
    );
    transition: width 0.3s ease;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.about-text h2:hover {
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-text h2:hover::after {
    width: 100%;
    box-shadow: 0 0 20px var(--primary-color);
}

.about-text p {
    color: #94A3B8 !important;
    line-height: 1.8 !important;
    font-size: 1.1rem !important;
    margin-bottom: 3rem !important;
    padding: 2rem !important;
    background: rgba(30, 41, 59, 0.5) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.about-text p::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.03), 
        transparent
    );
    z-index: 0;
}

/* Admin Panel İçerik Responsive */
@media (max-width: 768px) {
    .about-content {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0.75rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
}

/* About Hero Bölümü */
.about-hero-section {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-color),
        transparent
    );
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}

.about-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #94A3B8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    backdrop-filter: blur(5px);
}

/* About Hero Responsive */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 6rem 1.5rem;
    }

    .about-hero-content h1 {
        font-size: 3.5rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 4rem 1rem;
    }

    .about-hero-content h1 {
        font-size: 2.8rem;
    }

    .about-badge {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }
}