/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo i {
    margin-right: 0.5rem;
    color: #ff6b35;
    font-size: 1.8rem;
}

.logo:hover {
    color: #ff6b35;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    padding: 0.55rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.nav-item.has-dropdown.open .nav-dropdown-toggle::after,
.nav-item.has-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0.4rem 0;
    list-style: none;
    z-index: 1200;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Invisible bridge — без «дыры» между кнопкой и меню */
.nav-dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-item.has-dropdown.open .nav-dropdown {
    display: block;
}

.nav-dropdown-link {
    display: block;
    padding: 0.85rem 1.2rem;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.98rem;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    background: #2d2d2d;
    color: #ff6b35;
}

.nav-dropdown-link.active {
    font-weight: 600;
}

/* Tabs between boxing / kickboxing pages */
.discipline-switch {
    display: inline-flex;
    gap: 0;
    margin-top: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
}

.discipline-tab {
    display: inline-block;
    padding: 0.65rem 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
}

@media (max-width: 640px) {
    .discipline-switch {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 22rem;
    }

    .discipline-tab {
        flex: 1 1 40%;
        text-align: center;
        padding: 0.55rem 0.6rem;
        font-size: 0.85rem;
    }
}

.discipline-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.discipline-tab.active {
    background: #ff6b35;
    color: #fff;
}

.discipline-switch-light {
    border-color: #ddd;
    background: #f4f4f4;
}

.discipline-switch-light .discipline-tab {
    color: #444;
}

.discipline-switch-light .discipline-tab:hover {
    background: #ebebeb;
    color: #1a1a1a;
}

.discipline-switch-light .discipline-tab.active {
    background: #ff6b35;
    color: #fff;
}

.personal-formats .direction-item {
    cursor: default;
}

.personal-price-bar {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.personal-price-note {
    text-align: center;
    margin-top: 1.25rem;
    color: #666;
    font-size: 0.95rem;
}

.personal-price-note a {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
}

.personal-price-note a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .discipline-switch {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff6b35;
}

.header-phone {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
}

.header-phone i {
    margin-right: 0.5rem;
    color: #ff6b35;
}

.header-phone a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-phone a:hover {
    color: #ff6b35;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 5.5rem 0 4.5rem;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.hero .btn-outline:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About Section */
.about {
    background: #fff;
    padding: 5rem 0;
}

.about-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 0.5rem !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
    min-height: 340px;
}

.about-text h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.about-text > p:not(.about-eyebrow) {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    color: #555;
    max-width: 36rem;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-actions .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}

.about-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Портрет тренера: якорь сверху, чтобы не срезало голову */
.about-image--trainer img {
    height: 420px;
    object-position: center 12%;
}

/* Directions — after hero, before about */
.directions {
    background: #f0efed;
    padding: 4.5rem 0;
    border-bottom: 1px solid #e4e2de;
}

.section-header-compact {
    margin-bottom: 2rem;
}

.section-header-compact h2 {
    font-size: 1.75rem;
}

.section-header-compact p {
    font-size: 1rem;
}

.directions-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

.direction-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    min-height: 128px;
    height: 100%;
    padding: 1.35rem 1.2rem;
    background: #fff;
    text-decoration: none;
    color: inherit;
    border-top: 3px solid #ff6b35;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.direction-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.direction-item i {
    color: #ff6b35;
    font-size: 1.35rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.direction-item h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
}

.direction-item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.4;
    color: #666;
}

.direction-item-accent {
    border-top-color: #1a1a1a;
}

.direction-item-accent i {
    color: #1a1a1a;
}

/* Legacy groups (hall pages) */
.groups-info {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.groups-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

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

.group-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.group-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255,107,53,0.2);
}

.group-card i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.group-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.group-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

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

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255,107,53,0.2);
}

