:root {
            --primary: #00f5ff;
            --secondary: #ff006e;
            --dark: #0a0e27;
            --dark-light: #1a1f3a;
            --accent: #7b2cbf;
            --text: #e0e7ff;
            --text-dim: #94a3b8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Barlow', sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
        }
		
		
		/* Lazy Loading için */
		img[loading="lazy"] {
			opacity: 0;
			transition: opacity 0.3s;
		}

		img[loading="lazy"].loaded {
			opacity: 1;
		}

		/* Map Container */
		.map-container {
			position: relative;
			overflow: hidden;
			box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
		}


		.mobile-break {
			display: none;
		}

		@media (max-width: 768px) {
			.mobile-break {
				display: block;
			}
		}
		
		.map-container iframe {
			display: block;
		}
        
        /* Animated Background */
        .bg-animated {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(123, 44, 191, 0.05) 0%, transparent 50%);
        }
        
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: 
                linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% { transform: translateY(0); }
            100% { transform: translateY(50px); }
        }
        
        /* Navigation */
        .navbar {
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 245, 255, 0.1);
            padding: 1.2rem 0;
        }
        
        .navbar-brand {
            font-family: 'Exo 2', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-link {
            color: var(--text) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 8rem 0 4rem;
        }
        
        .hero h1 {
            font-family: 'Exo 2', sans-serif;
            font-size: clamp(2.5rem, 7vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero p {
            font-size: 1.3rem;
            color: var(--text-dim);
            margin-bottom: 2.5rem;
            max-width: 600px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
            border: 2px solid rgba(0, 245, 255, 0.2);
            animation: fadeInRight 0.8s ease-out 0.3s both;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Buttons */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--dark);
            padding: 1rem 2.5rem;
            border: none;
            font-weight: 600;
            border-radius: 0.5rem;
            font-size: 1.1rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
            color: var(--dark);
        }
        
        .btn-secondary-custom {
            background: transparent;
            color: var(--text);
            padding: 1rem 2.5rem;
            border: 2px solid var(--primary);
            font-weight: 600;
            border-radius: 0.5rem;
            font-size: 1.1rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary-custom:hover {
            background: rgba(0, 245, 255, 0.1);
            transform: translateY(-3px);
            color: var(--text);
        }
        
        /* Features Section */
        .features {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-title {
            font-family: 'Exo 2', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-dim);
            font-size: 1.2rem;
            margin-bottom: 4rem;
        }
        
        .feature-card {
            background: rgba(26, 31, 58, 0.5);
            border: 1px solid rgba(0, 245, 255, 0.1);
            border-radius: 1rem;
            padding: 2.5rem 2rem;
            height: 100%;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .feature-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--dark);
        }
        
        .feature-card h3 {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .feature-card p {
            color: var(--text-dim);
            line-height: 1.7;
        }
        
        /* Stats Section */
        .stats {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(123, 44, 191, 0.05));
            position: relative;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-family: 'Exo 2', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
        }
        
        /* About Section */
        .about {
            padding: 6rem 0;
            position: relative;
        }
        
        .about-content {
            background: rgba(26, 31, 58, 0.5);
            border: 1px solid rgba(0, 245, 255, 0.1);
            border-radius: 1.5rem;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .about-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
        }
        
        .about-text {
            font-size: 1.2rem;
            line-height: 1.9;
            color: var(--text-dim);
            margin-bottom: 2rem;
        }
        
        .about-highlight {
            color: var(--primary);
            font-weight: 600;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .about-feature-item {
            display: flex;
            align-items: start;
            gap: 1rem;
        }
        
        .about-feature-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--dark);
        }
        
        .about-feature-text h4 {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
        
        .about-feature-text p {
            color: var(--text-dim);
            margin: 0;
            line-height: 1.6;
        }
        
        /* Pricing */
        .pricing {
            padding: 6rem 0;
            background: rgba(26, 31, 58, 0.3);
        }
        
        .price-card {
            background: rgba(26, 31, 58, 0.8);
            border: 2px solid rgba(0, 245, 255, 0.2);
            border-radius: 1.5rem;
            padding: 3rem 2.5rem;
            height: 100%;
            transition: all 0.4s;
            position: relative;
        }
        
        .price-card.featured {
            border-color: var(--primary);
            background: rgba(0, 245, 255, 0.05);
            transform: scale(1.05);
        }
        
        .price-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 20px 50px rgba(0, 245, 255, 0.3);
        }
        
        .price-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--dark);
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price-card h3 {
            font-family: 'Exo 2', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .price {
            font-family: 'Exo 2', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .price-period {
            color: var(--text-dim);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .price-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
        }
        
        .price-features li {
            padding: 0.7rem 0;
            color: var(--text-dim);
            display: flex;
            align-items: start;
            gap: 0.8rem;
        }
        
        .price-features i {
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 0.2rem;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 6rem 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            aspect-ratio: 16/10;
            background: rgba(26, 31, 58, 0.5);
            border: 1px solid rgba(0, 245, 255, 0.1);
            transition: all 0.4s;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(0, 245, 255, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.4s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: rgba(0, 245, 255, 0.2);
        }
        
        /* Lightbox Modal */
        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
        }
        
        .lightbox-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            animation: zoomIn 0.3s ease;
        }
        
        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 0.5rem;
            box-shadow: 0 0 50px rgba(0, 245, 255, 0.5);
        }
        
        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-close:hover {
            background: var(--primary);
            color: var(--dark);
            transform: rotate(90deg);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 245, 255, 0.1);
            border: 2px solid var(--primary);
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-nav:hover {
            background: var(--primary);
            color: var(--dark);
        }
        
        .lightbox-prev {
            left: -70px;
        }
        
        .lightbox-next {
            right: -70px;
        }
        
        /* Contact */
        .contact {
            padding: 6rem 0;
        }
        
        .contact-info {
            background: rgba(26, 31, 58, 0.5);
            border: 1px solid rgba(0, 245, 255, 0.1);
            border-radius: 1rem;
            padding: 2rem;
            height: 100%;
        }
        
        .contact-item {
            display: flex;
            align-items: start;
            margin-bottom: 2rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--dark);
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .contact-item p {
            color: var(--text-dim);
            margin: 0;
        }
        
        .contact-item a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-item a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(0, 245, 255, 0.1);
            border: 1px solid rgba(0, 245, 255, 0.3);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.3rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-link:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
		/* Footer Styles */
		footer {
			background: rgba(10, 14, 39, 0.95);
			padding: 2rem 0;
			text-align: center;
			border-top: 1px solid rgba(76, 201, 240, 0.1);
		}

		.footer-content {
			display: flex;
			flex-direction: column;
			gap: 1rem;
			align-items: center;
		}

		.footer-main p {
			margin: 0;
			color: rgba(255, 255, 255, 0.7);
			font-size: 0.9rem;
		}

		.footer-links {
			display: flex;
			align-items: center;
			gap: 0.75rem;
			flex-wrap: wrap;
			justify-content: center;
		}

		.footer-label {
			color: rgba(255, 255, 255, 0.5);
			font-size: 0.85rem;
			font-weight: 300;
		}

		.footer-links a {
			color: #4cc9f0;
			text-decoration: none;
			font-size: 0.9rem;
			transition: all 0.3s ease;
			position: relative;
		}

		.footer-links a:hover {
			color: #7209b7;
			text-shadow: 0 0 10px rgba(114, 9, 183, 0.5);
		}

		.footer-links a::after {
			content: '';
			position: absolute;
			bottom: -2px;
			left: 0;
			width: 0;
			height: 1px;
			background: linear-gradient(90deg, #4cc9f0, #7209b7);
			transition: width 0.3s ease;
		}

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

		.footer-links .separator {
			color: rgba(255, 255, 255, 0.3);
			font-size: 0.85rem;
		}

		/* Mobile Responsive */
		@media (max-width: 768px) {
			.footer-content {
				gap: 1.5rem;
			}
			
			.footer-links {
				flex-direction: column;
				gap: 0.5rem;
			}
			
			.footer-links .separator {
				display: none;
			}
		}
        
        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.8rem !important;
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
            }
            
            .stat-number {
                font-size: 2rem !important;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            
            .stat-label {
                font-size: 0.9rem;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-buttons a {
                width: 100%;
                text-align: center;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .video-container {
                margin-top: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.5rem !important;
            }
            
            .stat-number {
                font-size: 1.6rem !important;
            }
            
            .stat-item {
                padding: 1rem 0.5rem;
            }
        }
