
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

        /* Logo renkleri ve özel stiller */
        .header-top {
            background: linear-gradient(90deg, #25706f 0%, #1a5554 50%, #25706f 100%);
            height: 12px;
            width: 100%;
            box-shadow: 0 2px 10px rgba(37,112,111,0.3);
        }
        
        .footer-top {
            background: linear-gradient(90deg, #25706f 0%, #1a5554 50%, #25706f 100%);
            height: 12px;
            width: 100%;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #000 !important;
            font-size: 2.2rem;
            letter-spacing: 2px;
            position: relative;
        }
        
        .navbar-brand::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 60%;
            height: 3px;
            background: #25706f;
            border-radius: 5px;
        }
        
        .nav-link {
            font-weight: 500;
            color: #333 !important;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #25706f;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }
        
        .nav-link.active {
            color: #25706f !important;
            font-weight: 600;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(37,112,111,0.8)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 100px 0;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-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" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
            animation: wave 20s linear infinite;
        }
        
        @keyframes wave {
            0% { transform: translateX(0); }
            50% { transform: translateX(-10%); }
            100% { transform: translateX(0); }
        }
        
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: white;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Mekan Kartları */
        .mekan-card {
            border: none;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: white;
            height: 100%;
            position: relative;
            cursor: pointer;
        }
        
        .mekan-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(37, 112, 111, 0.3);
        }
        
        .mekan-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 25px 25px 0 0;
            height: 250px;
        }
        
        .mekan-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .mekan-card:hover .mekan-img {
            transform: scale(1.15);
        }
        
        .mekan-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(37,112,111,0.8), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }
        
        .mekan-card:hover .mekan-overlay {
            opacity: 1;
        }
        
        .mekan-badge {
            background: linear-gradient(135deg, #25706f, #1a5554);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(37,112,111,0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .info-icon {
            color: #25706f;
            font-size: 1.2rem;
            margin-right: 8px;
            transition: transform 0.3s ease;
        }
        
        .info-icon:hover {
            transform: scale(1.2);
        }
        
        .btn-mekan {
            background: linear-gradient(135deg, #25706f, #1a5554);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 25px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(37,112,111,0.3);
        }
        
        .btn-mekan::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a5554, #25706f);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .btn-mekan:hover::before {
            left: 0;
        }
        
        .btn-mekan:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37,112,111,0.5);
        }
        
        .btn-outline-mekan {
            border: 2px solid #25706f;
            color: #25706f;
            background: transparent;
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-mekan:hover {
            background: #25706f;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37,112,111,0.3);
        }
        
        /* Modal Stili */
        .modal-content {
            border-radius: 40px;
            border: none;
            overflow: hidden;
        }
        
        .modal-header {
            background: linear-gradient(135deg, #25706f, #1a5554);
            color: white;
            border-bottom: none;
            padding: 25px;
        }
        
        .modal-header .btn-close {
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .modal-header .btn-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }
        
        .modal-body {
            padding: 30px;
        }
        
        /* İstatistik Kartları */
        .stats-section {
            background: white;
            padding: 50px 0;
            margin: 50px 0;
            box-shadow: 0 -10px 30px rgba(0,0,0,0.05), 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .stat-card {
            text-align: center;
            padding: 30px;
            border-radius: 30px;
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(37,112,111,0.15);
        }
        
        .stat-icon {
            font-size: 3rem;
            color: #25706f;
            margin-bottom: 15px;
        }
        
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            right: -50px;
            height: 100px;
            background: linear-gradient(45deg, #25706f, #1a5554);
            transform: rotate(-2deg);
        }
        
        .footer h5 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #25706f;
        }
        
        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        /* Mobil Uyumluluk */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .navbar-brand {
                font-size: 1.6rem;
            }
            
            .mekan-img-wrapper {
                height: 200px;
            }
            
            .stat-card {
                margin-bottom: 20px;
            }
        }
        
        /* Animasyonlar */
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        /* Loading Spinner */
        .spinner-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #25706f;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