.feature i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.service-card {
    background: #fff;
    padding: 1.75rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-card .btn {
    margin-top: auto;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card.featured {
    border: 2px solid #ff6b35;
}

.service-trial {
    margin-top: 2rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    min-height: 88px;
}

.service-trial-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 220px;
}

.service-trial-info i {
    color: #ff6b35;
    font-size: 1.5rem;
}

.service-trial-info h3 {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
}

.service-trial-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.service-trial-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.service-trial-price .price {
    font-size: 1.6rem;
}

.service-trial-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.section-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.section-links .btn {
    min-width: 180px;
}

.discipline-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.discipline-panel {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.discipline-panel h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discipline-panel h3 i {
    color: #ff6b35;
}

.discipline-panel h4 {
    margin: 1rem 0 0.4rem;
    font-size: 1rem;
}

.discipline-panel p,
.discipline-panel li {
    color: #555;
    line-height: 1.55;
}

.discipline-panel ul {
    margin: 0.4rem 0 0;
    padding-left: 1.1rem;
}

.schedule-note-inline {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .discipline-meta {
        grid-template-columns: 1fr;
    }
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b35;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-card > p {
    color: #666;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.service-price {
    margin-bottom: 1.25rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.service-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.period {
    color: #666;
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    background: #fff;
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-embeds {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    box-shadow: none;
    overflow: visible;
}

.map-embed h3 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
}

.map-embed iframe {
    display: block;
    width: 100%;
    min-height: 280px;
    border: 0;
    border-radius: 8px;
}

.map-embed p {
    margin-top: 0.5rem;
}

.map-embed a {
    color: #ff6b35;
    text-decoration: none;
}

.map-embed a:hover {
    text-decoration: underline;
}

.footer .contact-info a {
    color: inherit;
    text-decoration: none;
}

.footer .contact-info a:hover {
    color: #ff6b35;
}

.group-card a.review-link {
    font-weight: 500;
}

body.menu-open {
    overflow: hidden;
}

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

.address-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.address-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.address-card p {
    margin-bottom: 0.5rem;
    color: #555;
}

.address-card i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

.schedule {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.schedule h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.schedule p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #555;
}

.additional-info {
    margin-top: 2rem;
    padding: 1rem;
    background: #e8f4fd;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.additional-info p {
    margin: 0;
    color: #1976d2;
    font-size: 0.9rem;
}

.additional-info i {
    color: #2196f3;
    margin-right: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #ff6b35;
}

.hall-geo-note {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #555;
}

.hall-geo-note a {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
}

.hall-geo-note a:hover {
    text-decoration: underline;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Trainers Section */
.trainers {
    background: #fff;
    padding: 5rem 0;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.trainer-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-5px);
}

.trainer-image {
    position: relative;
}

.trainer-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 12%;
    border-radius: 10px;
}

.trainer-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.trainer-title {
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 1rem;
}

.trainer-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.trainer-location {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.trainer-location i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

.trainer-achievements h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.trainer-achievements ul {
    list-style: none;
}

.trainer-achievements li {
    padding: 0.2rem 0;
    color: #555;
    position: relative;
    padding-left: 1rem;
}

.trainer-achievements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #fff;
    text-align: center;
    padding: 4.5rem 0;
}

.cta .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
}

.cta .btn-outline:hover {
    background: #fff;
    color: #e55a2b;
    border-color: #fff;
}

.cta-inline-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.cta-inline-link:hover {
    opacity: 0.9;
}


.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn {
    background: #fff;
    color: #ff6b35;
    border-color: #fff;
}

.cta .btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Halls Section */
.halls {
    background: #fff;
    padding: 5rem 0;
}

.halls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.hall-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hall-card:hover {
    transform: translateY(-5px);
}

.hall-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hall-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hall-card:hover .hall-image img {
    transform: scale(1.05);
}

.hall-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hall-card:hover .hall-overlay {
    opacity: 1;
}

.hall-info {
    padding: 2rem;
}

.hall-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hall-address, .hall-metro, .hall-location {
    margin-bottom: 0.5rem;
    color: #555;
}

.hall-address i, .hall-metro i, .hall-location i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

.hall-features {
    margin: 1rem 0;
}

.feature-tag {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.hall-schedule h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.hall-schedule p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #555;
}

.hall-trainings {
    margin: 1rem 0 0.75rem;
}

.hall-trainings h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
    color: #1a1a1a;
}

.hall-training-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.training-chip {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    border: 1px solid #ff6b35;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.training-chip:hover {
    background: #ff6b35;
    color: #fff;
}

.training-chip-muted {
    border-color: #bbb;
    color: #666;
}

.training-chip-muted:hover {
    background: #666;
    border-color: #666;
    color: #fff;
}

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
}

