﻿
* {
    box-sizing: border-box;
    user-select: !important;
    -webkit-user-select: !important;
    -moz-user-select: !important;
    -ms-user-select: !important;
}

html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

body {
    height: auto;
    width: 100%;
    overflow-x: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    user-select: !important;
    -webkit-user-select: !important;
}

/* Header Styles */
.topstrip {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 12px 0;
    border-bottom: 3px solid #a32638;
    position: relative;
    z-index: 50;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.social-icons li a {
    width: 38px;
    height: 38px;
    background: #a32638;
    border-radius: 8px;
    color: #1a1a2e;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
    position: relative;
    overflow: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .social-icons li a svg {
        width: 16px;
        height: 16px;
    }




/* site.css */
.x-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

    .x-icon::before,
    .x-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
    }

    .x-icon::before {
        transform: rotate(45deg);
    }

    .x-icon::after {
        transform: rotate(-45deg);
    }

    /* Font Awesome ikonunu gizle (eğer varsa) */
    .x-icon i.fab {
        display: none;
    }





@media (max-width: 768px) {
    .social-icons li a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .social-icons li a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

.social-icons li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-icons li a:hover {
    background: #fcb514;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.6);
}

    .social-icons li a:hover::before {
        width: 120px;
        height: 120px;
    }

.main-header {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 3px solid #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .main-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    }

.main-logo-container-topstrip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    z-index: 100;
    user-select: !important;
    -webkit-user-select: !important;
}

    .main-logo-container-topstrip img {
        width: 120px;
        height: 120px;
        object-contain;
        filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.3));
        user-select: !important;
        -webkit-user-select: !important;
    }

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    user-select: !important;
    -webkit-user-select: !important;
}

    .nav-menu > li {
        position: relative;
        display: inline-block;
    }

        .nav-menu > li > a {
            display: block;
            padding: 18px 18px;
            color: #1a1a2e;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 14px;
            text-transform: capitalize;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
            user-select: !important;
            -webkit-user-select: !important;
        }

            .nav-menu > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 0;
                height: 3px;
                background: #a32638;
                transition: all 0.3s ease;
                transform: translateX(-50%);
            }

            .nav-menu > li > a:hover {
                color: #a32638;
            }

                .nav-menu > li > a:hover::after {
                    width: 80%;
                }

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    user-select: !important;
    -webkit-user-select: !important;
    z-index: 100;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }

    .hamburger-btn {
        display: flex !important;
    }
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 16px 0;
    user-select: !important;
    -webkit-user-select: !important;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

    .mobile-nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-menu li {
    display: block;
}

.mobile-nav-menu a {
    display: block;
    padding: 16px 24px;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    user-select: !important;
    -webkit-user-select: !important;
}

    .mobile-nav-menu a:hover {
        background: rgba(26, 26, 46, 0.1);
        border-left-color: #1a1a2e;
        padding-left: 32px;
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #00d4ff;
    overflow-y: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
    }

.hero-content {
    position: relative;
    z-index: 2;
}

    .hero-content h1 {
        color: #00d4ff !important;
        text-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
        animation: fadeInDown 0.8s ease-out;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .hero-content p {
        color: #ffd700 !important;
        animation: fadeInUp 0.8s ease-out 0.2s both;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .hero-content > div {
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Academy Programs Section */
.academy-section {
    background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .academy-section::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -50px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
    }

    .academy-section::after {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
    }

.section-divider {
    position: relative;
    padding: 20px 0;
    text-align: center;
}

    .section-divider::before,
    .section-divider::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    }

    .section-divider::before {
        top: 0;
    }

    .section-divider::after {
        bottom: 0;
    }

.program-card {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    border: 2px solid #00d4ff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    overflow-y: hidden;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    user-select: !important;
    -webkit-user-select: !important;
}

    .program-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .program-card:hover {
        border-color: #ff6b35;
        transform: translateY(-12px);
        box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
        background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    }

        .program-card:hover::before {
            left: 100%;
        }

.program-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    user-select: !important;
    -webkit-user-select: !important;
}

.program-icon {
    font-size: 48px;
    color: #00d4ff;
    margin-bottom: 18px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    user-select: !important;
    -webkit-user-select: !important;
}

.program-card:hover .program-icon {
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconFloat {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconBounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Announcements Section */
.announcements-section {
    background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
    padding: 40px 0;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .announcements-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 30, 58, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        pointer-events: none;
    }

    .announcements-section h2 {
        color: #d39621 !important;
        user-select: !important;
        -webkit-user-select: !important;
    }

.announcement-box {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid #d41e3a;
    box-shadow: 0 4px 16px rgba(212, 30, 58, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
    display: flex;
    gap: 20px;
}

    .announcement-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(212, 30, 58, 0.05) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .announcement-box:hover {
        transform: translateX(8px);
        box-shadow: 0 12px 32px rgba(212, 30, 58, 0.15);
        border-left-color: #d39621;
    }

        .announcement-box:hover::before {
            opacity: 1;
        }

.announcement-icon {
    font-size: 42px;
    color: #d41e3a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    user-select: !important;
    -webkit-user-select: !important;
}

.announcement-box:hover .announcement-icon {
    color: #d39621;
    transform: scale(1.15);
}

.announcement-content {
    flex: 1;
    position: relative;
    z-index: 1;
    user-select: !important;
    -webkit-user-select: !important;
}

    .announcement-content h3 {
        color: #510b0b;
        font-size: 1.1rem;
        margin-bottom: 8px;
        font-weight: 700;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .announcement-content p {
        color: #666666;
        font-size: 0.9rem;
        line-height: 1.6;
        user-select: !important;
        -webkit-user-select: !important;
    }

.announcement-date {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #d41e3a;
    font-weight: 600;
    user-select: !important;
    -webkit-user-select: !important;
}

/* News Section */
.news-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .news-section::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(211, 150, 33, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        pointer-events: none;
    }

    .news-section h2 {
        color: #510b0b !important;
        user-select: !important;
        -webkit-user-select: !important;
    }

.news-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(81, 11, 11, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    user-select: !important;
    -webkit-user-select: !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .news-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 12px 32px rgba(81, 11, 11, 0.15);
    }

.news-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #d41e3a, #510b0b);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(212, 30, 58, 0.4);
    user-select: !important;
    -webkit-user-select: !important;
}

.news-image-container {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .news-image-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        transition: background 0.3s ease;
        z-index: 5;
    }

.news-card:hover .news-image-container::after {
    background: rgba(0, 0, 0, 0.1);
}

.news-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    user-select: !important;
    -webkit-user-select: !important;
}

    .news-content h3 {
        color: #510b0b;
        font-size: 1.1rem;
        margin-bottom: 12px;
        font-weight: 700;
        line-height: 1.4;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .news-content p {
        color: #666666;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 16px;
        flex: 1;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .news-content a {
        color: #d41e3a;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: inline-block;
        position: relative;
        user-select: !important;
        -webkit-user-select: !important;
    }

        .news-content a::after {
            content: ' →';
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .news-content a:hover {
            color: #d39621;
        }

            .news-content a:hover::after {
                opacity: 1;
            }

/* Sponsors Section */
.sponsors-section {
    background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
    padding: 80px 0;
    border-top: 3px solid #00d4ff;
    border-bottom: 3px solid #00d4ff;
    position: relative;
    user-select: !important;
    -webkit-user-select: !important;
}

    .sponsors-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    }

    .sponsors-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    }

.sponsor-box {
    background: #0f3460;
    border: 2px solid #00d4ff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .sponsor-box::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sponsor-box:hover {
        background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
        border-color: #ff6b35;
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 212, 255, 0.2);
    }

        .sponsor-box:hover::before {
            opacity: 1;
        }

    .sponsor-box span {
        position: relative;
        z-index: 1;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        color: #00d4ff;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .sponsor-box:hover span {
        color: #ff6b35;
    }

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 3px solid #d41e3a;
    padding: 60px 0 30px 0;
    position: relative;
    user-select: !important;
    -webkit-user-select: !important;
}

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #d41e3a, transparent);
    }

    footer::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(180deg, rgba(212, 30, 58, 0.1) 0%, transparent 100%);
        pointer-events: none;
    }

