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

        body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #29a7d5 0%, #1e85aa 100%); /* Yeni mavi gradient */
    min-height: 100vh;
}

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

        /* Header */
      header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Genişliği artırdık */
    margin: 0 auto;
    padding: 0 20px;
}

       .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Link arası boşluğu azalttık */
    flex-wrap: nowrap; /* Linklerin alt alta inmesini engelledik */
    margin-left: 2rem; /* Logo ile linkler arası boşluk */
}

        .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem; /* Font boyutunu küçülttük */
    white-space: nowrap; /* Link metinlerinin alt alta inmesini engelledik */
    transition: color 0.3s ease;
}
        .nav-links a:hover {
    color: #29a7d5;
}

#checkbox {
  display: none;
}

.toggle {
  position: absolute;
  width: 40px;
  cursor: pointer;
  margin: auto;
  display: none;
  height: calc(4px * 3 + 11px * 2);
  right: 20px;
  top: 20px;
}

.bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: calc(4px / 2);
  background: #29a7d5;
  color: inherit;
  opacity: 1;
  transition: none 0.35s cubic-bezier(.5,-0.35,.35,1.5) 0s;
}

/***** Spin Animation *****/

.bar--top {
  bottom: calc(50% + 11px + 4px/ 2);
  transition-property: bottom,transform;
  transition-delay: calc(0s + 0.35s),0s;
}

.bar--middle {
  top: calc(50% - 4px/ 2);
  transition-property: opacity;
  transition-delay: calc(0s + 0.35s);
}

.bar--bottom {
  top: calc(50% + 11px + 4px/ 2);
  transition-property: top,transform;
  transition-delay: calc(0s + 0.35s),0s;
}

#checkbox:checked + .toggle .bar--top {
  bottom: calc(50% - 4px/ 2);
  transform: rotate(135deg);
  transition-delay: 0s,calc(0s + 0.35s);
}

#checkbox:checked + .toggle .bar--middle {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: calc(0s + 0.35s);
}

#checkbox:checked + .toggle .bar--bottom {
  top: calc(50% - 4px/ 2);
  transform: rotate(225deg);
  transition-delay: 0s,calc(0s + 0.35s);
}


        /* Hero Section */
        .hero {
    padding: 200px 0 130px; /* Üst padding'i 120px'den 150px'e çıkardık */
    text-align: center;
    color: white;
}
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s both;
            box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(238, 90, 36, 0.4);
        }

        

        /* Features Section */
        .features {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.95);
        }

        .features h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #29a7d5;
        }

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

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            text-align: center;
        }

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

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #667eea;
        }

