        :root {
            /* AuroraNova Brand Colors */
            --primary-dark: #2B3E62;
            --primary-purple: #7B5A99;
            --primary-gold: #C19E6A;
            --primary-sage: #83AD99;
            --secondary-blue: #97B3E8;
            --secondary-lavender: #E1D5F3;
            --secondary-peach: #FFD391;
            --secondary-mint: #9ADBBC;
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #B0B0B0;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            margin: 0;
            padding: 0;
            position: relative;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            background: #000;
            color: var(--text-primary);
        }

        /* Performance Optimizations */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            object-fit: cover;
            filter: brightness(0.7) contrast(1.1);
            will-change: auto;
        }

        /* Glassmorphism Navigation */
        /* Unified Collapsible Navigation */
        .nav {
            position: fixed;
            top: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
            z-index: 1000;
            opacity: 0;
            animation: fadeInSlide 1s ease-out 1.5s forwards;
            pointer-events: none;
        }
        
        .nav > * {
            pointer-events: all;
        }

        /* Nav top row: hamburger + lang + auth side by side */
        .nav-top {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Language switcher inside nav-top */
        .nav-top-lang {
            display: flex;
            gap: 4px;
            align-items: center;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            padding: 0 6px;
            height: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-top-auth {
            display: flex;
            align-items: center;
        }

        /* Login button — pill shape matching hamburger glass style */
        .nav-top-login {
            display: flex;
            align-items: center;
            gap: 6px;
            height: 50px;
            padding: 0 18px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            color: var(--text-secondary);
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            -webkit-tap-highlight-color: transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.01em;
        }

        .nav-top-login:hover {
            background: rgba(43, 62, 98, 0.5);
            border-color: rgba(151, 179, 232, 0.35);
            color: #fff;
            transform: scale(1.03);
        }

        .nav-top-login svg {
            opacity: 0.7;
            flex-shrink: 0;
            transition: opacity 0.2s;
        }

        .nav-top-login:hover svg { opacity: 1; }

        /* Profile button — avatar pill */
        .nav-top-profile {
            display: none;
            align-items: center;
            gap: 8px;
            height: 50px;
            padding: 0 14px 0 8px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            color: var(--text-secondary);
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            -webkit-tap-highlight-color: transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            max-width: 160px;
        }

        .nav-top-profile:hover {
            background: rgba(43, 62, 98, 0.5);
            border-color: rgba(151, 179, 232, 0.35);
            color: #fff;
            transform: scale(1.03);
        }

        .nav-top-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            border: 1.5px solid rgba(151, 179, 232, 0.45);
            flex-shrink: 0;
        }

        #navTopUserName {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 100px;
        }

        .nav-hamburger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 50px;
            height: 50px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            -webkit-tap-highlight-color: transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-hamburger:hover {
            transform: scale(1.05);
            background: rgba(43, 62, 98, 0.4);
        }

        .nav-hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .nav-links {
            display: none;
            flex-direction: column;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 16px;
            gap: 4px;
            width: 260px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            animation: fadeInSlide 0.3s ease-out forwards;
        }

        .nav-links.open { display: flex; }

        .nav-links > a,
        .nav-links .services-dropdown {
            width: 100%;
        }

        .nav-links > a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 12px 20px;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
        }

        .nav-links > a:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--secondary-blue);
            transform: translateX(5px);
        }

        /* Hero Section */
        .hero {
            height: 100dvh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(43, 62, 98, 0.2));
        }

        .hero-content {
            max-width: 900px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--text-primary), var(--secondary-blue), var(--primary-purple));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            opacity: 0;
            animation: fadeInUp 1.5s ease-out 0.5s forwards;
        }

        .hero .subtitle {
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-weight: 400;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1.5s ease-out 1s forwards;
        }

        .hero .tagline {
            font-size: clamp(1rem, 2vw, 1.3rem);
            font-weight: 300;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 600px;
            opacity: 0;
            animation: fadeInUp 1.5s ease-out 1.5s forwards;
        }

        /* Service Stars */
        .constellation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .service-star {
            position: absolute;
            width: 48px;
            height: 48px;
            cursor: pointer;
            pointer-events: all;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 0 20px rgba(151, 179, 232, 0.6));
            border: 1px solid rgba(255, 215, 0, 0.7);
            border-radius: 50%;
            background: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .service-star::before {
            content: '✦';
            font-size: 32px;
            color: var(--secondary-blue);
            animation: starPulse 3s ease-in-out infinite;
        }

        .service-star.visible {
            opacity: 1;
            animation: starAppear 1s ease-out forwards;
        }

        .service-star:hover {
            transform: scale(1.15) rotate(15deg);
            filter: drop-shadow(0 0 30px rgba(151, 179, 232, 1));
            border-color: #FFF;
        }

        /* Star positions */
        .star-1 { top: 20%; left: 15%; animation-delay: 2s; }
        .star-2 { top: 35%; right: 20%; animation-delay: 2.3s; }
        .star-3 { top: 60%; left: 20%; animation-delay: 2.6s; }
        .star-4 { top: 45%; right: 15%; animation-delay: 2.9s; }
        .star-5 { top: 75%; left: 60%; animation-delay: 3.2s; }

        /* Service Info Popups */
        .service-info {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            color: var(--text-primary);
            padding: 20px;
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            min-width: 280px;
            max-width: 320px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .service-info.show {
            opacity: 1;
            pointer-events: all;
            transform: translateY(-10px);
        }

        .service-info h3 {
            color: var(--secondary-blue);
            margin-bottom: 12px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .service-info p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: var(--text-secondary);
        }

        /* Section Design */
        .section {
            min-height: 100dvh;
            padding: 120px 20px;
            position: relative;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(43, 62, 98, 0.1));
            backdrop-filter: blur(10px);
        }

        .section-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .section h2 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-purple), var(--secondary-blue));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .section.visible h2 {
            opacity: 1;
            transform: translateY(0);
        }

        .section .section-content > p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--text-secondary);
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
        }

        .section.visible .section-content > p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Photo Gallery - Original Design with Varied Sizes */
        .photo-gallery {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
            align-items: center;
        }

        .photo-card {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease-out, box-shadow 0.3s ease;
            opacity: 0;
            cursor: pointer;
            will-change: transform, opacity;
            backface-visibility: hidden;
            -webkit-font-smoothing: subpixel-antialiased;
        }

        /* Original directional animations with varied sizes */
        .photo-card:nth-child(1) {
            width: 280px;
            height: 220px;
            transform: translateX(-150px);
            transition-delay: 0.1s;
        }

        .photo-card:nth-child(2) {
            width: 350px;
            height: 180px;
            transform: translateY(100px);
            transition-delay: 0.3s;
        }

        .photo-card:nth-child(3) {
            width: 240px;
            height: 260px;
            transform: translateX(150px);
            transition-delay: 0.5s;
        }

        /* Different sizes for each section */
        #story .photo-card:nth-child(1) { width: 300px; height: 200px; }
        #story .photo-card:nth-child(2) { width: 280px; height: 240px; }
        #story .photo-card:nth-child(3) { width: 320px; height: 180px; }

        #method .photo-card:nth-child(1) { width: 260px; height: 280px; }
        #method .photo-card:nth-child(2) { width: 340px; height: 200px; }
        #method .photo-card:nth-child(3) { width: 290px; height: 220px; }

        #work .photo-card:nth-child(1) { width: 310px; height: 190px; }
        #work .photo-card:nth-child(2) { width: 270px; height: 250px; }
        #work .photo-card:nth-child(3) { width: 330px; height: 210px; }

        #contact .photo-card:nth-child(1) { width: 290px; height: 230px; }
        #contact .photo-card:nth-child(2) { width: 320px; height: 200px; }
        #contact .photo-card:nth-child(3) { width: 260px; height: 270px; }

        .section.visible .photo-card {
            opacity: 1;
            transform: translate(0, 0);
        }

        .photo-card:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
        }

        .photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .photo-card:hover img {
            transform: scale(1.1);
        }

        .photo-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(135, 206, 235, 0.2), rgba(0, 0, 0, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .photo-card:hover::after {
            opacity: 1;
        }

        .photo-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .photo-card:hover .photo-overlay {
            transform: translateY(0);
        }

        .photo-overlay h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: #87ceeb;
        }

        .photo-overlay p {
            font-size: 0.8rem;
            margin: 0;
            color: #e0e0e0;
        }

        @media (hover: none) {
            .photo-overlay {
                transform: translateY(0);
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            }
            .photo-card::after {
                opacity: 1;
            }
        }

        /* Blog Section - Enhanced with Photo Gallery Style */
        .blog-section {
            background: linear-gradient(135deg, rgba(43, 62, 98, 0.1), rgba(0, 0, 0, 0.9));
            min-height: 100dvh;
            padding: 120px 20px;
        }

        .blog-grid {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
            align-items: flex-start;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .blog-card {
            width: 320px;
            min-height: 280px;
            flex: 1 1 300px;
            max-width: 400px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 25px;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
            opacity: 0;
            cursor: pointer;
            will-change: transform, opacity;
            backface-visibility: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        /* Directional animations with varied sizes for blog cards */
        .blog-card:nth-child(1) {
            transform: translateX(-300px) rotate(-2deg);
            transition-delay: 0.6s;
        }

        .blog-card:nth-child(2) {
            transform: translateY(150px) rotate(1deg);
            transition-delay: 1s;
        }

        .blog-card:nth-child(3) {
            transform: translateX(300px) rotate(-1deg);
            transition-delay: 1.4s;
        }

        .blog-card:nth-child(4) {
            transform: translateY(-150px) rotate(2deg);
            transition-delay: 1.8s;
        }

        .blog-card:nth-child(5) {
            transform: translateX(-300px) rotate(-2deg);
            transition-delay: 0.4s;
        }

        .blog-card:nth-child(6) {
            transform: translateY(150px) rotate(1deg);
            transition-delay: 0.7s;
        }

        .blog-card:nth-child(7) {
            transform: translateX(300px) rotate(-1deg);
            transition-delay: 1s;
        }

        .blog-card:nth-child(8) {
            transform: translateY(-150px) rotate(2deg);
            transition-delay: 1.3s;
        }

        .blog-card:nth-child(9) {
            transform: translateX(-300px) rotate(-2deg);
            transition-delay: 0.4s;
        }

        .blog-card:nth-child(10) {
            transform: translateY(150px) rotate(1deg);
            transition-delay: 0.7s;
        }

        .blog-card:nth-child(11) {
            transform: translateX(300px) rotate(-1deg);
            transition-delay: 1s;
        }

        .blog-card:nth-child(12) {
            transform: translateY(-150px) rotate(2deg);
            transition-delay: 1.3s;
        }

        .blog-card:nth-child(13) {
            transform: translateX(-300px) rotate(-2deg);
            transition-delay: 0.4s;
        }

        .blog-card:nth-child(14) {
            transform: translateY(150px) rotate(1deg);
            transition-delay: 0.7s;
        }

        .blog-card:nth-child(15) {
            transform: translateX(300px) rotate(-1deg);
            transition-delay: 1s;
        }

        .blog-card:nth-child(16) {
            transform: translateY(-150px) rotate(2deg);
            transition-delay: 1.3s;
        }

        .blog-section.visible .blog-card {
            width: 320px;
            min-height: 280px;
            flex: 1 1 300px;
            max-width: 400px;
            opacity: 1;
            transform: translate(0, 0) rotate(0deg);
        }

        .blog-card:hover {
            transform: scale(1.05) translateY(-15px) rotate(0deg);
            box-shadow: 0 25px 50px rgba(123, 90, 153, 0.3);
            z-index: 10;
        }

        .blog-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(151, 179, 232, 0.1), rgba(123, 90, 153, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .blog-card:hover::after {
            opacity: 1;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .blog-category {
            background: linear-gradient(45deg, var(--primary-purple), var(--secondary-blue));
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .blog-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .read-more {
            color: var(--secondary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .read-more:hover {
            color: var(--primary-purple);
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInSlide {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes starPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        @keyframes starAppear {
            0% {
                opacity: 0;
                transform: scale(0) rotate(180deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        /* ============================================
           TABLET (max 1024px)
        ============================================ */
        @media (max-width: 1024px) {
            .nav {
                top: 12px;
                right: 12px;
                padding: 10px 16px;
                gap: 4px;
                flex-wrap: wrap;
                max-width: calc(100vw - 24px);
                border-radius: 20px;
            }

            .nav a,
            .services-btn {
                padding: 6px 12px;
                font-size: 0.85rem;
            }

            .lang-btn {
                font-size: 0.75rem;
                padding: 4px 9px;
            }

            .photo-gallery {
                gap: 20px;
            }

            .blog-grid {
                gap: 20px;
            }

            .blog-card:nth-child(1),
            .blog-card:nth-child(5),
            .blog-card:nth-child(9),
            .blog-card:nth-child(13) { width: 280px; }

            .blog-card:nth-child(2),
            .blog-card:nth-child(6),
            .blog-card:nth-child(10),
            .blog-card:nth-child(14) { width: 320px; }

            .blog-card:nth-child(3),
            .blog-card:nth-child(7),
            .blog-card:nth-child(11),
            .blog-card:nth-child(15) { width: 260px; }

            .blog-card:nth-child(4),
            .blog-card:nth-child(8),
            .blog-card:nth-child(12),
            .blog-card:nth-child(16) { width: 300px; }
        }

        /* Base navigation moved above */

        /* ============================================
           MOBILE (max 768px)
        ============================================ */
        @media (max-width: 768px) {
            /* Video background enabled on mobile */

            .hero {
                background: transparent;
                min-height: 100vh;
                min-height: -webkit-fill-available;
            }

            /* Hero içeriği: nav yüksekliği kadar aşağı iter */
            .hero-content {
                margin-top: 70px;
            }

            /* Nav: hamburger düzeni */
            .nav {
                top: 10px;
                right: 10px;
                left: 10px;
                border-radius: 16px;
                padding: 6px 12px 6px 16px;
                gap: 0;
                flex-wrap: nowrap;
                justify-content: space-between;
                align-items: center;
            }

            /* Hamburger butonu göster */
            .nav-hamburger {
                display: flex;
            }

            /* Link grubu: kapalıyken gizli */
            .nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 8px);
                left: 0;
                right: 0;
                background: rgba(10, 10, 20, 0.97);
                backdrop-filter: blur(20px);
                border: 1px solid var(--glass-border);
                border-radius: 16px;
                padding: 12px;
                flex-direction: column;
                gap: 4px;
                z-index: 999;
            }

            /* Açık hâlde göster */
            .nav-links.open {
                display: flex;
            }

            /* Nav linkleri: tam genişlik, yeterli touch target */
            .nav-links > a,
            .nav-links .services-dropdown {
                width: 100%;
            }

            .nav-links > a {
                display: block;
                padding: 12px 16px;
                font-size: 0.95rem;
                border-radius: 10px;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .nav-links .services-btn {
                width: 100%;
                text-align: left;
                padding: 12px 16px;
                font-size: 0.95rem;
                border-radius: 10px;
                min-height: 44px;
            }

            .nav-top-lang .lang-btn {
                font-size: 0.8rem;
                padding: 6px 11px;
                min-height: unset;
                min-width: unset;
            }

            /* Services dropdown: mobilde tam genişlik */
            .services-dropdown:hover .services-menu {
                display: none;
            }

            .services-dropdown.open .services-menu {
                display: flex;
                flex-direction: column;
            }

            .services-menu {
                position: static !important;
                transform: none !important;
                min-width: unset !important;
                width: 100% !important;
                margin-top: 4px !important;
                border-radius: 10px !important;
                box-shadow: none !important;
                border-top: 1px solid var(--glass-border) !important;
                background: transparent !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                padding: 4px 0 !important;
            }

            .services-menu a {
                padding: 10px 16px;
                font-size: 0.9rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            /* Sections */
            .section-content {
                padding: 0 16px;
            }

            .section {
                padding: 80px 16px;
            }

            .section-content h2 {
                font-size: 1.8rem;
            }

            .section-content > p {
                font-size: 0.95rem;
            }

            /* Photo gallery */
            .photo-gallery {
                flex-direction: column;
                align-items: center;
                gap: 16px;
                margin-top: 24px;
            }

            .photo-card:nth-child(1),
            .photo-card:nth-child(2),
            .photo-card:nth-child(3) {
                width: 100% !important;
                height: auto !important;
                aspect-ratio: 16/9;
                margin: 0;
                transform: translateY(60px) !important;
                transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
                transition-delay: 0.3s;
            }

            .photo-card:nth-child(2) { transition-delay: 0.5s; }
            .photo-card:nth-child(3) { transition-delay: 0.7s; }

            .section.visible .photo-card {
                transform: translateY(0) !important;
            }

            /* Photo overlay: mobilde her zaman görünür */
            .photo-overlay {
                transform: translateY(0);
                background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.75));
            }

            /* Blog grid */
            .blog-grid {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }

            .blog-card,
            .blog-card:nth-child(1),
            .blog-card:nth-child(2),
            .blog-card:nth-child(3),
            .blog-card:nth-child(4),
            .blog-card:nth-child(5),
            .blog-card:nth-child(6),
            .blog-card:nth-child(7),
            .blog-card:nth-child(8),
            .blog-card:nth-child(9),
            .blog-card:nth-child(10),
            .blog-card:nth-child(11),
            .blog-card:nth-child(12),
            .blog-card:nth-child(13),
            .blog-card:nth-child(14),
            .blog-card:nth-child(15),
            .blog-card:nth-child(16) {
                width: 100% !important;
                min-height: unset !important;
                transform: translateY(60px) rotate(0deg) !important;
                transition-delay: 0.1s !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background: rgba(15, 20, 35, 0.95) !important;
            }

            .blog-section.visible .blog-card {
                transform: translateY(0) rotate(0deg) !important;
                opacity: 1 !important;
            }

            /* Blog card p: section-content > p animasyonunu ezme */
            .blog-card p {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
                margin-bottom: 15px;
            }

            /* Service stars: daha büyük touch target */
            .service-star {
                width: 44px;
                height: 44px;
            }

            /* Service stars touch desteği */
            .service-star.touch-active {
                transform: scale(1.5);
                filter: drop-shadow(0 0 30px rgba(151, 179, 232, 1));
            }

            .service-info {
                position: fixed;
                left: 50% !important;
                top: 50% !important;
                transform: translate(-50%, -50%) !important;
                min-width: 260px;
                max-width: 85vw;
                padding: 20px;
                font-size: 0.95rem;
                z-index: 2000;
            }

            .service-info.show {
                transform: translate(-50%, -50%) !important;
            }

            /* Modal içerikleri: mobilde padding azalt */
            .mobile-modal-inner {
                padding: 20px !important;
            }
        }

        /* ============================================
           KÜÇÜK TELEFON (max 480px)
        ============================================ */
        @media (max-width: 480px) {
            .hero-content {
                margin-top: 80px;
            }

            .hero h1 {
                font-size: clamp(2.2rem, 10vw, 3.5rem);
            }

            .photo-card:nth-child(1),
            .photo-card:nth-child(2),
            .photo-card:nth-child(3) {
                width: 95vw !important;
                height: auto !important;
                aspect-ratio: 16/9;
            }

            .blog-card,
            .blog-card:nth-child(1),
            .blog-card:nth-child(2),
            .blog-card:nth-child(3),
            .blog-card:nth-child(4),
            .blog-card:nth-child(5),
            .blog-card:nth-child(6),
            .blog-card:nth-child(7),
            .blog-card:nth-child(8),
            .blog-card:nth-child(9),
            .blog-card:nth-child(10),
            .blog-card:nth-child(11),
            .blog-card:nth-child(12),
            .blog-card:nth-child(13),
            .blog-card:nth-child(14),
            .blog-card:nth-child(15),
            .blog-card:nth-child(16) {
                width: 95vw !important;
            }

            .blog-card h3 {
                font-size: 1.1rem;
            }

            .section {
                padding: 70px 12px;
            }
        }

        @keyframes auroraGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            animation: fadeInUp 1s ease-out 3s forwards;
        }

        .scroll-indicator::before {
            content: '';
            width: 2px;
            height: 30px;
            background: linear-gradient(to bottom, var(--secondary-blue), transparent);
            display: block;
            margin: 0 auto 10px;
            animation: scrollFlow 2s ease-in-out infinite;
        }

        .scroll-indicator span {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
            display: block;
        }

        @keyframes scrollFlow {
            0% { opacity: 0; }
            50% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* Language Switcher */
        .services-dropdown {
            position: relative;
            display: flex;
            align-items: center;
        }

        .services-btn {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            background: transparent;
            border: none;
            cursor: pointer;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .services-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary-purple), var(--secondary-blue));
            transition: left 0.3s ease;
            z-index: -1;
        }

        .services-dropdown:hover .services-btn::before,
        .services-btn:hover::before {
            left: 0;
        }

        .services-dropdown:hover .services-btn,
        .services-btn:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(123, 90, 153, 0.3);
        }

        .services-menu {
            display: none;
            position: absolute;
            top: 0;
            right: 100%;
            margin-right: 8px; /* Offset to the left */
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 8px;
            min-width: 210px;
            z-index: 1000;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        /* Hover bridge to prevent menu from closing when moving mouse between button and menu */
        .services-menu::after {
            content: '';
            position: absolute;
            top: 0;
            right: -15px;
            width: 15px;
            height: 100%;
        }

        .services-dropdown.open .services-menu,
        .services-dropdown:hover .services-menu,
        .services-dropdown:focus-within .services-menu {
            display: flex;
            flex-direction: column;
        }

        .services-menu a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .services-menu a::before {
            content: '';
            border-radius: inherit;
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary-purple), var(--secondary-blue));
            transition: left 0.3s ease;
            z-index: -1;
        }

        .services-menu a:hover::before {
            left: 0;
        }

        .services-menu a:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(123, 90, 153, 0.3);
        }

        .lang-switcher {
            display: flex;
            gap: 4px;
            margin-left: 8px;
            padding-left: 12px;
            border-left: 1px solid var(--glass-border);
        }

        /* lang-switcher inside nav-top: no separator, fits the pill container */
        .nav-top-lang.lang-switcher,
        .nav-top-lang {
            margin-left: 0;
            padding-left: 0;
            border-left: none;
        }

        .lang-btn {
            background: transparent;
            border: 1px solid var(--glass-border);
            color: var(--text-muted);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            letter-spacing: 0.05em;
        }

        .lang-btn:hover {
            color: var(--text-primary);
            border-color: var(--secondary-blue);
        }

        .lang-btn--active {
            background: linear-gradient(90deg, var(--primary-purple), var(--secondary-blue));
            border: none;
            padding: 6px 11px;
            color: white;
            box-shadow: 0 0 10px rgba(123, 90, 153, 0.4);
        }

        /* lang-switcher mobile overrides artık ana @media (max-width: 768px) bloğunda */

        /* ================================================================= */
        /* TRUST BAR                                                          */
        /* ================================================================= */
        .trust-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0;
            margin: 32px auto 0;
            padding: 16px 24px;
            max-width: 780px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .trust-bar-item {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 4px 18px;
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .trust-bar-icon {
            font-size: 0.9rem;
            opacity: 0.75;
        }

        .trust-bar-divider {
            width: 1px;
            height: 18px;
            background: var(--glass-border);
            flex-shrink: 0;
        }

        @media (max-width: 640px) {
            .trust-bar {
                border-radius: 20px;
                padding: 12px 16px;
                gap: 0;
            }
            .trust-bar-item {
                font-size: 0.72rem;
                padding: 4px 10px;
            }
            .trust-bar-divider {
                display: none;
            }
        }

        /* ================================================================= */
        /* FOOTER                                                             */
        /* ================================================================= */
        .site-footer {
            position: relative;
            z-index: 10;
            padding: 64px 40px 32px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid var(--glass-border);
        }

        .footer-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
        }

        .footer-brand-name {
            font-size: 1.4rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.05em;
            margin-bottom: 10px;
        }

        .footer-tagline {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 260px;
        }

        .footer-trust-badges {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .footer-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .footer-badge-icon {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        .footer-col-title {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--primary-gold);
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 0.83rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--text-primary);
        }

        .footer-bottom {
            max-width: 1100px;
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-copyright {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .footer-social {
            display: flex;
            gap: 14px;
        }

        .footer-social a {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-social a:hover {
            color: var(--primary-gold);
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 48px 24px 28px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-tagline {
                max-width: 100%;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