.footer-section {
    color: #666666;
    position: relative;
    z-index: 1;
    user-select: !important;
    -webkit-user-select: !important;
}

    .footer-section h3 {
        color: #a32638 !important;
        margin-bottom: 20px;
        font-family: 'Oswald', sans-serif;
        font-size: 18px;
        letter-spacing: 1px;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 12px;
        user-select: !important;
        -webkit-user-select: !important;
    }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #a32638, transparent);
        }

    .footer-section p {
        color: #fcb514;
        line-height: 1.8;
        margin-bottom: 10px;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .footer-section a {
        color: #fcb514;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        margin-bottom: 10px;
        position: relative;
        padding-left: 15px;
        user-select: !important;
        -webkit-user-select: !important;
    }

        .footer-section a::before {
            content: '›';
            position: absolute;
            left: 0;
            color: #d41e3a;
            font-weight: bold;
            opacity: 0;
            transition: all 0.3s ease;
            transform: translateX(-10px);
        }

        .footer-section a:hover {
            color: #d41e3a;
            padding-left: 25px;
        }

            .footer-section a:hover::before {
                opacity: 1;
                transform: translateX(0);
            }

footer .border-t {
    border-color: #e8e8e8 !important;
    margin-top: 30px;
    padding-top: 30px;
}

footer .text-center {
    color: #888888 !important;
}

/* Video Hero Section */
.video-hero {
    background: #000;
    position: relative;
    width: 100%;
    height: 480px;
    min-height: 480px;
    max-height: 480px;
    overflow: hidden;
    overflow-y: hidden;
}

    .video-hero video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .video-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
        z-index: 2;
        pointer-events: none;
    }

    .video-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 90px;
        z-index: 3;
        pointer-events: none;
        background: linear-gradient(to right, rgba(163, 38, 56, 0.35) 0%, rgba(163, 38, 56, 0.22) 50%, transparent 70%), linear-gradient(to left, rgba(163, 38, 56, 0.35) 0%, rgba(163, 38, 56, 0.22) 50%, transparent 70%);
        clip-path: polygon(0 100%, 0 40%, 50% 100%, 100% 40%, 100% 100%);
    }

/* Altınsmaç Banner Section - Modern Redesign */
.altinsmac-banner {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #2d1b3d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    border-top: 4px solid #00d4ff;
    border-bottom: 4px solid #d41e3a;
}

    .altinsmac-banner::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -300px;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(60px);
        animation: float 8s ease-in-out infinite;
    }

    .altinsmac-banner::after {
        content: '';
        position: absolute;
        bottom: -250px;
        left: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 30, 58, 0.12) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(60px);
        animation: float 10s ease-in-out infinite reverse;
    }

@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

.altinsmac-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.altinsmac-banner-left {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .altinsmac-banner-left h2 {
        color: #ffffff !important;
        font-size: 3.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 24px !important;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-family: 'Oswald', sans-serif !important;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

        .altinsmac-banner-left h2 span:first-child {
            color: #ffffff !important;
            background: none !important;
            -webkit-text-fill-color: #ffffff !important;
        }

        .altinsmac-banner-left h2 span:last-child {
            color: #00d4ff !important;
            background: none !important;
            -webkit-text-fill-color: #00d4ff !important;
            font-size: 1.25rem !important;
            font-weight: 800;
            letter-spacing: 2px;
        }

    .altinsmac-banner-left p {
        color: #cccccc !important;
        font-size: 1.25rem !important;
        line-height: 1.8 !important;
        margin-bottom: 28px !important;
        max-width: 550px;
        font-weight: 500;
    }

.banner-button-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d41e3a, #ff6b35);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 30, 58, 0.3);
}

    .banner-button-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s, height 0.4s;
    }

    .banner-button-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 30, 58, 0.5);
        background: linear-gradient(135deg, #ff6b35, #d41e3a);
    }

        .banner-button-primary:hover::before {
            width: 150px;
            height: 150px;
        }

