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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header - Zarif Çiğköfte benzeri */
        header {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 10px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #E4232A;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
            margin-right: 12px;
            transition: all 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #E4232A;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #E4232A;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .call-button {
            background: #E4232A;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .call-button:hover {
            background: #b71c1c;
            transform: translateY(-2px);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #E4232A;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section - Zarif tarzı */
        .hero {
            background-image: url('https://www.zarifcigkofte.com/img/bg3.jpg');

            height: 100vh;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .hero-content {
            max-width: 600px;
            color: white;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .hero .description {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
        }

        .btn-primary {
            background: #fff;
            color: #E4232A;
            padding: 15px 35px;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 35px;
            border: 2px solid white;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .btn-secondary:hover {
            background: white;
            color: #E4232A;
        }

        /* About Section - Orijinal tasarım */
        .about {
            padding: 100px 0;
            background: #f8f8f8;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            color: #E4232A;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .quality-points {
            list-style: none;
            margin-top: 2rem;
        }

        .quality-points li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .quality-points li i {
            color: #4caf50;
            font-size: 1.3rem;
            margin-right: 1rem;
        }

        .about-image {
            position: relative;
        }

        .image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #E4232A, #ff6b35);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-align: center;
            box-shadow: 0 15px 35px rgba(211, 47, 47, 0.3);
        }

        /* Menu Section - Orijinal stil */
        .menu {
            padding: 100px 0;
            background: white;
        }

        .menu-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .menu-category {
            background: #fff;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #f0f0f0;
        }

        .menu-category:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .menu-category h3 {
            color: #E4232A;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .menu-items {
            list-style: none;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .item-info h4 {
            color: #333;
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .item-info p {
            color: #666;
            font-size: 0.95rem;
        }

        .item-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: #E4232A;
        }

        /* Video Section */
        .video-section {
            padding: 100px 0;
            background: #f8f8f8;
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 500px;
            background: #000;
            border-radius: 20px;
            overflow: hidden;
            margin-top: 3rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            background: linear-gradient(135deg, #333, #555);
            cursor: pointer;
            transition: all 0.3s;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, #444, #666);
        }

        .video-placeholder i {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: #E4232A;
        }

        /* Location Section */
        .location {
            padding: 100px 0;
            background: white;
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .location-info h3 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 2rem;
        }

        .address-box {
            background: #f8f8f8;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
        }

        .address-box h4 {
            color: #E4232A;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .address-box p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .contact-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            border: 2px solid #f0f0f0;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .contact-item:hover {
            border-color: #E4232A;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(228, 35, 42, 0.15);
        }

        .contact-item i {
            font-size: 2rem;
            color: #E4232A;
            margin-bottom: 1rem;
        }

        .contact-item h5 {
            color: #333;
            margin-bottom: 0.5rem;
        }

        .map-container {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .location-button-container {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }

        .location-display {
            margin-bottom: 2rem;
        }

        .location-display i {
            font-size: 3rem;
            color: #E4232A;
            margin-bottom: 1rem;
        }

        .location-display h4 {
            color: #333;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .location-display p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .location-btn {
            background: #E4232A;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(228, 35, 42, 0.3);
        }

        .location-btn:hover {
            background: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(228, 35, 42, 0.4);
        }

        .location-btn i {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-section p {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: #E4232A;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #ff6b35;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: #999;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                padding: 10px 0;
            }

            .header-content {
                position: relative;
            }

            .mobile-menu {
                display: flex;
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
            }

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

            .mobile-menu.active span:nth-child(2) {
                opacity: 0;
            }

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

            .call-button {
                display: block;
                position: absolute;
                top: 50%;
                right: 50px;
                transform: translateY(-50%);
                padding: 8px 15px;
                font-size: 0.8rem;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                padding: 1.5rem;
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                padding: 0.5rem 0;
                text-align: center;
            }

            .logo {
                font-size: 1rem;
                max-width: calc(100% - 150px);
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .logo img {
                height: 35px;
                margin-right: 6px;
            }

            /* Fix viewport scaling issues on mobile */
            html, body {
                max-width: 100vw;
                overflow-x: hidden;
            }

            .hero {
                height: 80vh;
                padding: 0 10px;
            }

            .hero h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .hero .subtitle {
                font-size: 1.2rem;
                margin-bottom: 0.5rem;
            }

            .hero .description {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 12px 25px;
                font-size: 0.9rem;
            }

            .about {
                padding: 60px 0;
            }

            .about-grid,
            .location-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-text h3 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .about-text p {
                font-size: 1rem;
            }

            .menu {
                padding: 60px 0;
            }

            .menu-categories {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .menu-category {
                padding: 1.5rem;
            }

            .menu-category h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .video-section {
                padding: 60px 0;
            }

            .video-wrapper {
                height: 250px;
            }

            .location {
                padding: 60px 0;
            }

            .location-info h3 {
                font-size: 1.8rem;
            }

            .address-box {
                padding: 1.5rem;
            }

            .contact-item {
                padding: 1rem;
            }

            .footer-content {
                gap: 2rem;
            }

            .footer-section h3 {
                font-size: 1.3rem;
            }

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(211, 47, 47, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }

        @keyframes glow {
            0% { box-shadow: 0 0 5px rgba(211, 47, 47, 0.5); }
            50% { box-shadow: 0 0 20px rgba(211, 47, 47, 0.8), 0 0 30px rgba(255, 107, 53, 0.6); }
            100% { box-shadow: 0 0 5px rgba(211, 47, 47, 0.5); }
        }

        @keyframes typewriter {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            from, to { border-color: transparent; }
            50% { border-color: #E4232A; }
        }

        /* Particle Background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: rgba(211, 47, 47, 0.1);
            border-radius: 50%;
            animation: floatParticles 6s infinite linear;
        }

        @keyframes floatParticles {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Enhanced Hero Animations */
        .hero-content {
            animation: slideInLeft 1s ease-out;
        }

        .hero h1 {
            overflow: hidden;
            border-right: 3px solid;
            white-space: nowrap;
            animation: typewriter 3s steps(20) 0.5s forwards, blink 0.5s step-end infinite alternate;
            width: 0;
        }

        .hero .subtitle {
            animation: fadeInUp 0.8s ease-out 1.5s both;
        }

        .hero .description {
            animation: fadeInUp 0.8s ease-out 2s both;
        }

        .hero-buttons {
            animation: fadeInUp 0.8s ease-out 2.5s both;
        }

        /* Animated Buttons */
        .btn-primary {
            position: relative;
            overflow: hidden;
            animation: pulse 2s infinite;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-secondary {
            animation: glow 2s ease-in-out infinite alternate;
        }

        /* Logo Animation */
        .logo {
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo img {
            animation: float 3s ease-in-out infinite;
        }

        /* Navigation Hover Effects */
        nav a {
            position: relative;
            overflow: hidden;
        }

        nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.1), transparent);
            transition: left 0.3s;
        }

        nav a:hover::before {
            left: 100%;
        }

        /* Menu Card Animations */
        .menu-category {
            animation: scaleIn 0.6s ease-out both;
            transition: all 0.3s ease;
        }

        .menu-category:hover {
            animation: float 2s ease-in-out infinite;
        }

        .menu-category:nth-child(1) { animation-delay: 0.1s; }
        .menu-category:nth-child(2) { animation-delay: 0.3s; }
        .menu-category:nth-child(3) { animation-delay: 0.5s; }

        .menu-item {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.05), transparent);
            transition: left 0.4s ease;
        }

        .menu-item:hover::before {
            left: 100%;
        }

        .menu-item:hover {
            transform: translateX(10px) scale(1.02);
            box-shadow: 0 5px 15px rgba(211, 47, 47, 0.2);
        }

        .item-price {
            transition: all 0.3s ease;
        }

        .menu-item:hover .item-price {
            transform: scale(1.1);
            color: #ff6b35;
        }

        /* About Section Animations */
        .quality-points li {
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.6s ease-out both;
        }

        .quality-points li:nth-child(1) { animation-delay: 0.2s; }
        .quality-points li:nth-child(2) { animation-delay: 0.4s; }
        .quality-points li:nth-child(3) { animation-delay: 0.6s; }
        .quality-points li:nth-child(4) { animation-delay: 0.8s; }

        .quality-points li i {
            animation: pulse 2s infinite;
        }

        .image-placeholder {
            animation: float 4s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .image-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Contact Items Animation */
        .contact-item {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 30px rgba(211, 47, 47, 0.2);
            animation: glow 1s ease-in-out;
        }

        .contact-item i {
            animation: bounce 2s infinite;
            transition: all 0.3s ease;
        }

        .contact-item:hover i {
            animation: shake 0.5s ease-in-out;
            transform: scale(1.2);
        }

        /* Video Section Animation */
        .video-placeholder {
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            transform: scale(1.02);
            animation: glow 1s ease-in-out infinite;
        }

        .video-placeholder i {
            animation: pulse 2s ease-in-out infinite;
        }

        .video-placeholder:hover i {
            animation: bounce 0.5s ease-in-out;
            color: #ff6b35;
        }

        /* Social Media Icons Animation */
        .social-links a {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transform: scale(0);
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .social-links a:hover::before {
            transform: scale(1);
        }

        .social-links a:hover {
            animation: bounce 0.6s ease-in-out;
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #E4232A, #ff6b35);
            z-index: 1001;
            transition: width 0.3s ease;
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .loading-overlay.hide {
            opacity: 0;
            pointer-events: none;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #E4232A;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Enhanced Scroll Animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .scroll-animate.active {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            transform: translateX(-100px);
        }

        .slide-left.active {
            transform: translateX(0);
        }

        .slide-right {
            transform: translateX(100px);
        }

        .slide-right.active {
            transform: translateX(0);
        }

        .scale-in {
            transform: scale(0.8);
        }

        .scale-in.active {
            transform: scale(1);
        }

        /* Responsive Animation Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                animation: fadeInUp 1s ease-out both;
                width: auto;
                border: none;
            }
            
            .particles {
                display: none;
            }
            
            .menu-category:hover {
                animation: none;
            }
            
            .image-placeholder {
                animation: none;
            }
        }