/* Tercih Sihirbazı Section - YORUMA ALINDI
.wizard {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.wizard-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.wizard-text {
    flex: 1;
}

.wizard-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.wizard-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.wizard-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.wizard-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.wizard-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
}

.wizard-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.4);
}

.wizard-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wizard-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .wizard-content {
        flex-direction: column;
        gap: 2rem;
    }

    .wizard-text h2 {
        font-size: 2rem;
    }

    .wizard-text p {
        font-size: 1.1rem;
    }

    .wizard-features li {
        font-size: 1rem;
    }
}
*/



        
        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.95);
        }

        .pricing h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .pricing-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .price-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .toggle-container {
            background: white;
            border-radius: 50px;
            padding: 4px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .toggle-btn {
            padding: 12px 24px;
            border: none;
            background: transparent;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
        }

        .toggle-btn.active {
            background: linear-gradient(45deg, #29a7d5, #1e85aa);
            color: white;
               box-shadow: 0 5px 15px rgba(41, 167, 213, 0.3);
        }

        .pricing-loading {
            text-align: center;
            color: #333;
            padding: 3rem 0;
        }

        .pricing-loading .spinner {
            margin: 0 auto 1rem auto;
             border-color: rgba(41, 167, 213, 0.3);
            border-top-color: #29a7d5;
        }

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

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

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

        .pricing-card.featured {
            border: 3px solid #29a7d5;
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'EN POPÜLER';
            position: absolute;
            top: 20px;
            right: -30px;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 8px 40px;
            font-size: 0.8rem;
            font-weight: bold;
            transform: rotate(45deg);
            box-shadow: 0 5px 15px rgba(238, 90, 36, 0.3);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: bold;
            color: #29a7d5;
            margin-bottom: 0.5rem;
        }

        .price-period {
            color: #666;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .price-discount {
            background: #e8f5e8;
            color: #2e7d2e;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            display: inline-block;
        }

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

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

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

        .plan-button {
            width: 100%;
            padding: 15px 24px;
            background: linear-gradient(45deg, #29a7d5, #1e85aa);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .plan-button:hover {
            background: linear-gradient(45deg, #248fb8, #1a7696);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .pricing-card.featured .plan-button {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
        }

        .pricing-card.featured .plan-button:hover {
            background: linear-gradient(45deg, #ff5252, #dd4d1f);
            box-shadow: 0 15px 40px rgba(238, 90, 36, 0.4);
        }

        .no-pricing {
            text-align: center;
            color: #666;
            padding: 3rem 0;
            font-size: 1.2rem;
            background: white;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Coaches Section */
        .coaches {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.1);
        }

        .coaches h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: white;
        }

        .coaches-loading {
            text-align: center;
            color: white;
            padding: 3rem 0;
        }

        .coaches-loading .spinner {
            margin: 0 auto 1rem auto;
        }

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

        .coach-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .coach-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #29a7d5, #1e85aa);
        }

        .coach-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1.5rem auto;
            display: block;
            object-fit: cover;
            border: 4px solid #f8f9fa;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .coach-name {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #333;
            text-align: center;
        }

        .coach-specialty {
           color: #29a7d5;
            font-weight: 600;
            margin-bottom: 1rem;
            text-align: center;
            font-size: 0.95rem;
        }

        .coach-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .coach-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            gap: 0.5rem;
        }

        .stars {
            display: flex;
            gap: 2px;
        }

        .star {
            color: #ffc107;
            font-size: 1.1rem;
        }

        .star.empty {
            color: #e9ecef;
        }

        .rating-number {
            font-weight: bold;
            color: #333;
            margin-left: 0.5rem;
        }

        .coach-detail-btn {
            width: 100%;
            padding: 12px 24px;
            background: linear-gradient(45deg, #29a7d5, #1e85aa);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .coach-detail-btn:hover {
            background: linear-gradient(45deg, #248fb8, #1a7696);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .no-coaches {
            text-align: center;
            color: white;
            padding: 3rem 0;
            font-size: 1.2rem;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.95);
        }

        .testimonials h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .testimonials-loading {
            text-align: center;
            color: #333;
            padding: 3rem 0;
        }

        .testimonials-loading .spinner {
            margin: 0 auto 1rem auto;
            border-color: rgba(102, 126, 234, 0.3);
            border-top-color: #667eea;
        }

        .testimonials-slider {
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            max-width: 1200px;
        }

        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease;
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            min-width: 350px;
            position: relative;
            overflow: hidden;
        }

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

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: rgba(102, 126, 234, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f8f9fa;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-right: 1rem;
        }

        .testimonial-info h4 {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.3rem;
        }

        .testimonial-role {
            color: #29a7d5;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .testimonial-rating {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            gap: 0.3rem;
        }

        .testimonial-rating .star {
            color: #ffc107;
            font-size: 1rem;
        }

        .testimonial-rating .star.empty {
            color: #e9ecef;
        }

        .testimonial-comment {
            color: #555;
            font-size: 1rem;
            line-height: 1.6;
            font-style: italic;
            position: relative;
            z-index: 2;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 3rem;
            gap: 1rem;
        }

        .slider-btn {
            background: linear-gradient(45deg, #29a7d5, #1e85aa);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            background: linear-gradient(45deg, #248fb8, #1a7696);
            transform: scale(1.1);
        }

        .slider-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .slider-dots {
            display: flex;
            gap: 0.5rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e9ecef;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .slider-dot.active {
            background: #29a7d5;
            transform: scale(1.2);
        }

        .no-testimonials {
            text-align: center;
            color: #666;
            padding: 3rem 0;
            font-size: 1.2rem;
            background: white;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            text-align: center;
            color: white;
        }

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

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

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

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -32px;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #29a7d5 0%, #1e85aa 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        padding: 0;
    }

    #checkbox:checked ~ .nav-links {
        transform: translateX(0);
    }

    .nav-links li {
        text-align: center;
        padding: 0;
        border-top: none;
        /*margin: 0.1rem 0;*/
    }

    .nav-links a {
        color: white;
        font-size: 1.2rem;
        font-weight: bold;
    }

    #checkbox:checked + .toggle .bar {
        background: white;
    }

    .toggle {
        display: block;
        z-index: 1001;
    }

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

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

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

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

    .pricing-card.featured {
        transform: none;
    }

    .toggle-container {
        width: 100%;
        max-width: 300px;
    }

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

    .testimonial-card {
        min-width: 280px;
    }

    .testimonials-container {
        gap: 1rem;
        padding: 0 1rem;
    }

    .coach-modal-content {
        width: 90vw;
        max-height: 80vh;
        overflow-y: auto;
        padding: 2rem 1.5rem;
    }

    .coach-modal-close {
        top: 15px;
        right: 15px;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: #f1f1f1;
        border-radius: 50%;
    }
}

        @media (min-width: 769px) and (max-width: 1024px) {
            .coaches-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1025px) {
            .coaches-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1400px) {
            .coaches-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }




