
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #1a1a1a;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center 25%; /* Masaüstünde videoyu daha aşağıya kaydır */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1;
}

.hero-video {
    width: 100vw;
    height: auto;
    min-height: 100vh;
}

@media (min-aspect-ratio: 16/9) {
    .hero-video {
        width: auto;
        height: 100vh;
        min-width: 100vw;
    }
}

/* Mobil versiyonlarda video konumunu koru */
@media (max-width: 768px) {
    .hero-video {
        object-position: center 15% !important; /* Mobilde eski konumu koru */
    }
}

.hero-video-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 600;
}

.video-switch-btn {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.video-switch-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.video-switch-btn:hover {
    border-color: #d4af37;
    transform: scale(1.2);
}

.video-switch-btn i {
    font-size: 8px;
    color: transparent;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(45, 45, 45, 0.3) 50%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 500;
}

.container-fluid {
    position: relative;
    z-index: 3;
}

.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

/* Mobile navbar - hidden initially, show on scroll */
@media (max-width: 991.98px) {
    .navbar {
        background: rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(15px);
        padding: 0.75rem 0;
        transform: translateY(-100%) !important;
        transition: transform 0.3s ease, background 0.3s ease !important;
    }
    
    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.8) !important;
        transform: translateY(0) !important;
    }
    
    .navbar.show {
        transform: translateY(0) !important;
    }
}

.navbar-nav .nav-link.active {
    color: #d4af37 !important;
    font-weight: 600;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
    position: fixed !important;
}

.navbar-brand, .nav-link {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: white !important;
}

/* Enhanced logo visibility on mobile */
@media (max-width: 991.98px) {
    .navbar-brand {
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    }
    
    .navbar-logo {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
    }
    
    .brand-text {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
        font-weight: 700;
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
    }
    
    /* Mobile navbar toggler styling */
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 1.2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

.navbar-brand .brand-text {
    color: #d4af37 !important;
    font-weight: 600;
}

/* Desktop navbar logo text color */
@media (min-width: 992px) {
    .navbar-brand .brand-text {
        color: #d4af37 !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
        font-weight: 700 !important;
    }
}

.nav-link:hover {
    color: #d4af37 !important;
}


.master-instructor-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.master-instructor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.master-instructor-section .container {
    position: relative;
    z-index: 2;
}

.instructor-images {
    position: relative;
}

.main-instructor-image {
    position: relative;
    z-index: 2;
}

.instructor-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 3;
}

.instructor-badge i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.secondary-instructor-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 40%;
    z-index: 1;
    border: 4px solid #d4af37;
    border-radius: 15px;
    overflow: hidden;
}

.instructor-name {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.instructor-quote {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-left: 4px solid #d4af37;
    border-radius: 0 10px 10px 0;
    margin: 1rem 0;
}

.quote-text {
    font-size: 1.1rem;
    color: #f8f9fa;
    margin-left: 1rem;
}

.specialties-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.achievement-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.experience-badge {
    background: rgba(212, 175, 55, 0.2);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #d4af37;
}

.experience-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.philosophy-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #f8f9fa;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .instructor-name {
        font-size: 2rem;
    }
    
    .secondary-instructor-image {
        width: 35%;
        bottom: -20px;
        right: -20px;
    }
    
    .instructor-badge {
        top: 10px;
        right: 10px;
        padding: 0.8rem;
        font-size: 0.7rem;
    }
    
    .specialties-tags {
        justify-content: center;
    }
}

.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Select dropdown styling */
.contact-form select.form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.contact-form select.form-control option {
    background: #2c2c2c !important;
    color: white !important;
    padding: 8px 12px;
}

.contact-form select.form-control option:hover,
.contact-form select.form-control option:focus,
.contact-form select.form-control option:checked {
    background: #d4af37 !important;
    color: #000 !important;
}

.contact-form .form-label {
    color: #f8f9fa;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-info {
    padding: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: #1a1a1a;
    font-size: 1.2rem;
}

.contact-details h6 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-link {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #d4af37;
}

.contact-text {
    color: #f8f9fa;
    margin-bottom: 0.5rem;
}

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

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: #f8f9fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: #f8f9fa;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.social-link:hover,
.social-link-item:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    transform: translateY(-2px);
}

