        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

        body {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        p, .text-sans {
            font-family: 'Inter', sans-serif;
        }

        .hero-bg {
            position: relative;
            background: #000;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Subtle kamera lens pattern - daha görünür hale getirildi */
            background:
                linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%),
                radial-gradient(circle at 50% 40%, rgba(80, 80, 80, 0.25) 0%, rgba(40, 40, 40, 0.15) 40%, transparent 70%),
                repeating-radial-gradient(circle at 50% 40%, transparent 0, transparent 80px, rgba(60, 60, 60, 0.08) 80px, rgba(60, 60, 60, 0.08) 85px),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="lensGrad"><stop offset="0%" style="stop-color:%23666;stop-opacity:0.3"/><stop offset="50%" style="stop-color:%23444;stop-opacity:0.15"/><stop offset="100%" style="stop-color:%23222;stop-opacity:0.08"/></radialGradient></defs><circle cx="600" cy="320" r="280" fill="url(%23lensGrad)"/><circle cx="600" cy="320" r="180" fill="none" stroke="%23555" stroke-width="2" opacity="0.2"/><circle cx="600" cy="320" r="120" fill="none" stroke="%23666" stroke-width="2" opacity="0.15"/><circle cx="600" cy="320" r="60" fill="rgba(100,100,100,0.1)"/></svg>');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        /* Alternatif: Kendi background image eklemek için */
        .hero-bg.with-image::before {
            background:
                linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%),
                url('images/hero-bg.jpg'); /* Kendi görselinizi buraya ekleyin */
            background-size: cover;
            background-position: center;
            opacity: 1;
        }

        .hero-bg > * {
            position: relative;
            z-index: 1;
        }

        .portfolio-item {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .portfolio-item::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 10%;
            right: 10%;
            height: 20px;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
            filter: blur(8px);
        }

        .scroll-container {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .scroll-container::-webkit-scrollbar {
            display: none;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            opacity: 0;
        }

        .accordion-content.active {
            max-height: 500px;
            transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
            opacity: 1;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: border-color 0.3s ease;
        }

        .faq-item:hover {
            border-bottom-color: rgba(255, 255, 255, 0.2);
        }

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

        .faq-item:hover .faq-question {
            color: #ffffff;
        }

        .btn-hover {
            transition: all 0.3s ease;
        }

        .btn-hover:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
        }

        .testimonial-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .testimonial-slide.active {
            display: block;
            opacity: 1;
        }

        .testimonial-dot {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .testimonial-dot.active {
            background-color: white;
        }

        .testimonial-dot:hover {
            background-color: #d1d5db;
        }

        /* Loader Styles */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0a0a0a;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-wrapper.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Hero Animation */
        .hero-title {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.5s;
        }

        .hero-button {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 1.2s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Prevent animations from running before page load */
        body.loading .hero-title,
        body.loading .hero-button {
            animation: none;
        }

        /* Social Menu Overlay */
        .social-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(10px);
            z-index: 10000;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .social-menu.active {
            right: 0;
        }

        .social-menu-content {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .social-icon {
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }

        .hamburger-line {
            transition: all 0.3s ease;
        }

        .hamburger.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        body.menu-open {
            overflow: hidden;
        }
