* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #c41e3a;
    --light-red: #e63946;
    --dark-red: #8b1a1a;
    --soft-black: #2d2d2d;
    --charcoal: #1a1a1a;
    --light-gray: #f5f7fa;
    --medium-gray: #e8eaed;
    --text-gray: #6c757d;
    --white: #ffffff;
    --border: #dfe1e6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--light-gray);
    color: var(--soft-black);
    line-height: 1.6;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--light-gray);
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-red), var(--dark-red));
    border-radius: 10px;
}

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

/* NAVBAR */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.25);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--soft-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 0.3rem;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .has-dropdown:hover .dropdown-icon {
        transform: none;
    }
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-red);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    margin-top: 1rem;
    border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown a:hover {
    background: linear-gradient(90deg, rgba(196, 30, 58, 0.08), transparent);
    color: var(--primary-red);
    padding-left: 1.5rem;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    padding: 0.7rem 1.8rem !important;
    border-radius: 25px;
    color: var(--white) !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.25);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--soft-black);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* HERO */
.hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.92), rgba(139, 26, 26, 0.88)), 
                url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

/* SECTIONS */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--soft-black);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose, .programs, .stats {
    padding: 5rem 0;
}

.why-choose {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-red);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-red);
}

.feature-card h3 {
    color: var(--soft-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* PROGRAMS */
.programs {
    background: var(--light-gray);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.program-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.program-card:hover img {
    transform: scale(1.08);
}

.program-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
    padding: 2rem;
    transition: all 0.5s;
}

.program-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.program-overlay p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-learn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--white);
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    border-radius: 35px;
    margin-top: 1.5rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* STATS */
.stats {
    background: var(--white);
}

/* FEDERATIONS SLIDER */
.federations-section {
    padding: 4rem 0;
    background: var(--light-gray);
    overflow: hidden;
}

.federations-slider {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
}

.federations-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.federation-item {
    flex-shrink: 0;
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.federation-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.8;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .federations-track {
        gap: 2rem;
    }
    
    .federation-item {
        width: 180px;
        height: 100px;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

/* FOOTER */
.footer {
    background: var(--soft-black);
    padding: 4rem 0 2rem;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h3, .footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer h3 {
    font-size: 1.3rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer a:hover {
    color: var(--primary-red);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    transform: translateY(-3px);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://images.unsplash.com/photo-1517438476312-10d79c077509?w=1600') center/cover;
    padding: 10rem 0 5rem;
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-header-hakkimizda {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://images.unsplash.com/photo-1574680096145-d05b474e2155?w=1600') center/cover;
}

.page-header-iletisim {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600') center/cover;
}

.page-header-basarilarimiz {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://lh3.googleusercontent.com/gps-cs-s/APNQkAGf0WI6Mk0ZdHPHXCzV3N9b6ipVOzUDIuayOuG_v_75ti700HxB-6mO5U_MyPNLqMfBilrNaSSiPtkz38fwwaI9cDkIzwVWfq7JBfhvi5D_iAsa8_Ex2-1H2AAsmBGjDJ8LedeipQ=s1360-w1360-h1020-rw') center/cover;
}

.page-header-antrenorlerimiz {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1600') center/cover;
}

.page-header-egitimlerimiz {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?w=1600') center/cover;
}

.page-header-subelerimiz {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://lh3.googleusercontent.com/gps-cs-s/APNQkAF-d84i9OCaswIUp3CRZobnAatdFBglnz9gPTGNZ4s-Yeeg9QLF3WyUpd3QoFmvpNHjycVAowGC1CiSTbywB6ZPRt3q9oEiG5x7uXTmYgJBz051-uu7UE3oNpp62qKQoNM87TnahjcAThLP=s1360-w1360-h1020-rw') center/cover;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 800;
    margin-top: -35px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 280px;
        height: 100vh;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        gap: 0;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu > li > a {
        font-size: 1.1rem;
        font-weight: 600;
        justify-content: space-between;
    }
    
    .dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: translateY(0);
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 0.5rem;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        border: none;
        padding: 0;
    }
    
    .dropdown-active .dropdown {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 0.5rem 0;
    }
    
    .dropdown a {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
    
    .cta-btn {
        margin-top: 1rem;
        display: block;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-top: -20px;
    }
    
    .detail-hero h1 {
        margin-top: -20px;
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 7rem 0 4rem;
        min-height: 300px;
    }
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}


/* ABOUT PAGE */
.about-content, .trainings-section, .contact-section, .branches-section, .trainers-section, .achievements-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    color: var(--soft-black);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-intro p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-text h3 {
    color: var(--soft-black);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.story-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-section {
    margin: 4rem 0;
    background: var(--light-gray);
    padding: 4rem 2rem;
    border-radius: 20px;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--soft-black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--soft-black);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.mission, .vision {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(230, 57, 70, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border);
}

.mission h3, .vision h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission p, .vision p {
    color: var(--text-gray);
    line-height: 1.8;
}

.facilities {
    margin: 4rem 0;
}

.facilities h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--soft-black);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.facility-item {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.facility-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.facility-item h4 {
    color: var(--primary-red);
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

.facility-item p {
    color: var(--text-gray);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* TRAININGS PAGE */
.training-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.training-item.reverse {
    direction: rtl;
}

.training-item.reverse > * {
    direction: ltr;
}

.training-image img {
    width: 100%;
    border-radius: 15px;
    height: 350px;
    object-fit: cover;
}

.training-info h2 {
    color: var(--soft-black);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.training-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.training-info ul {
    list-style: none;
    margin: 1.5rem 0;
}

.training-info ul li {
    margin-bottom: 0.7rem;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-gray);
}

.training-info ul li:before {
    content: "✓";
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-wrapper, .contact-info-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2, .contact-info-wrapper h2 {
    color: var(--soft-black);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    color: var(--soft-black);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--white);
}

.contact-form button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 40px;
    color: var(--primary-red);
}

.contact-info-item h4 {
    color: var(--soft-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.map-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--soft-black);
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.map-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.map-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.map-item iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
}

/* BRANCHES PAGE */
.branch-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.branch-images {
    margin-bottom: 2rem;
}

.branch-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.branch-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.branch-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.branch-info h2 {
    color: var(--soft-black);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.branch-detail, .branch-hours, .branch-trainers {
    margin-bottom: 2rem;
}

.branch-detail p, .branch-hours p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.branch-trainers h4 {
    color: var(--soft-black);
    margin-bottom: 1rem;
}

.branch-trainers ul {
    list-style: none;
}

.branch-trainers ul li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-gray);
}

.branch-map {
    margin: 2rem 0;
}

.branch-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

/* TRAINERS PAGE */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trainer-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.trainer-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.trainer-info {
    padding: 1.5rem;
}

.trainer-info h3 {
    color: var(--soft-black);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.trainer-title {
    color: var(--primary-red);
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 500;
}

.trainer-info p {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

/* ACHIEVEMENTS PAGE */
.achievements-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.achievements-intro h2 {
    color: var(--soft-black);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.achievements-intro p {
    color: var(--text-gray);
    line-height: 1.8;
}

.achievements-timeline {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    padding-left: 50px;
}

.achievements-timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-red);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--soft-black);
}

.timeline-content p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.achievements-stats {
    margin: 4rem 0;
}

.achievements-stats h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--soft-black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-gray);
}

.hall-of-fame {
    margin: 4rem 0;
}

.hall-of-fame h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--soft-black);
}

.fame-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fame-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.fame-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.fame-card h4 {
    color: var(--primary-red);
    padding: 1rem;
    font-size: 1.2rem;
}

.fame-card p {
    padding: 0 1rem 1.5rem;
    color: var(--text-gray);
}

/* DETAIL PAGES */
.detail-hero {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?w=1600') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.detail-hero h1 {
    margin-top: -35px;
}

.detail-hero-mma {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://cdn.britannica.com/14/190014-050-31961004/trading-punches-American-Ronda-Rousey-knockout-UFC-2015.jpg') center/cover;
}

.detail-hero-kickboks {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://trabzonsporsalonu.com/wp-content/uploads/2024/07/kickbox-hero.png') center/cover;
}

.detail-hero-boks {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://sporthink.sm.mncdn.com/sporthink/Blog/19.06.2025/boks-sporu-kurallari-nasil-yapilir-faydalari-nelerdir.webp') center/cover;
}

.detail-hero-bjj {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://upload.wikimedia.org/wikipedia/commons/2/22/GABRIEL_VELLA_vs_ROMINHO_51.jpg') center/cover;
}

.detail-hero-muaythai {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://cdn.onefc.com/wp-content/uploads/2025/03/Shadow-Singha-Mawynn-Hassan-Vahdanirad-ONE-Friday-Fights-100-22-scaled.jpg') center/cover;
}

.detail-hero-tekvando {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://www.participaction.com/wp-content/uploads/2024/08/shutterstock_2241351967-scaled.jpg') center/cover;
}

.detail-hero-bireysel {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95), rgba(139, 26, 26, 0.9)), 
                url('https://www.ankaraboks.com/images/boks-dersleri/ozel-boks-dersleri.jpg') center/cover;
}

.detail-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.detail-content {
    padding: 4rem 0;
    background: var(--light-gray);
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.detail-main {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.detail-main h2 {
    color: var(--soft-black);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.detail-main p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.detail-main ul {
    list-style: none;
    margin: 1rem 0;
}

.detail-main ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.detail-main ul li:before {
    content: "✓";
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.detail-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 90px;
}

.detail-info-box {
    margin-bottom: 2rem;
}

.detail-info-box h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-item {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-gray);
}

.info-item:last-child {
    border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .story-section,
    .training-item,
    .mission-vision,
    .contact-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .training-item.reverse {
        direction: ltr;
    }
    
    .maps-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-timeline {
        padding-left: 30px;
    }
    
    .timeline-year {
        left: -30px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .branch-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.5rem;
    }
    
    .branch-gallery::-webkit-scrollbar {
        display: none;
    }
    
    .branch-gallery img {
        flex: 0 0 85%;
        scroll-snap-align: center;
        border-radius: 10px;
    }
    
    .branch-main-img {
        height: 300px;
    }
    
    .branch-card {
        padding: 1.5rem;
    }
}
