        /* Temel Stiller */
        :root {
            --primary: #0a0a0a;
            --secondary: #1a1a1a;
            --accent: #ff6b35;
            --accent-light: #ff8e53;
            --accent-dark: #e55a2b;
            --text: #ffffff;
            --text-secondary: #b0b0b0;
            --card-bg: rgba(26, 26, 26, 0.8);
            --glass-bg: rgba(255, 107, 53, 0.1);
            --glass-border: rgba(255, 107, 53, 0.3);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            --shadow-hover: 0 25px 50px rgba(255, 107, 53, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
        }

        /* Özel Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
            border-radius: 4px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.4s ease;
            padding: 1rem 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            letter-spacing: -0.5px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            z-index: 1;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }

        .logo:hover::before {
            left: 100%;
        }

        .logo span {
            color: var(--accent);
            transition: all 0.4s ease;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.5rem 0;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--accent);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.3rem;
            color: var(--accent);
            background: none;
            border: none;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            transform: rotate(90deg);
        }

        /* Hero Bölümü */
        .contact-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
            background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            width: 100%;
            position: relative;
        }

        .hero-badge {
            display: inline-block;
            background: var(--glass-bg);
            color: var(--accent);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            text-transform: uppercase;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 0.5s forwards;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
            transition: left 0.7s ease;
        }

        .hero-badge:hover::before {
            left: 100%;
        }

        .hero-badge:hover {
            background: var(--accent);
            color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -1px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 0.8s forwards;
        }

        .hero-title span {
            color: var(--accent);
            display: block;
            position: relative;
            overflow: hidden;
            background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 3s infinite linear;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 1.1s forwards;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* İletişim Bölümü */
        .contact-section {
            padding: 8rem 5%;
            background: var(--primary);
            position: relative;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-badge {
            display: inline-block;
            background: var(--glass-bg);
            color: var(--accent);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            border: 1px solid var(--glass-border);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--accent);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.4s;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            margin-bottom: 6rem;
        }

        /* İletişim Formu */
        .contact-form {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--text);
            font-weight: 500;
            font-size: 1rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            color: var(--text);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-textarea {
            min-height: 180px;
            resize: vertical;
        }

        .form-button {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--primary);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .form-button:hover {
            background: linear-gradient(135deg, var(--accent-light), var(--accent));
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .form-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none !important;
        }

        /* İletişim Bilgileri */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .info-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        .info-icon {
            width: 70px;
            height: 70px;
            background: var(--glass-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--accent);
            border: 1px solid var(--glass-border);
            flex-shrink: 0;
        }

        .info-content {
            flex-grow: 1;
        }

        .info-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--accent);
        }

        .info-text {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .info-link {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: 0.5rem;
        }

        .info-link:hover {
            color: var(--accent-light);
            text-decoration: underline;
        }

        /* Harita Bölümü */
        .map-section {
            padding: 6rem 5%;
            background: var(--secondary);
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .map-wrapper {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            height: 500px;
            position: relative;
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), transparent);
            pointer-events: none;
            z-index: 1;
            border-radius: 20px;
        }

        .map-iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 20px;
            filter: grayscale(20%) contrast(110%) brightness(90%);
            transition: filter 0.3s ease;
        }

        .map-iframe:hover {
            filter: grayscale(0%) contrast(100%) brightness(100%);
        }

        .map-info {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: var(--card-bg);
            padding: 1.5rem 2rem;
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            z-index: 2;
            max-width: 300px;
        }

        .map-location {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .map-location i {
            color: var(--accent);
            font-size: 1.5rem;
        }

        .map-location h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            color: var(--accent);
        }

        .map-address {
            color: var(--text-secondary);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* Başarı Mesajı */
        .success-message {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            z-index: 3000;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: var(--shadow-hover);
        }

        .success-message.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translate(-50%, -60%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: var(--primary);
        }

        .success-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .success-text {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .success-close {
            background: var(--glass-bg);
            color: var(--accent);
            border: 1px solid var(--glass-border);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .success-close:hover {
            background: var(--accent);
            color: var(--primary);
            border-color: var(--accent);
        }

        /* Overlay */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .overlay.active {
            display: block;
        }

        /* Footer */
        footer {
            background: var(--primary);
            padding: 6rem 5% 3rem;
            border-top: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-tagline {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--card-bg);
            color: var(--accent);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid var(--glass-border);
            font-size: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
            border-color: var(--accent);
        }

        .footer-divider {
            height: 1px;
            background: var(--glass-border);
            margin: 3rem 0;
            width: 100%;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Scroll Animasyonları */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 4rem;
            }
            
            .section-title {
                font-size: 3rem;
            }
            
            .contact-grid {
                gap: 3rem;
            }
            
            .map-wrapper {
                height: 450px;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .contact-form, .info-card {
                padding: 2rem;
            }
            
            .map-wrapper {
                height: 400px;
            }
            
            .map-info {
                bottom: 20px;
                left: 20px;
                right: 20px;
                max-width: none;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                flex-direction: column;
                background: var(--primary);
                width: 80%;
                height: 100vh;
                padding: 8rem 2rem 2rem;
                transition: 0.5s ease;
                border-left: 1px solid var(--glass-border);
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .info-card {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }
            
            .info-icon {
                margin: 0 auto;
            }
            
            .map-wrapper {
                height: 350px;
            }
            
            .map-info {
                padding: 1rem 1.5rem;
            }
            
            .social-links {
                gap: 1rem;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-logo {
                font-size: 2.5rem;
            }
            
            .success-message {
                padding: 2rem;
            }
            
            .success-title {
                font-size: 1.5rem;
            }
            
            .map-wrapper {
                height: 300px;
            }
            
            .map-info {
                padding: 1rem;
                bottom: 15px;
                left: 15px;
                right: 15px;
            }
        }