.banner-button-secondary {
    display: inline-block;
    border: 2px solid #d39621;
    color: #d39621;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: 1;
}

    .banner-button-secondary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #d39621, #ff6b35);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .banner-button-secondary:hover {
        color: #ffffff;
        border-color: #ff6b35;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(211, 150, 33, 0.4);
    }

        .banner-button-secondary:hover::before {
            opacity: 1;
        }

.altinsmac-banner-right {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.altinsmac-image-container {
    background: linear-gradient(135deg, #d41e3a 0%, #ff6b35 50%, #ffd700 100%);
    border-radius: 24px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(212, 30, 58, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
    position: relative;
    border: 3px solid rgba(0, 212, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

    .altinsmac-image-container:hover {
        transform: translateY(-12px) rotateZ(2deg);
        box-shadow: 0 30px 80px rgba(212, 30, 58, 0.5), 0 0 80px rgba(0, 212, 255, 0.3);
    }

    .altinsmac-image-container::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, transparent 50%, rgba(212, 30, 58, 0.2) 100%);
        pointer-events: none;
        z-index: 2;
    }

    .altinsmac-image-container img {
        width: 100%;
        height: auto;
        max-height: 650px;
        object-fit: contain;
        border-radius: 20px;
        position: relative;
        z-index: 1;
        display: block;
    }

/* Responsive Altınsmaç Banner */
@media (max-width: 768px) {
    .altinsmac-banner {
        padding: 60px 0;
    }

    .altinsmac-banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }

    .altinsmac-banner-left {
        order: 1;
    }

    .altinsmac-banner-right {
        order: 2;
    }

    .altinsmac-banner-left h2 {
        font-size: 2.2rem !important;
        margin-bottom: 16px !important;
    }

    .altinsmac-banner-left p {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }

    .altinsmac-image-container {
        max-width: 420px;
    }

        .altinsmac-image-container img {
            max-height: 550px;
        }
}

@media (max-width: 480px) {
    .altinsmac-banner {
        padding: 40px 0;
    }

    .altinsmac-banner-content {
        gap: 30px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .altinsmac-banner-left h2 {
        font-size: 1.8rem !important;
        margin-bottom: 12px !important;
    }

    .altinsmac-banner-left p {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
    }

    .altinsmac-image-container {
        max-width: 360px;
    }

        .altinsmac-image-container img {
            max-height: 480px;
        }
}

.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #d39621;
    box-shadow: 0 4px 16px rgba(81, 11, 11, 0.08);
    transition: all 0.3s ease;
    user-select: !important;
    -webkit-user-select: !important;
}

    .about-card:hover {
        transform: translateX(8px);
        box-shadow: 0 8px 24px rgba(81, 11, 11, 0.12);
    }

    .about-card h3 {
        color: #510b0b;
        font-size: 1.3rem;
        margin-bottom: 12px;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .about-card p {
        color: #666666;
        line-height: 1.8;
        user-select: !important;
        -webkit-user-select: !important;
    }

/* Hakkımızda New Section */
.hakkimizda-new-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
    border-bottom: 3px solid #d39621;
}

    .hakkimizda-new-section::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 30, 58, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        pointer-events: none;
    }

    .hakkimizda-new-section::after {
        content: '';
        position: absolute;
        bottom: -200px;
        left: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(81, 11, 11, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        pointer-events: none;
    }

.hakkimizda-new-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
    user-select: !important;
    -webkit-user-select: !important;
}

.hakkimizda-new-sidebar {
    width: 100%;
    user-select: !important;
    -webkit-user-select: !important;
}

.hakkimizda-new-sidebar-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    width: 100%;
    user-select: !important;
    -webkit-user-select: !important;
}

.sidebar-menu-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    color: #510b0b;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    user-select: !important;
    -webkit-user-select: !important;
    font-family: 'Rajdhani', sans-serif;
}

    .sidebar-menu-btn::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #d41e3a, #510b0b);
        transform: scaleY(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .sidebar-menu-btn:hover {
        background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
        border-color: #d41e3a;
        color: #d41e3a;
        transform: translateX(6px);
        box-shadow: 0 8px 20px rgba(212, 30, 58, 0.15);
    }

        .sidebar-menu-btn:hover::before {
            transform: scaleY(1);
        }

    .sidebar-menu-btn.active {
        background: linear-gradient(135deg, #d41e3a, #510b0b);
        color: #ffffff;
        border-color: #d41e3a;
        box-shadow: 0 12px 32px rgba(212, 30, 58, 0.25);
    }

        .sidebar-menu-btn.active::before {
            transform: scaleY(1);
        }

    .sidebar-menu-btn i {
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .sidebar-menu-btn:hover i {
        transform: scale(1.2);
        color: #d39621;
    }

    .sidebar-menu-btn.active i {
        color: #ffd700;
    }

.hakkimizda-new-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    user-select: !important;
    -webkit-user-select: !important;
}

.content-section {
    display: none;
    opacity: 0;
    animation: fadeInContent 0.5s ease-out;
    user-select: !important;
    -webkit-user-select: !important;
}

    .content-section.active {
        display: block;
        opacity: 1;
        user-select: !important;
        -webkit-user-select: !important;
    }

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-header {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
    user-select: !important;
    -webkit-user-select: !important;
}

    .content-header h2 {
        font-size: 2.2rem;
        font-weight: 800;
        color: #510b0b;
        margin-bottom: 16px;
        font-family: 'Oswald', sans-serif;
        letter-spacing: 1px;
        user-select: !important;
        -webkit-user-select: !important;
    }

.header-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d41e3a, #d39621);
    border-radius: 2px;
    user-select: !important;
    -webkit-user-select: !important;
}

.content-body {
    user-select: !important;
    -webkit-user-select: !important;
}

.content-intro {
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 500;
    user-select: !important;
    -webkit-user-select: !important;
}

.content-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    user-select: !important;
    -webkit-user-select: !important;
}