.social-link i,
.social-link-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-link-item span {
    font-weight: 500;
}

/* Footer overrides: ensure circular, centered social icons */
.footer .social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 0; /* override generic padding */
    background: var(--primary-color);
    color: #fff;
    border: none;
    flex-shrink: 0;
}

.footer .social-link i {
    margin: 0; /* remove inherited right margin */
    width: auto;
    font-size: 1.2rem;
    line-height: 1;
}

.footer .social-link:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* FOOTER GRID FIX - FORCE HORIZONTAL LAYOUT */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}

/* CRITICAL: Force flexbox layout */
.footer .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.footer .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -15px !important;
}

/* FORCE HORIZONTAL LAYOUT ON DESKTOP */
@media (min-width: 992px) {
    .footer .row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
    }
    
    .footer .row > div:nth-child(1) {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        width: 33.333% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .footer .row > div:nth-child(2) {
        flex: 0 0 16.667% !important;
        max-width: 16.667% !important;
        width: 16.667% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .footer .row > div:nth-child(3) {
        flex: 0 0 16.667% !important;
        max-width: 16.667% !important;
        width: 16.667% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .footer .row > div:nth-child(4) {
        flex: 0 0 16.667% !important;
        max-width: 16.667% !important;
        width: 16.667% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .footer .row > div:nth-child(5) {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        width: 33.333% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
}

/* Mobile responsive - stack vertically */
@media (max-width: 991px) {
    .footer .row {
        flex-direction: column !important;
    }
    
    .footer .row > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 2rem !important;
    }
}

.footer .contact-info .contact-item {
    display: block;
    margin-bottom: 1rem;
    padding: 0;
    background: transparent !important;
    border: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.footer .contact-info .contact-item:hover {
    background: transparent !important;
    transform: none !important;
    border: none !important;
    box-shadow: none !important;
}

.footer .contact-info .contact-item i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: var(--primary-color);
}

.footer .contact-info .contact-item span {
    font-size: 0.9rem;
    color: #ccc;
}

.footer .contact-info .contact-item a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer .contact-info .contact-item a:hover {
    color: var(--primary-color);
}

/* Social media links in footer */
.footer .social-media-item {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-media-item:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer .social-media-item:last-child {
    border-bottom: none;
}

.footer .social-media-item i {
    width: 20px;
    text-align: center;
}

/* Class hours styling */
.footer .class-hours .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer .class-hours .hours-item:last-child {
    border-bottom: none;
}

.footer .class-hours .hours-item span:first-child {
    color: #ccc;
}

/* Footer links */
.footer .footer-links li {
    margin-bottom: 0.5rem;
}

.footer .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer .footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Remove any conflicting styles that might break grid */
.footer * {
    box-sizing: border-box;
}

.footer .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

/* Debug - Force grid to work */
.footer .row > * {
    position: relative !important;
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

@media (min-width: 992px) {
    .footer .row {
        margin-right: -15px !important;
        margin-left: -15px !important;
    }
}

/* Responsive footer */
@media (max-width: 991px) {
    .footer .col-lg-3,
    .footer .col-lg-4,
    .footer .col-lg-2 {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .footer .col-md-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* SEO Sections Styling */

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e91e63" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.accordion {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    background: transparent;
}

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

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(255, 64, 129, 0.05) 100%);
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e91e63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem 2rem 2rem 2rem;
    background: rgba(248, 249, 250, 0.5);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.accordion-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.accordion-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accordion-body a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* SEO Benefits Section */
.seo-benefits-section {
    background: white;
    position: relative;
    border-top: 1px solid rgba(233, 30, 99, 0.1);
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.seo-benefits-section .alert {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(255, 64, 129, 0.05) 100%);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.1);
}

.seo-benefits-section .alert strong {
    color: var(--primary-color);
    font-weight: 600;
}

.seo-benefits-section h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.seo-benefits-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.seo-benefits-section .list-unstyled li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

.seo-benefits-section .list-unstyled li:last-child {
    border-bottom: none;
}

.seo-benefits-section .list-unstyled li:hover {
    padding-left: 1rem;
    background: rgba(233, 30, 99, 0.02);
}

.seo-benefits-section .list-unstyled li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.seo-benefits-section .btn-sm {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.seo-benefits-section .btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Local SEO Section */
.local-seo-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.local-seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="local-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23local-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.local-seo-section .container {
    position: relative;
    z-index: 2;
}

.local-seo-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.local-seo-section .section-description {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.local-seo-section .list-unstyled li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.local-seo-section .list-unstyled li:last-child {
    border-bottom: none;
}

.local-seo-section .list-unstyled li:hover {
    padding-left: 1rem;
    background: rgba(212, 175, 55, 0.1);
}

.local-seo-section .list-unstyled li i {
    color: #d4af37;
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 25px;
    text-align: center;
}

.local-seo-section .bg-light {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.local-seo-section .bg-light h3 {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1rem;
}

.local-seo-section .bg-light p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.local-seo-section .btn-sm {
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    margin: 0.25rem;
}

.local-seo-section .btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
}

.local-seo-section .btn-warning {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    color: #1a1a1a;
}

.local-seo-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
}

.local-seo-section .btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive for SEO Sections */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .seo-benefits-section .btn-sm,
    .local-seo-section .btn-sm {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .local-seo-section .bg-light {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .seo-benefits-section h3::after {
        width: 30px;
        height: 2px;
    }
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: #f8f9fa;
    font-weight: 500;
}

.time {
    color: #d4af37;
    font-weight: 600;
}

.quick-actions {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.action-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem auto;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.class-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.class-card.level-başlangıç {
    border-color: #28a745;
}

.class-card.level-orta {
    border-color: #ffc107;
}

.class-card.level-ileri {
    border-color: #dc3545;
}

.class-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.class-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
    background: #000;
    display: block;
}

.class-video::-webkit-media-controls {
    display: none !important;
}

.class-video::-webkit-media-controls-panel {
    display: none !important;
}

.class-video::-webkit-media-controls-play-button {
    display: none !important;
}

.class-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.class-image img.video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.class-card:hover .class-video {
    transform: scale(1.05);
}

.class-card:hover .class-image img.video-fallback {
    transform: scale(1.05);
}

.class-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.class-level {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.class-level.level-başlangıç {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.class-level.level-orta {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: #1a1a1a;
}

.class-level.level-ileri {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    color: white;
}

.class-instructor {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.class-instructor i {
    margin-right: 0.5rem;
    color: #d4af37;
}

.class-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.class-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3436;
}

.class-description {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.class-highlights {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.highlights-title {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #2d3436;
}

.highlight-item i {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.class-details {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 1rem 0;
}

.class-detail {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2d3436;
}

.class-detail i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.class-actions {
    margin-top: auto;
}

.toggle-details {
    transition: all 0.3s ease;
}

.toggle-details:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.class-detailed-content {
    background: rgba(233, 236, 239, 0.5);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid #dee2e6;
}

.detailed-list {
    margin: 0;
    padding-left: 1.5rem;
}

.detailed-list li {
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.4;
}

.detailed-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .class-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .class-image {
        height: 180px;
    }
}

.video-stories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.story-video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
}

.story-video-card.level-başlangıç {
    border-color: #28a745;
}

.story-video-card.level-orta {
    border-color: #ffc107;
}

.story-video-card.level-ileri {
    border-color: #dc3545;
}

.story-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-video-container {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #d4af37 100%);
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.story-image-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-logo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.story-content-text {
    text-align: center;
    margin-top: auto;
}

.story-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.story-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-video-poster {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #d4af37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.story-poster-content {
    text-align: center;
    padding: 1rem;
}

.story-poster-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

.story-poster-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
    line-height: 1.3;
}

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

.story-video-card:hover .story-video-overlay {
    opacity: 1;
}

.story-video-play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.story-video-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.story-video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-level-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-level-badge.level-başlangıç {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.video-level-badge.level-orta {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: #1a1a1a;
}

.video-level-badge.level-ileri {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    color: white;
}

.story-video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.story-video-info {
    padding: 1.5rem;
    text-align: center;
}

.story-video-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-video-container {
        height: 300px;
    }
    
    .story-poster-icon {
        font-size: 2.5rem;
    }
    
    .story-video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .story-video-info {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .story-video-container {
        height: 250px;
    }
    
    .story-poster-icon {
        font-size: 2rem;
    }
    
    .story-poster-content h6 {
        font-size: 0.8rem;
    }
    
    .story-video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
