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

:root {
    --primary-color: #3a3a3a;
    --secondary-color: #2b2b2b;
    --accent-color: rgb(253, 189, 89);
    --accent-dark: rgb(243, 169, 59);
    --text-dark: #3a3a3a;
    --text-light: #ffffff;
    --background-light: #f5f5f5;
    --background-white: #ffffff;
    --gray-light: #e8e8e8;
    --gray-medium: #999;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: var(--background-white);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.8rem 0;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-color);
    letter-spacing: 3px;
    line-height: 1;
    transition: all 0.3s ease;
}

.logo-subtext {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 2.5px;
    line-height: 1;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo:hover .logo-text {
    color: var(--primary-color);
}

.logo:hover .logo-subtext {
    color: var(--primary-color);
}

nav.scrolled .logo-image {
    height: 50px;
}

nav.scrolled .logo-text {
    font-size: 1.3rem;
}

nav.scrolled .logo-subtext {
    font-size: 0.6rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Banner Slider */
.hero-slider {
    height: 100vh;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 58, 58, 0.7), rgba(43, 43, 43, 0.6));
    z-index: 1;
}

.slide-content {
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(253, 189, 89, 0.9);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.slider-btn:hover {
    background: rgb(253, 189, 89);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: rgb(253, 189, 89);
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    background: var(--accent-dark);
}

/* About Section */
.about {
    padding: 7rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 4rem;
    font-weight: 300;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 60%);
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin-top: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #666;
    font-size: 1.05rem;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 8rem 2rem;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 5rem;
    font-weight: 300;
    margin-top: 2rem;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(253, 189, 89, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-card:hover::after {
    width: 150px;
    height: 150px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(253, 189, 89, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(253, 189, 89, 0.4);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #555;
    line-height: 1.8;
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Classes Section */
.classes {
    padding: 7rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.classes-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.class-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.class-item:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    border-left-color: var(--accent-dark);
}

.class-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.class-details {
    flex: 1;
}

.class-details h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.class-details p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.class-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
    min-width: 120px;
}

.duration {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: 600;
    padding: 0.4rem 1rem;
    background: var(--background-light);
    border-radius: 20px;
}

.level {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level.beginner {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
}

.level.intermediate {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
}

.level.advanced {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.level.all {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

@media (max-width: 768px) {
    .class-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .class-meta {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    .class-item:hover {
        transform: translateY(-5px);
    }
}

/* Benefits Section */
.benefits {
    background: var(--background-white); 
    color: var(--text-dark);
    padding: 7rem 2rem;


}

.benefits .section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.benefits .section-subtitle {
    color: var(--gray-medium);
}

.benefits-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 3rem;
    align-items: center;
}

.benefits-left,
.benefits-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefits-right .benefit-card:hover {
    transform: translateX(-10px);
}

.benefit-icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-icon-circle svg {
    width: 28px;
    height: 28px;
}

.benefit-icon-circle.blue {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.benefit-icon-circle.green {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.benefit-icon-circle.purple {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.benefit-icon-circle.pink {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.benefit-icon-circle.blue-dark {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.benefit-icon-circle.teal {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.benefit-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.benefits-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.benefits-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0,0,0,0.2);
    border: 6px solid white;
    position: relative;
}

.benefits-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(253, 189, 89, 0.2), rgba(58, 58, 58, 0.1));
    border-radius: 25px;
    z-index: -1;
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-center {
        order: -1;
    }
    
    .benefits-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .benefit-card:hover,
    .benefits-right .benefit-card:hover {
        transform: translateY(-5px);
    }
}

/* Special Classes Section */
.special-classes {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

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

.special-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(253, 189, 89, 0.3);
}

.special-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.special-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.special-card.active {
    border-color: var(--accent-color);
    box-shadow: 0 6px 30px rgba(253, 189, 89, 0.2);
}

.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.12);
}

.special-ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(253, 189, 89, 0.4);
}

.special-ribbon::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 5px 5px;
    border-color: transparent transparent var(--accent-dark) transparent;
}

.special-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.special-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.special-date {
    text-align: center;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.special-description {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.special-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

.special-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.special-note {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 1.5rem;
    background: rgba(253, 189, 89, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.special-note p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

/* Instructors Section */
.instructors {
    padding: 7rem 2rem;
    background: var(--background-light);
    position: relative;
}

.instructors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.instructors .section-title {
    color: var(--primary-color);
}

.instructors .section-subtitle {
    color: var(--gray-medium);
}

.instructors-container {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.instructors-container .instructor-card {
    max-width: 480px;
    width: 100%;
}

.instructor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.instructor-photo {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e0e0, #c0c0c0);
}

.instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    transition: transform 0.4s ease;
}

.instructor-card:hover .instructor-photo img {
    transform: scale(1.05);
}

.instructor-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: white;
}

.instructor-badge svg {
    width: 20px;
    height: 20px;
}

.instructor-details {
    padding: 2rem;
}

.instructor-details h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.instructor-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.instructor-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin-bottom: 1.2rem;
}

.instructor-bio {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

.instructor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.specialty {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(253, 189, 89, 0.1), rgba(253, 189, 89, 0.05));
    border: 1px solid rgba(253, 189, 89, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.specialty:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .instructors-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
    }
}

/* Contact Section */
.contact {
    padding: 7rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    line-height: 1.7;
}

.contact-form {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2.2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.footer-social {
    margin-top: 0.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover {
    color: var(--accent-color);
    background: rgba(253, 189, 89, 0.1);
}

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

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

/* Gallery Section */
.gallery {
    padding: 5rem 2rem;
    background: var(--background-white);
}

.gallery-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

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

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

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

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

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

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

.gallery-title {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--accent-color);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .about-image {
        height: 350px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

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

    /* Slider düzenlemeleri */
    .slide-content {
        padding: 1rem;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .slider-btn {
        padding: 0.6rem 1rem;
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 0.5rem;
    }

    .slider-btn.next {
        right: 0.5rem;
    }

    .slider-dots {
        bottom: 1rem;
        gap: 0.6rem;
    }

    /* Benefits Section */
    .benefits {
        padding: 4rem 1.5rem;
    }

    .benefit-card {
        padding: 1.2rem;
    }

    .benefit-icon-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .benefit-content h3 {
        font-size: 1.1rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }

    /* Special Classes */
    .special-classes {
        padding: 4rem 1.5rem;
    }

    .special-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .special-card {
        padding: 1.5rem;
    }

    /* Instructors */
    .instructors {
        padding: 4rem 1.5rem;
    }

    .instructors-container {
        flex-direction: column;
        gap: 2rem;
    }

    .instructor-photo {
        height: 250px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Services & Classes */
    .services,
    .classes {
        padding: 4rem 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.5rem;
    }

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

    /* Küçük mobil ekranlar için slider ayarları */
    .slide-content {
        padding: 0.8rem;
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .slider-btn {
        padding: 0.4rem 0.7rem;
        font-size: 1rem;
        border-radius: 3px;
    }

    .slider-btn.prev {
        left: 0.3rem;
    }

    .slider-btn.next {
        right: 0.3rem;
    }

    .slider-dots {
        bottom: 0.5rem;
        gap: 0.4rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Genel bölüm ayarları */
    .about,
    .services,
    .classes,
    .benefits,
    .special-classes,
    .instructors,
    .contact {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* About Section */
    .about-content h2 {
        font-size: 1.6rem;
    }

    .about-image {
        height: 280px;
        font-size: 3rem;
    }

    /* Service Cards */
    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    /* Class Items */
    .class-item {
        padding: 1.5rem;
    }

    .class-icon {
        font-size: 2rem;
        min-width: 50px;
    }

    .class-details h3 {
        font-size: 1.1rem;
    }

    /* Benefits */
    .benefits-image {
        max-width: 300px;
    }

    .benefit-card {
        padding: 1rem;
        gap: 1rem;
    }

    .benefit-icon-circle {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .benefit-icon-circle svg {
        width: 22px;
        height: 22px;
    }

    /* Special Classes */
    .special-card {
        padding: 1.2rem;
    }

    .special-icon {
        font-size: 2.5rem;
    }

    .special-card h3 {
        font-size: 1.2rem;
    }

    /* Instructors */
    .instructor-photo {
        height: 220px;
    }

    .instructor-details {
        padding: 1.5rem;
    }

    .instructor-details h3 {
        font-size: 1.3rem;
    }

    /* Contact Form */
    .contact-form {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    /* Modal */
    .modal-content {
        max-width: 95%;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }
}