.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0; /* Logo boyutunun küçülmesini engeller */
}


.logo img {
    height: 60px; /* Logo yüksekliğini sabit tuttuk */
    width: auto;
    object-fit: contain;
}


/* FAQ Section */
.faq {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px;
    /* max-height will be set by JavaScript */
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        padding: 0 20px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #29a7d5;
    margin-bottom: 1.5rem;
}

.about-text > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.mission h4, .vision h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.mission p, .vision p {
    color: #666;
    line-height: 1.6;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature .feature-icon {
    font-size: 2rem;
}

.about-feature h5 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.about-feature p {
    color: #666;
    font-size: 0.9rem;
}

.about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 500px; /* Logo için maksimum genişlik */
    border-radius: 20px;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply; /* Bu özellik logoyu arka planla daha iyi harmanlar */
}
@media (experience-badge) {
    .about-image img {
        display: none; /* Daha küçük ekranlarda logonun boyutunu küçült */
    }
}
.experience-badge {
    position: absolute;
    bottom: -140px;
    right: -30px;
    background: #29a7d5;
    color: white;
    padding: 2rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(41, 167, 213, 0.3);
}

.experience-badge .years {
    font-size: 1.3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.experience-badge .text {
   font-size: 1.1rem;
    line-height: 1.2;
    font-weight: bold; /* Added this line */
}

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

.about-button {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-button:first-child {
    background: #29a7d5;
    color: white;
}

.about-button.secondary {
    background: transparent;
    border: 2px solid #29a7d5;
    color: #29a7d5;
}

.about-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(41, 167, 213, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .experience-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .about-text h3 {
        font-size: 1.3rem;
    }

    .about-cta {
        flex-direction: column;
    }

    .about-button {
        text-align: center;
    }
}



.coach-modal {
    position: fixed;
    z-index: 99999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(30,40,60,0.85);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.3s;
}
.coach-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 900px;
    width: 90vw;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    animation: fadeInUp 0.4s;
    max-height: 90vh;
    overflow-y: auto;
}
.coach-modal-close {
    position: absolute;
    top: 18px; right: 24px;
    font-size: 2rem;
    color: #29a7d5;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
}
.coach-modal-close:hover { color: #ee5a24; }
.coach-modal-avatar {
    width: 110px; height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    border: 4px solid #29a7d5;
    box-shadow: 0 4px 16px rgba(41,167,213,0.15);
}
.coach-modal-specialty {
    color: #1e85aa;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.coach-modal-rating {
    margin-bottom: 1rem;
}
.coach-modal-rating .star {
    color: #ffc107;
    font-size: 1.2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #29a7d5;
    outline: none;
}


/* Ön Görüşme Section */
.pre-interview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2f7 100%); /* Light blue gradient */
    color: #333;
}

.pre-interview-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.pre-interview-text {
    flex: 1;
    min-width: 300px; /* Ensure text doesn't get too narrow */
}

.pre-interview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #29a7d5;
}

.pre-interview-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pre-interview-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px; /* Ensure image doesn't get too small */
}

.pre-interview-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments for pre-interview section */
@media (max-width: 768px) {
    .pre-interview-content {
        flex-direction: column;
        text-align: center;
    }

    .pre-interview-text h2 {
        font-size: 2rem;
    }

    .pre-interview-text p {
        font-size: 1rem;
    }
}
.coach-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #e0e0e0;
    border-color: #ccc;
}

.filter-btn.active {
    background: linear-gradient(45deg, #29a7d5, #1e85aa);
    color: white;
    border-color: #29a7d5;
    box-shadow: 0 4px 10px rgba(41, 167, 213, 0.3);
}

.monthly-equivalent {
    background: #e8f5e8;
    color: #2e7d2e;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    margin: -5px auto 2rem auto;
    display: inline-block;
    line-height: 1.4;
}