.highlight-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 12px;
    border-left: 4px solid #d39621;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(81, 11, 11, 0.06);
    user-select: !important;
    -webkit-user-select: !important;
}

    .highlight-item:hover {
        transform: translateY(-8px);
        border-left-color: #d41e3a;
        box-shadow: 0 12px 28px rgba(212, 30, 58, 0.12);
    }

    .highlight-item i {
        font-size: 2.2rem;
        color: #d41e3a;
        flex-shrink: 0;
        transition: all 0.3s ease;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .highlight-item:hover i {
        color: #d39621;
        transform: scale(1.15);
    }

    .highlight-item h4 {
        color: #510b0b;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 8px;
        font-family: 'Oswald', sans-serif;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .highlight-item p {
        color: #666666;
        font-size: 0.9rem;
        line-height: 1.6;
        user-select: !important;
        -webkit-user-select: !important;
    }

/* Simple Staff Cards */
.simple-staff-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(81, 11, 11, 0.08);
    border: 1px solid #e8eef5;
    user-select: !important;
    -webkit-user-select: !important;
}

    .simple-staff-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 32px rgba(81, 11, 11, 0.15);
        border-color: #d39621;
    }

.simple-staff-photo {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #d39621 0%, #510b0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .simple-staff-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.simple-staff-info {
    padding: 20px;
    text-align: center;
    user-select: !important;
    -webkit-user-select: !important;
}

    .simple-staff-info h4 {
        color: #510b0b;
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 6px;
        font-family: 'Oswald', sans-serif;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .simple-staff-info p {
        color: #d39621;
        font-size: 0.85rem;
        font-weight: 600;
        user-select: !important;
        -webkit-user-select: !important;
    }

/* Mission List */
.mission-list {
    user-select: !important;
    -webkit-user-select: !important;
}

    .mission-list h3 {
        color: #510b0b;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 24px;
        font-family: 'Oswald', sans-serif;
        user-select: !important;
        -webkit-user-select: !important;
    }

.mission-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    align-items: flex-start;
    transition: 0.3s;
}

    .mission-item:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

.mission-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d41e3a, #510b0b);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
    font-family: 'Oswald', sans-serif;
    user-select: !important;
    -webkit-user-select: !important;
}

.mission-item h4 {
    color: #510b0b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
    user-select: !important;
    -webkit-user-select: !important;
}

.mission-item p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    user-select: !important;
    -webkit-user-select: !important;
}


.salon-image {
    width: 160px;
    flex-shrink: 0;
}

    .salon-image img {
        width: 100%;
        height: 110px;
        object-fit: cover;
        border-radius: 10px;
    }

.salon-content h4 {
    margin-bottom: 8px;
    color: #510b0b;
    font-weight: 700;
}

.salon-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}














/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    user-select: !important;
    -webkit-user-select: !important;
}

.stat-showcase-item {
    background: linear-gradient(135deg, #d41e3a, #510b0b);
    color: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(212, 30, 58, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: !important;
    -webkit-user-select: !important;
}

    .stat-showcase-item:hover {
        transform: translateY(-12px);
        box-shadow: 0 16px 40px rgba(212, 30, 58, 0.35);
    }

.stat-showcase-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 12px;
    font-family: 'Oswald', sans-serif;
    user-select: !important;
    -webkit-user-select: !important;
}

.stat-showcase-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
    user-select: !important;
    -webkit-user-select: !important;
}

.stat-showcase-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    user-select: !important;
    -webkit-user-select: !important;
}

/* Achievements List */
.achievements-list {
    user-select: !important;
    -webkit-user-select: !important;
}

    .achievements-list h3 {
        color: #510b0b;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: 'Oswald', sans-serif;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .achievements-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 16px;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .achievements-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
        border-radius: 8px;
        color: #510b0b;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
        user-select: !important;
        -webkit-user-select: !important;
    }

        .achievements-list li:hover {
            transform: translateX(8px);
            background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
            box-shadow: 0 4px 12px rgba(212, 30, 58, 0.12);
        }

    .achievements-list i {
        color: #d39621;
        font-size: 1.2rem;
        flex-shrink: 0;
        user-select: !important;
        -webkit-user-select: !important;
    }

/* About Section */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .about-section::after {
        content: '';
        position: absolute;
        bottom: -200px;
        left: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(81, 11, 11, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        pointer-events: none;
    }

    .about-section h2 {
        color: #510b0b !important;
        user-select: !important;
        -webkit-user-select: !important;
    }

.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #d39621;
    box-shadow: 0 4px 16px rgba(81, 11, 11, 0.08);
    transition: all 0.3s ease;
    user-select: !important;
    -webkit-user-select: !important;
}

    .about-card:hover {
        transform: translateX(8px);
        box-shadow: 0 8px 24px rgba(81, 11, 11, 0.12);
    }

    .about-card h3 {
        color: #510b0b;
        font-size: 1.3rem;
        margin-bottom: 12px;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .about-card p {
        color: #666666;
        line-height: 1.8;
        user-select: !important;
        -webkit-user-select: !important;
    }

/* Coaches Section */
.coaches-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .coaches-section::after {
        content: '';
        position: absolute;
        top: -200px;
        left: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(81, 11, 11, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        pointer-events: none;
    }

    .coaches-section h2 {
        color: #510b0b !important;
        user-select: !important;
        -webkit-user-select: !important;
    }

.technical-staff-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 12px;
    overflow: hidden;
    overflow-y: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(81, 11, 11, 0.1);
    border: 1px solid #e8eef5;
    user-select: !important;
    -webkit-user-select: !important;
}

    .technical-staff-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 16px 40px rgba(81, 11, 11, 0.15);
        border-color: #d39621;
    }