.hall-alt-hint {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.hall-alt-hint p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.hall-alt-hint .btn {
    flex-shrink: 0;
}

.hall-trainings-block {
    margin: 1.75rem 0;
    border-top: none;
}

.hall-trainings-block h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hall-training-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.hall-training-card {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.95rem 0.9rem;
    background: #f8f9fa;
    text-decoration: none;
    color: inherit;
    border-top: 3px solid #ff6b35;
    min-height: 92px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hall-training-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.hall-training-card i {
    color: #ff6b35;
    font-size: 1.15rem;
    margin-top: 0.15rem;
}

.hall-training-card h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    color: #1a1a1a;
}

.hall-training-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .hall-training-cards {
        grid-template-columns: 1fr;
    }
}

/* Improved hall details styling */
.hall-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
}

.detail-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.detail-item div {
    flex: 1;
    line-height: 1.4;
}

.detail-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

.detail-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.detail-item a:hover {
    text-decoration: underline;
}

.schedule-days {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-day {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.schedule-day .day {
    font-weight: 600;
    color: #ff6b35;
    min-width: 80px;
    font-size: 0.9rem;
}

.schedule-day .times {
    flex: 1;
    line-height: 1.6;
}

.time-group {
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 0.5rem;
}

.group-type {
    color: #666;
    font-size: 0.9rem;
}

/* Events Page Styles */
.events-intro {
    background: #fff;
    padding: 5rem 0 0 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Competitions Section */
.competitions-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.competition-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.competition-card:hover {
    transform: translateY(-5px);
}

.competition-image {
    height: 200px;
    overflow: hidden;
}

.competition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.competition-info {
    padding: 2rem;
}

.competition-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.competition-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.competition-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.detail i {
    color: #ff6b35;
}

/* Camps Section */
.camps-section {
    background: #fff;
    padding: 5rem 0;
}

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

.camp-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.camp-card:hover {
    transform: translateY(-5px);
}

.camp-header {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.camp-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.camp-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.camp-content {
    padding: 2rem;
}

.camp-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.camp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 0;
}

.feature i {
    color: #ff6b35;
}

.camp-schedule h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.camp-schedule ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.camp-schedule li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.camp-schedule li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Upcoming Events */
.upcoming-events {
    background: #f8f9fa;
    padding: 5rem 0;
}

.events-timeline {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateX(10px);
}

.event-date {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.event-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.event-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.event-time, .event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.event-time i, .event-location i {
    color: #ff6b35;
}

/* Venues Section */
.venues {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.venue-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-10px);
}

.venue-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.05);
}

.venue-content {
    padding: 2rem;
}

.venue-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.venue-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.venue-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.feature-item:hover i {
    color: #fff;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
}

.feature-item:hover span {
    color: #fff;
}

.venue-info {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.info-item i {
    color: #ff6b35;
    width: 16px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Registration CTA */
.registration-cta {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.registration-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.registration-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.registration-cta .btn {
    margin: 0 0.5rem;
}

.registration-cta .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.registration-cta .btn-outline:hover {
    background: #fff;
    color: #ff6b35;
}

/* Reviews Section */
.reviews {
    background: #fff;
    padding: 4.5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem 1.35rem;
    box-shadow: none;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    min-height: 220px;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: #ff6b35;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.review-header {
    margin-bottom: 1rem;
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform-logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    background: #f8f9fa;
    padding: 0;
}

.platform-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
}

.rating-number {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.review-content {
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.review-text {
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.85rem;
    background: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
}

.stat i {
    color: #ff6b35;
    font-size: 0.8rem;
}

.review-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-align: center;
}

.review-link:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.review-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.review-links .review-link {
    width: 100%;
}

/* Equipment Section */
.equipment {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.equipment-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

.equipment-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.equipment-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.equipment-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Hall Details */
.hall-details {
    background: #fff;
    padding: 5rem 0;
}

.hall-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hall-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.gallery-thumbs img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-thumbs img:hover {
    opacity: 0.7;
}

.hall-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hall-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

.hall-address, .hall-schedule, .hall-features, .hall-groups, .hall-trainings-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.hall-address h3, .hall-schedule h3, .hall-features h3, .hall-groups h3, .hall-trainings-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hall-address p {
    margin-bottom: 0.5rem;
    color: #555;
}

.hall-address i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

.schedule-grid {
    display: grid;
    gap: 1rem;
}

.schedule-day h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.schedule-day p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #555;
}

.schedule-note {
    margin-top: 1rem;
    padding: 0.8rem;
    background: #e8f4fd;
    border-radius: 5px;
    color: #1976d2;
    font-size: 0.9rem;
}

.schedule-note i {
    color: #2196f3;
    margin-right: 0.5rem;
}

.hall-features ul {
    list-style: none;
    padding: 0;
}

.hall-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.hall-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.groups-info {
    display: grid;
    gap: 1rem;
}

.group-type {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.group-type i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 0.2rem;
}

.group-type h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.group-type p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.hall-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Info Section */
.contact-info-section {
    background: #fff;
    padding: 5rem 0;
}

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

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-card a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Contact Form Section - Removed */

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

/* Gallery Section */
.gallery-filter {
    background: #f8f9fa;
    padding: 2rem 0;
}

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

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.gallery {
    background: #fff;
    padding: 3rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.modal-caption {
    text-align: center;
    color: #fff;
    padding: 1rem;
}

.modal-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #ff6b35;
    font-size: 1.8rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #ff6b35;
    margin-right: 0.5rem;
    width: 20px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

.footer-requisites {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #1a1a1a;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        align-items: stretch;
    }

    .nav-item.has-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 1rem;
        border-bottom: 1px solid #333;
        color: #fff;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        display: none;
        min-width: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #141414;
        padding: 0;
    }

    .nav-item.has-dropdown.open .nav-dropdown {
        display: block;
    }

    .nav-dropdown-link {
        padding: 0.85rem 1.5rem;
        border-bottom: 1px solid #2a2a2a;
    }

    .nav > .nav-list > li > .nav-link:not(.nav-dropdown-toggle) {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #333;
    }

    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about {
        padding: 3.5rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        min-height: 0;
    }

    .about-image img {
        height: 260px;
    }

    .about-image--trainer img {
        height: 320px;
        object-position: center 10%;
    }

    .directions-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .direction-item {
        min-height: 110px;
    }

    .directions {
        padding: 3.25rem 0;
    }

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

    .service-card {
        min-height: 0;
    }
    
    .trainer-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }
    
    .trainer-image {
        margin-bottom: 1rem;
    }
    
    .trainer-image img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        object-position: center 12%;
        margin: 0 auto;
        border-radius: 50%;
    }
    
    .trainer-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .trainer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .trainer-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .trainer-achievements {
        text-align: left;
    }
    
    .trainer-achievements ul {
        padding-left: 1rem;
    }
    
    .trainer-achievements li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .trainer-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .addresses {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .directions-row {
        grid-template-columns: 1fr;
    }

    .direction-item {
        padding: 1rem;
    }

    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .schedule-day {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .schedule-day .day {
        min-width: auto;
        font-size: 1rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .competitions-grid, .camps-grid {
        grid-template-columns: 1fr;
    }
    
    .event-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-date {
        align-self: flex-start;
        min-width: auto;
    }
    
    .camp-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .feature {
        white-space: normal;
        justify-content: flex-start;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.2rem;
    }
    
    .platform-info {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .platform-logo {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        padding: 0;
    }
    
    .review-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .review-links {
        gap: 0.5rem;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .venue-card {
        margin: 0 1rem;
    }
    
    .venue-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .venue-content {
        padding: 1.5rem;
    }
    
    /* Halls Mobile Optimization */
    .halls-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hall-card {
        margin: 0;
        padding: 1rem;
    }
    
    .hall-image {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .hall-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .hall-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hall-address,
    .hall-location,
    .hall-metro {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .hall-features {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .hall-schedule h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .hall-schedule p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    /* Individual Hall Pages Mobile */
    .hall-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hall-gallery {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hall-info {
        order: 2;
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .main-image {
        margin-bottom: 1.5rem;
    }
    
    .main-image img {
        height: 250px;
        border-radius: 8px;
    }
    
    .gallery-thumbs {
        gap: 8px;
        justify-content: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .gallery-thumbs img {
        width: 50px;
        height: 40px;
        border-radius: 6px;
    }
    
    .hall-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hall-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .hall-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .feature-item {
        padding: 1rem;
        text-align: center;
    }
    
    .feature-item i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Contacts Mobile Optimization */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .contact-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .form-group textarea {
        height: 120px;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    /* Map Mobile */
    .map-container {
        margin: 2rem 0;
    }

    .map-embeds {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe,
    .map-embed iframe {
        height: 280px;
        border-radius: 8px;
    }

    .nav-list {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .services-grid,
    .halls-grid,
    .trainers-grid {
        grid-template-columns: 1fr;
    }
}

/* Photo Viewer Styles */
.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.gallery-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-thumbs img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumbs img.active {
    border-color: #ff6b35;
    opacity: 1;
    transform: scale(1.05);
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

/* Gallery Filter Styles */
.gallery-filter {
    padding: 2rem 0;
    background: #f8f9fa;
}

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

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ff6b35;
    background: transparent;
    color: #ff6b35;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #ff6b35;
    color: white;
}

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Mobile Gallery Styles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-thumbs img {
        width: 60px;
        height: 45px;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Enhanced Mobile Photo Interaction */
    .gallery-thumbs {
        overflow-x: auto;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .gallery-thumbs::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-thumbs img {
        flex-shrink: 0;
        width: 60px;
        height: 45px;
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    
    .gallery-thumbs img:active {
        transform: scale(0.95);
    }
    
    .main-image {
        touch-action: pan-x pan-y;
    }
    
    .main-image img {
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }
    
    /* Swipe indicators for mobile */
    .gallery-thumbs::after {
        content: '← Свайп для просмотра →';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.8rem;
        color: #666;
        white-space: nowrap;
    }
    
    /* Touch-friendly buttons */
    .btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Improved mobile gallery grid */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .gallery-item img {
        height: 200px;
        transition: transform 0.2s ease;
    }
    
    .gallery-item:active img {
        transform: scale(0.98);
    }
    
    /* Mobile-specific hall gallery improvements */
    .hall-gallery {
        position: relative;
        margin-bottom: 3rem;
    }
    
    .gallery-thumbs {
        position: relative;
        margin-top: 15px;
        margin-bottom: 2rem;
    }
    
    /* Ensure proper spacing between gallery and hall info */
    .hall-info {
        clear: both;
        margin-top: 3rem;
    }
    
    .hall-info h2 {
        margin-top: 0;
        padding-top: 1rem;
    }
    
    /* Mobile contact improvements */
    .contact-info {
        padding: 0 1rem;
    }
    
    .contact-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
    
    /* Mobile trainer cards improvements */
    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .trainer-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .trainer-location {
        margin: 1rem 0;
        padding: 0.8rem;
        background: #f8f9fa;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    .trainer-achievements {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
