.booking-form {
            background: #ffffff;
            border-radius: 12px;
            padding: 3px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid transparent;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .booking-form:focus-within {
            border-color: #ff6f61;
            box-shadow: 0 0 0 4px rgba(255, 111, 97, 0.25);
        }

        .booking-form .form-grp {
            flex-grow: 1;
            position: relative;
        }

        .booking-form .form-grp i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 18px;
            transition: color 0.3s;
        }

        .booking-form:focus-within .form-grp i {
            color: #ff6f61;
        }

        .booking-form input[type="text"] {
            width: 100%;
            border: none;
            background: transparent;
            padding: 15px 15px 15px 45px;
            font-size: 16px;
            color: #333;
            outline: none;
        }

        .booking-form .btn {
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            transition: background-color 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .booking-form .btn:hover {
            background-color: #ff6600;
            transform: scale(1.05);
        }

        /* === ÖNE ÇIKAN ETKİNLİKLER (GRID YAPISI - GÜNCELLENDİ) === */
        .featured-events-section .section-title {
            text-align: center; /* Başlığı ortala */
            margin-bottom: 40px; /* Başlık ve kartlar arasına boşluk */
        }

        .featured-events-section .section-title .sub-title {
            font-size: 16px;
            color: #ff6f61;
            font-weight: 600;
        }

        .featured-events-section .section-title .title {
            font-size: 36px;
            font-weight: 700;
            color: #222;
        }

        /* Kartları saran grid container */
        .event-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            /* Bu satır, grid elemanlarını container içinde ortalamak için eklendi */
            justify-content: center;
        }

        /* Kart stilleri (Slider'dan alındı, değişiklik yok) */
        .event-card {
            /* Kartların esneyip küçülmesini engeller, sabit bir genişlik verir */
            flex: 0 0 320px; /* Genişlik: 320px, esneme yok, küçülme yok */
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .event-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .event-card-body {
            padding: 20px;
            flex-grow: 1; /* Kart içeriklerinin aynı hizada bitmesini sağlar */
            display: flex;
            flex-direction: column;
        }

        .event-card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
            flex-grow: 1; /* Başlıkların esnek olmasını sağlar */
        }

        .event-card-info {
            font-size: 14px;
            color: #666;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .event-card-info i {
            color: #ff6f61;
        }

        /* "Tümünü Gör" butonu için stil */
        .view-all-link-container {
            text-align: center;
            margin-top: 40px; /* Kartlar ve buton arasına boşluk */
        }

        .view-all-link-container .btn {
            background-color: #f8f8f8;
            color: #333;
            border: 1px solid #ddd;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .view-all-link-container .btn:hover {
            background-color: #ff6f61;
            color: #fff;
            border-color: #ff6f61;
        }

        @media (max-width: 400px) {
            .event-card {
                flex-basis: 100%; /* En küçük ekranlarda kart tam genişliği kaplasın */
            }
        }

        /* === Takımlar Bölümü Stilleri === */
        .teams-area {
            padding: 80px 0;
        }

        .teams-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .team-card {
            position: relative;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .team-card-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-card-bg {
            transform: scale(1.1);
        }

        .team-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.7) 100%
            );
            z-index: 1;
        }

        .team-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            z-index: 2;
        }

        .team-name {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .teams-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 20px;
            }

            .team-card {
                height: 180px;
            }

            .team-name {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .teams-grid {
                grid-template-columns: 1fr;
            }
        }

        /* === Bilgilendirici Kutular Bölümü === */
        .info-boxes-section {
            padding: 60px 0;
        }

        .info-boxes-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            justify-content: center;
        }

        .info-box {
            background: linear-gradient(135deg, #ff6600 0%, #e65a50 100%);
            color: #fff;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .info-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }

        .info-box-icon {
            width: 80px;
            height: 80px;
            background-color: #fff;
            border-radius: 50%;
            margin: 0 auto 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .info-box-icon i {
            font-size: 36px;
            color: #ff6600; /* İkon rengi */
        }

        .info-box-content p {
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
            color: #fff;
        }

        /* Testimonials Stilleri */
        .testimonials-section {
            padding: 80px 0;
        }

        .section-title {
            margin-bottom: 50px;
        }

        .section-title .title {
            font-size: 36px;
            color: #222;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .section-title .subtitle {
            font-size: 18px;
            color: #666;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            margin: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .testimonial-content {
            margin-bottom: 25px;
        }

        .rating {
            color: #ff6600;
            font-size: 18px;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            color: #444;
            margin: 0;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #ff6600;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h5 {
            margin: 0;
            font-size: 18px;
            color: #222;
            font-weight: 600;
        }

        .author-info span {
            font-size: 14px;
            color: #666;
        }

        .testimonials-slider {
            padding-bottom: 50px;
        }

        .swiper-pagination {
            bottom: 0;
        }

        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #ff6600;
            opacity: 0.3;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            background: #ff6600;
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 60px 0;
            }

            .section-title .title {
                font-size: 28px;
            }

            .testimonial-card {
                margin: 10px;
                padding: 20px;
            }
        }

        /* Info Box Store Butonları */
        .store-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }

        .store-button {
            display: flex;
            align-items: center;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .store-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            color: #fff;
        }

        .store-button i {
            font-size: 20px;
            margin-right: 8px;
        }

        .testimonials-section {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-subtitle {
            color: #FF6B35;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .section-title {
            color: #2c3e50;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-description {
            color: #6c757d;
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonials-container {
            position: relative;
            overflow: hidden;
            margin-top: 40px;
        }

        .testimonials-slider {
            display: flex;
            animation: slide 20s infinite linear;
            gap: 30px;
        }

        .testimonial-card {
            min-width: 380px;
            background: white;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
            border-color: #FF6B35;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 24px;
            font-size: 80px;
            color: #FF6B35;
            font-family: Georgia, serif;
            opacity: 0.3;
        }

        .stars {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 20px;
        }

        .star {
            color: #FFD700;
            font-size: 20px;
        }

        .rating-text {
            color: #6c757d;
            font-size: 14px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .testimonial-text {
            color: #495057;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 24px;
            font-style: italic;
        }

        .customer-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .customer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6B35, #E55A2B);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .customer-details {
            text-align: left;
        }

        .customer-name {
            color: #2c3e50;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 4px;
        }

        .customer-event {
            color: #6c757d;
            font-size: 14px;
        }

        .controls {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 40px;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6B35, #E55A2B);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .control-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .control-btn:active {
            transform: scale(0.95);
        }

        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        .testimonials-slider:hover {
            animation-play-state: paused;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }

            .testimonial-card {
                min-width: 300px;
                padding: 24px;
            }

            .controls {
                margin-top: 30px;
            }
        }

        /* Duplicate cards for seamless loop */
        .testimonials-slider {
            width: calc(380px * 12 + 30px * 11); /* 6 cards * 2 + gaps */
        }

        .search-container {
            position: relative;
        }

        .search-results-dropdown {
            padding: 10px;
        }

        .search-result-item {
            padding: 10px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: background-color 0.2s;
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-item:hover {
            background-color: #f8f9fa;
        }

        .search-result-image {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            object-fit: cover;
        }

        .search-result-info {
            flex-grow: 1;
        }

        .search-result-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .search-result-details {
            font-size: 14px;
            color: #666;
        }

        .no-results {
            padding: 20px;
            text-align: center;
            color: #666;
        }