.staff-avatar {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #d39621 0%, #510b0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .staff-avatar::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
        pointer-events: none;
    }

.staff-info {
    padding: 24px;
    user-select: !important;
    -webkit-user-select: !important;
}

.staff-name {
    color: #510b0b;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    user-select: !important;
    -webkit-user-select: !important;
}

.staff-position {
    color: #d39621;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    user-select: !important;
    -webkit-user-select: !important;
}

.staff-bio {
    color: #666666;
    font-size: 0.85rem;
    line-height: 1.6;
    user-select: !important;
    -webkit-user-select: !important;
}

/* Training Methods Section */
.training-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .training-section::before {
        content: '';
        position: absolute;
        top: -150px;
        left: -100px;
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(211, 150, 33, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        pointer-events: none;
    }

    .training-section h2 {
        color: #510b0b !important;
        user-select: !important;
        -webkit-user-select: !important;
    }

.training-item {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #e8eef5;
    box-shadow: 0 4px 12px rgba(81, 11, 11, 0.06);
    user-select: !important;
    -webkit-user-select: !important;
}

    .training-item:hover {
        transform: translateY(-10px);
        border-color: #d39621;
        box-shadow: 0 12px 32px rgba(81, 11, 11, 0.12);
        background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    }

.training-icon {
    font-size: 48px;
    color: #510b0b;
    margin-bottom: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    user-select: !important;
    -webkit-user-select: !important;
}

.training-item:hover .training-icon {
    color: #d39621;
    transform: scale(1.1);
}

.training-item h3 {
    color: #510b0b;
    font-size: 1.2rem;
    margin-bottom: 10px;
    user-select: !important;
    -webkit-user-select: !important;
}

.training-item p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    user-select: !important;
    -webkit-user-select: !important;
}

/* Voleybol Achievements Section */
.voleybol-achievements-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    padding: 100px 0;
    position: relative;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .voleybol-section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #510b0b;
        margin-bottom: 12px;
        font-family: 'Oswald', sans-serif;
    }

    .voleybol-section-header p {
        font-size: 1.1rem;
        color: #666666;
        font-weight: 500;
    }

.voleybol-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.voleybol-achievement-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #e8eef5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    user-select: !important;
    -webkit-user-select: !important;
}

    .voleybol-achievement-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #d41e3a, #ff6b35);
        z-index: 10;
    }

    .voleybol-achievement-card:hover {
        transform: translateY(-12px) rotateZ(1deg);
        box-shadow: 0 16px 48px rgba(212, 30, 58, 0.15);
        border-color: #d41e3a;
    }

.voleybol-achievement-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.voleybol-achievement-year {
    display: inline-block;
    background: linear-gradient(135deg, #d41e3a, #ff6b35);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    font-family: 'Oswald', sans-serif;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-achievement-top i {
    font-size: 1.5rem;
    color: #ffd700;
    animation: spinStar 3s linear infinite;
    user-select: !important;
    -webkit-user-select: !important;
}

@keyframes spinStar {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

.voleybol-achievement-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f0f1e;
    margin-bottom: 6px;
    font-family: 'Oswald', sans-serif;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-achievement-role {
    font-size: 0.9rem;
    color: #d41e3a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-achievement-desc {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-achievement-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    user-select: !important;
    -webkit-user-select: !important;
}

    .voleybol-achievement-badges span {
        display: inline-block;
        background: linear-gradient(135deg, rgba(212, 30, 58, 0.1), rgba(0, 212, 255, 0.05));
        border: 1px solid #d41e3a;
        color: #d41e3a;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        user-select: !important;
        -webkit-user-select: !important;
    }

.voleybol-achievement-card:hover .voleybol-achievement-badges span {
    background: linear-gradient(135deg, #d41e3a, #ff6b35);
    color: #ffffff;
    border-color: #ff6b35;
}

/* Voleybol Hero Section */
.voleybol-hero-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,212,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.voleybol-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.voleybol-hero-text {
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voleybol-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 30, 58, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid #d41e3a;
    color: #d41e3a;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #d39621 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 500;
    max-width: 600px;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d41e3a, #ff6b35);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 30, 58, 0.3);
    user-select: !important;
    -webkit-user-select: !important;
}

    .voleybol-btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s, height 0.4s;
    }

    .voleybol-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 30, 58, 0.5);
        background: linear-gradient(135deg, #ff6b35, #d41e3a);
    }

        .voleybol-btn-primary:hover::before {
            width: 150px;
            height: 150px;
        }

.voleybol-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: 1;
    user-select: !important;
    -webkit-user-select: !important;
}

    .voleybol-btn-secondary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #00d4ff, #0099cc);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .voleybol-btn-secondary:hover {
        color: #ffffff;
        border-color: #0099cc;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    }

        .voleybol-btn-secondary:hover::before {
            opacity: 1;
        }

.voleybol-hero-visual {
    animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voleybol-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.voleybol-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 212, 255, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .voleybol-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #d41e3a, transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .voleybol-feature-card:hover {
        background: linear-gradient(135deg, rgba(212, 30, 58, 0.15), rgba(0, 212, 255, 0.15));
        border-color: #d41e3a;
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(212, 30, 58, 0.2);
    }

        .voleybol-feature-card:hover::before {
            opacity: 1;
        }

.feature-icon-wrapper {
    font-size: 2.4rem;
    color: #d41e3a;
    margin-bottom: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-feature-card:hover .feature-icon-wrapper {
    color: #d39621;
    transform: scale(1.2) rotate(10deg);
}

.voleybol-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-feature-card p {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.5;
    user-select: !important;
    -webkit-user-select: !important;
}

@media (max-width: 1024px) {
    .voleybol-hero-title {
        font-size: 2.5rem;
    }

    .voleybol-hero-subtitle {
        font-size: 1rem;
    }

    .voleybol-hero-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .voleybol-hero-section {
        padding: 60px 0;
    }

    .voleybol-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .voleybol-hero-title {
        font-size: 2rem;
    }

    .voleybol-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .voleybol-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .voleybol-btn-primary,
    .voleybol-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .voleybol-feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .voleybol-feature-card {
        padding: 16px 12px;
    }

    .feature-icon-wrapper {
        font-size: 2rem;
    }

    .voleybol-feature-card h4 {
        font-size: 0.95rem;
    }

    .voleybol-feature-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .voleybol-hero-section {
        padding: 40px 0;
    }

    .voleybol-hero-title {
        font-size: 1.5rem;
    }

    .voleybol-hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .voleybol-badge {
        font-size: 0.7rem;
        padding: 8px 14px;
    }

    .voleybol-cta-buttons {
        gap: 8px;
    }

    .voleybol-btn-primary,
    .voleybol-btn-secondary {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .voleybol-feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .voleybol-feature-card {
        padding: 14px 10px;
    }

    .feature-icon-wrapper {
        font-size: 1.6rem;
    }

    .voleybol-feature-card h4 {
        font-size: 0.85rem;
    }

    .voleybol-feature-card p {
        font-size: 0.7rem;
    }
}

/* Voleybol Categories Section */
.voleybol-categories-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.voleybol-category-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #e8eef5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    user-select: !important;
    -webkit-user-select: !important;
}

    .voleybol-category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #d41e3a, #ff6b35);
        z-index: 10;
    }

    .voleybol-category-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 16px 48px rgba(212, 30, 58, 0.15);
        border-color: #d41e3a;
    }

.voleybol-cat-header {
    margin-bottom: 24px;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-cat-icon {
    font-size: 3rem;
    color: #d41e3a;
    margin-bottom: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-category-card:hover .voleybol-cat-icon {
    color: #ff6b35;
    transform: scale(1.15) rotate(10deg);
}

.voleybol-cat-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #510b0b;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-cat-age {
    font-size: 0.95rem;
    color: #d39621;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-cat-content {
    flex: 1;
    margin-bottom: 24px;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-cat-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    text-align: left;
    user-select: !important;
    -webkit-user-select: !important;
}

    .voleybol-cat-feature i {
        color: #d41e3a;
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: 2px;
        user-select: !important;
        -webkit-user-select: !important;
    }

    .voleybol-cat-feature span {
        color: #666666;
        font-size: 0.9rem;
        line-height: 1.5;
        user-select: !important;
        -webkit-user-select: !important;
    }

.voleybol-cat-btn {
    background: linear-gradient(135deg, #d41e3a, #ff6b35);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 30, 58, 0.3);
    position: relative;
    overflow: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .voleybol-cat-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s, height 0.4s;
    }

    .voleybol-cat-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(212, 30, 58, 0.5);
        background: linear-gradient(135deg, #ff6b35, #d41e3a);
    }

        .voleybol-cat-btn:hover::before {
            width: 120px;
            height: 120px;
        }

/* Voleybol Training Section */
.voleybol-training-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 100px 0;
    position: relative;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.voleybol-training-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 212, 255, 0.03));
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    user-select: !important;
    -webkit-user-select: !important;
}

    .voleybol-training-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .voleybol-training-card:hover {
        border-color: #d41e3a;
        transform: translateY(-12px);
        box-shadow: 0 16px 48px rgba(212, 30, 58, 0.2);
    }

        .voleybol-training-card:hover::before {
            opacity: 1;
        }

.voleybol-training-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-training-card:hover .voleybol-training-icon {
    color: #d41e3a;
    transform: scale(1.15);
}

.voleybol-training-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 1;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-training-card p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    user-select: !important;
    -webkit-user-select: !important;
}

.voleybol-training-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    position: relative;
    z-index: 1;
    user-select: !important;
    -webkit-user-select: !important;
}

    .voleybol-training-features span {
        display: inline-block;
        background: linear-gradient(135deg, rgba(212, 30, 58, 0.2), rgba(0, 212, 255, 0.2));
        border: 1px solid #00d4ff;
        color: #00d4ff;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        user-select: !important;
        -webkit-user-select: !important;
    }

.voleybol-training-card:hover .voleybol-training-features span {
    background: linear-gradient(135deg, rgba(212, 30, 58, 0.3), rgba(0, 212, 255, 0.3));
    border-color: #d41e3a;
    color: #d41e3a;
}

@media (max-width: 768px) {
    .voleybol-training-section {
        padding: 60px 0;
    }

    .voleybol-training-grid {
        gap: 20px;
    }

    .voleybol-training-card {
        padding: 24px 20px;
    }

    .voleybol-training-icon {
        font-size: 2.2rem;
    }

    .voleybol-training-card h3 {
        font-size: 1.1rem;
    }

    .voleybol-training-card p {
        font-size: 0.85rem;
    }

    .voleybol-training-features span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .voleybol-training-section {
        padding: 40px 0;
    }

    .voleybol-training-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .voleybol-training-card {
        padding: 20px 16px;
    }

    .voleybol-training-icon {
        font-size: 2rem;
    }

    .voleybol-training-card h3 {
        font-size: 1rem;
    }

    .voleybol-training-card p {
        font-size: 0.8rem;
    }

    .voleybol-training-features {
        gap: 6px;
    }

        .voleybol-training-features span {
            font-size: 0.65rem;
            padding: 4px 10px;
        }
}

/* Submit Button Hover Effect */
.submit-btn {
    position: relative;
    overflow: hidden;
}

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s ease, height 0.5s ease;
        pointer-events: none;
    }

    .submit-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 16px 40px rgba(212, 30, 58, 0.5), 0 0 30px rgba(255, 107, 53, 0.3) !important;
        background: linear-gradient(135deg, #ff6b35, #d41e3a) !important;
    }

        .submit-btn:hover::before {
            width: 200px;
            height: 200px;
        }

        .submit-btn:hover i {
            transform: rotate(15deg) scale(1.2);
        }

    .submit-btn:active {
        transform: translateY(-1px) scale(0.98);
    }

.voleybol-section-header h2 {
    font-size: 1.75rem;
}

.voleybol-section-header p {
    font-size: 0.95rem;
}

.voleybol-achievements-grid {
    gap: 20px;
}

.voleybol-achievement-card {
    padding: 24px 16px;
}

}

@media (max-width: 480px) {
    .voleybol-section-header h2 {
        font-size: 1.5rem;
    }

    .voleybol-section-header p {
        font-size: 0.85rem;
    }

    .voleybol-achievements-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .voleybol-achievement-card {
        padding: 20px 14px;
    }

        .voleybol-achievement-card h4 {
            font-size: 1rem;
        }

    .voleybol-achievement-role {
        font-size: 0.8rem;
    }

    .voleybol-achievement-desc {
        font-size: 0.8rem;
    }

    .voleybol-achievement-badges span {
        font-size: 0.65rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .program-card {
        padding: 24px 16px;
    }

    .program-icon {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    .altinsmac-banner-left h2 {
        font-size: 2rem;
    }

    .altinsmac-image-container {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .topstrip {
        padding: 6px 0;
        min-height: auto;
    }

    .main-header {
        justify-content: space-between;
        padding: 8px 0 0 0 !important;
        min-height: auto !important;
    }

    .main-logo-container-topstrip {
        position: static;
        transform: none;
        margin: auto;
    }

        .main-logo-container-topstrip img {
            width: 70px;
            height: 70px;
            object-fit: contain;
        }

    .nav-menu > li > a {
        padding: 6px 4px !important;
        font-size: 9px !important;
    }

    .social-icons li a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .altinsmac-banner-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .altinsmac-banner-left h2 {
        font-size: 1.75rem;
    }

    .altinsmac-banner-left p {
        font-size: 0.95rem !important;
    }

    .altinsmac-image-container {
        max-width: 100%;
    }

    .content-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

        .nav-menu > li > a {
            padding: 10px 8px;
            font-size: 11px;
        }

    .hamburger-btn {
        display: flex;
    }

    .hero-section {
        padding: 40px 0;
    }

        .hero-section::before {
            width: 300px;
            height: 300px;
        }

    .main-logo-container-topstrip img {
        width: 70px;
        height: 70px;
    }

    .video-hero {
        min-height: 220px;
    }

    .social-icons li a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .program-card {
        padding: 20px 12px;
    }

    .program-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .program-card h4 {
        font-size: 0.95rem;
    }

    .program-card p {
        font-size: 0.75rem;
    }

    .program-card ul {
        font-size: 0.7rem;
    }

    .section-divider h3 {
        font-size: 1.75rem !important;
    }

    .about-card {
        padding: 20px;
    }

        .about-card h3 {
            font-size: 1.1rem;
        }

        .about-card p {
            font-size: 0.85rem;
        }

    .training-item {
        padding: 20px;
    }

    .training-icon {
        font-size: 40px;
    }

    .training-item h3 {
        font-size: 1rem;
    }

    .announcement-box {
        padding: 20px;
        gap: 12px;
    }

    .announcement-icon {
        font-size: 32px;
        min-width: 40px;
    }

    .announcement-content h3 {
        font-size: 0.95rem;
    }

    .announcement-content p {
        font-size: 0.8rem;
    }

    .sponsor-box {
        height: 100px;
        padding: 15px;
    }

        .sponsor-box span {
            font-size: 0.85rem;
        }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-section {
        margin-bottom: 16px;
    }

        .footer-section p {
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .footer-section a {
            font-size: 0.85rem;
            margin-bottom: 6px;
        }

    .news-card {
        display: flex;
        flex-direction: column;
    }

    .news-content {
        padding: 16px;
    }

        .news-content h3 {
            font-size: 0.95rem;
        }

        .news-content p {
            font-size: 0.8rem;
        }

    .news-date-badge {
        font-size: 0.7rem;
    }

    h2 {
        font-size: 1.75rem !important;
        margin-bottom: 24px !important;
    }

    .academy-section,
    .announcements-section,
    .training-section {
        padding: 50px 0 !important;
    }
}

@media (max-width: 480px) {
    .topstrip {
        padding: 6px 0;
    }

    .main-header {
        padding: 0 0 0 0 !important;
    }

    .main-logo-container-topstrip img {
        width: 60px;
        height: 60px;
    }

    .content-wrapper {
        padding-left: 8px;
        padding-right: 8px;
    }

    .nav-menu > li > a {
        padding: 8px 6px;
        font-size: 10px;
    }

    .video-hero {
        min-height: 180px;
    }

    .social-icons li a {
        width: 28px;
        height: 28px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .social-icons li a i {
            font-size: 12px;
        }

    h2 {
        font-size: 1.5rem !important;
        margin-bottom: 16px !important;
    }

    h3 {
        font-size: 0.9rem !important;
    }

    .program-card {
        padding: 16px 12px;
    }

    .program-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .program-badge {
        padding: 4px 10px;
        font-size: 10px;
    }

    .program-card h4 {
        font-size: 0.85rem;
    }

    .program-card p {
        font-size: 0.7rem;
    }

    .about-card {
        padding: 16px;
    }

        .about-card h3 {
            font-size: 0.95rem;
        }

        .about-card p {
            font-size: 0.75rem;
        }

    .training-item {
        padding: 16px;
    }

    .training-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .training-item h3 {
        font-size: 0.9rem;
    }

    .training-item p {
        font-size: 0.75rem;
    }

    .announcement-box {
        padding: 16px;
        gap: 10px;
    }

    .announcement-icon {
        font-size: 28px;
        min-width: 32px;
    }

    .announcement-content h3 {
        font-size: 0.85rem;
    }

    .announcement-content p {
        font-size: 0.7rem;
    }

    .announcement-date {
        font-size: 0.7rem;
    }

    .sponsor-box {
        height: 80px;
        padding: 10px;
    }

        .sponsor-box span {
            font-size: 0.75rem;
        }

    .news-card {
        display: flex;
        flex-direction: column;
    }

    .news-image-container {
        height: 150px;
    }

    .news-content {
        padding: 12px;
    }

        .news-content h3 {
            font-size: 0.8rem;
        }

        .news-content p {
            font-size: 0.7rem;
        }

    .news-date-badge {
        font-size: 0.6rem;
    }

    .footer-section h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.75rem;
    }

    .footer-section a {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .academy-section,
    .announcements-section,
    .training-section {
        padding: 40px 0 !important;
    }

    .grid {
        gap: 12px !important;
    }
}

/* Events Section */
.events-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    padding: 20px 0;
    margin-bottom: 60px;
    position: relative;
}

    .events-section::before {
        content: '';
        position: absolute;
        top: -200px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(212, 30, 58, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
    }

    .events-section h2 {
        
        color: #510b0b !important;
        text-shadow: 0 2px 10px rgba(212, 30, 58, 0.3);
    }

.event-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #333333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

    .event-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #d41e3a, #e1a730);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .event-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(212, 30, 58, 0.3);
        border-color: #d41e3a;
        background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    }

        .event-card:hover::before {
            transform: scaleX(1);
        }

.event-header {
    background: linear-gradient(135deg, #d41e3a, #c41a33);
    padding: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

    .event-header::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .event-header h3 {
        color: #ffffff !important;
        font-size: 18px;
        margin-bottom: 12px;
        margin-top: 0;
        line-height: 1.4;
        position: relative;
        z-index: 1;
    }

.event-date {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.event-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-description {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-details {
    background: rgba(212, 30, 58, 0.1);
    border-left: 3px solid #d41e3a;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.event-detail-item {
    color: #cccccc;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

    .event-detail-item:last-child {
        margin-bottom: 0;
    }

    .event-detail-item strong {
        color: #e1a730;
        min-width: 60px;
    }

.event-action-btn {
    background: linear-gradient(135deg, #d41e3a, #c41a33);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

    .event-action-btn:hover {
        background: linear-gradient(135deg, #c41a33, #b01727);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 30, 58, 0.4);
    }

/* Event Image */
.event-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #d41e3a, #c41a33);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

    .event-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

/* Event Badge */
.event-badge {
    display: inline-block;
    background: #d41e3a;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}




/* ==========================================
   KATEGORİ FİLTRELERİ - ÜSTTEN BOŞLUKLU
   ========================================== */
.kategori-filtreler {
    width: 100%;
    background-color: #f3f4f6;
    /* ÜSTTEN BOŞLUK - İSTEDİĞİNİZ DEĞERİ SEÇİN */
    padding-top: 3rem; /* ← 32px iç boşluk */
    /* VEYA */
    /* margin-top: 2rem; */ /* ← 32px dış boşluk */

    padding-bottom: 3rem; /* 16px alt boşluk */
}

/* ==========================================
   İÇERİK HİZALAMA
   ========================================== */
.filtre-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.filtre-butonlar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* Buton stilleri aynı kalır... */

/* ==========================================
   FİLTRE BUTONLARI - ORTAK STİLLER
   ========================================== */
.filtre-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem; /* py-2 px-6 */
    border-radius: 9999px; /* rounded-full */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* ==========================================
   PASİF BUTON (Aktif olmayan)
   ========================================== */
.filtre-btn-pasif {
    background-color: #ffffff; /* bg-white */
    color: #374151; /* text-gray-700 */
    border: 1px solid #e5e7eb;
}

    .filtre-btn-pasif:hover {
        background-color: #fee2e2; /* hover:bg-red-100 */
        color: #dc2626; /* hover:text-red-600 */
        border-color: #fecaca;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
    }

/* ==========================================
   AKTİF BUTON (Seçili olan)
   ========================================== */
.filtre-btn-aktif {
    background: linear-gradient(135deg, #d41e3a 0%, #ff6b35 100%);
    color: #ffffff; /* text-white */
    border: 1px solid #d41e3a;
    box-shadow: 0 4px 15px rgba(212, 30, 58, 0.3);
}

    .filtre-btn-aktif:hover {
        background: linear-gradient(135deg, #b91c1c 0%, #ea580c 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 30, 58, 0.4);
    }

/* ==========================================
   MOBİL UYUMLULUK
   ========================================== */
@media (max-width: 640px) {
    .filtre-butonlar {
        gap: 0.5rem;
    }

    .filtre-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* ==========================================
   ALTERNATİF: KARE BUTONLAR (İsteğe bağlı)
   ========================================== */
.filtre-btn-kare {
    border-radius: 0.5rem; /* rounded-lg */
}

/* ==========================================
   ALTERNATİF: GÖLGE EFEKTİ (İsteğe bağlı)
   ========================================== */
.filtre-btn-golgeli {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .filtre-btn-golgeli:hover {
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
    }



