   /* ========================================== */
        /* ADVANCED ANIMATIONS */
        /* ========================================== */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(3deg); }
        }

        @keyframes slideShow {
            0% { opacity: 0; transform: scale(1.1); }
            10% { opacity: 1; transform: scale(1); }
            33% { opacity: 1; transform: scale(1.05); }
            40% { opacity: 0; transform: scale(1.1); }
            100% { opacity: 0; transform: scale(1.1); }
        }

        @keyframes kenburns {
            0% { transform: scale(1) translate(0, 0); }
            50% { transform: scale(1.15) translate(-20px, -10px); }
            100% { transform: scale(1) translate(0, 0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        @keyframes slideInDown {
            from { opacity: 0; transform: translateY(-100px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes blob {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(20px, -50px) scale(1.1); }
            50% { transform: translate(-20px, 20px) scale(0.9); }
            75% { transform: translate(50px, 50px) scale(1.05); }
        }

        /* ========================================== */
        /* PRELOADER */
        /* ========================================== */
        .loader {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #9b7ba5;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
        }

        .preloader-hidden {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        /* ========================================== */
        /* ENHANCED NAVBAR */
        /* ========================================== */
        #navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(155, 123, 165, 0.1);
        }

        .navbar-scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            position: relative;
            color: #1f2937;
            font-weight: 600;
            padding: 0.5rem 0;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(to right, #9b7ba5, #4a9b9b);
            border-radius: 2px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link:hover {
            color: #9b7ba5;
        }

        /* Glass morphism button */
        .glass-button {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .glass-button:hover {
            background: rgba(155, 123, 165, 0.2);
            border-color: rgba(155, 123, 165, 0.3);
            transform: translateY(-2px);
        }

        /* ========================================== */
        /* DROPDOWN - Enhanced */
        /* ========================================== */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 0;
            padding-top: 20px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        opacity 0.3s ease,
                        visibility 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            max-height: 700px;
            opacity: 1;
            visibility: visible;
        }

        .dropdown-inner {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(155, 123, 165, 0.1);
            padding: 40px;
        }

        .dropdown-link {
            position: relative;
            overflow: hidden;
        }

        .dropdown-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(to bottom, #9b7ba5, #4a9b9b);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .dropdown-link:hover::before {
            transform: scaleY(1);
        }

        /* ========================================== */
        /* MOBILE MENU - Enhanced */
        /* ========================================== */
        .mobile-menu {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 230, 211, 0.95));
            backdrop-filter: blur(20px);
            border-radius: 0 0 30px 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active {
            max-height: 600px;
        }

        .mobile-menu-enter {
            animation: slideInDown 0.3s ease-out;
        }

        /* ========================================== */
        /* HERO SECTION */
        /* ========================================== */
        .hero-slideshow {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            background-size: cover;
            background-position: center;
            animation: slideShow 20s infinite;
        }

        .hero-slide-img:nth-child(1) { animation-delay: 0s; }
        .hero-slide-img:nth-child(2) { animation-delay: 5s; }
        .hero-slide-img:nth-child(3) { animation-delay: 10s; }
        .hero-slide-img:nth-child(4) { animation-delay: 15s; }

        /* Floating Images */
        .floating-image {
            position: absolute;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
            animation: float 6s ease-in-out infinite;
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .floating-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: kenburns 20s ease-in-out infinite alternate;
        }

        .floating-image-1 {
            width: 280px;
            height: 380px;
            top: 15%;
            left: 8%;
            animation-delay: 0s;
            z-index: 5;
        }

        .floating-image-2 {
            width: 240px;
            height: 320px;
            top: 40%;
            right: 10%;
            animation-delay: 1s;
            z-index: 4;
        }

        .floating-image-3 {
            width: 200px;
            height: 260px;
            bottom: 20%;
            left: 15%;
            animation-delay: 2s;
            z-index: 3;
        }

        .floating-image-4 {
            width: 180px;
            height: 220px;
            top: 25%;
            right: 25%;
            animation-delay: 1.5s;
            z-index: 2;
        }

        /* Gradient Blob Animation */
        .gradient-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.5;
            animation: blob 20s infinite;
        }

        /* ========================================== */
        /* GENERAL EFFECTS */
        /* ========================================== */
        .zoom-hover {
            overflow: hidden;
            position: relative;
        }

        .zoom-hover img {
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .zoom-hover:hover img {
            transform: scale(1.15);
        }

        .scroll-hidden {
            opacity: 0;
            transform: translateY(60px);
        }

        .scroll-visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .scroll-top {
            opacity: 0;
            visibility: hidden;
            transform: scale(0);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .card-3d {
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
        }

        .card-3d:hover {
            transform: translateY(-12px) rotateX(2deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .insta-grid img {
            filter: brightness(1);
            transition: all 0.4s ease;
        }

        .insta-grid img:hover {
            filter: brightness(1.1);
            transform: scale(1.05);
        }

        .newsletter-input:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(155, 123, 165, 0.2);
        }

        .footer-img-grid img {
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .footer-img-grid img:hover {
            opacity: 1;
            transform: scale(1.1);
            z-index: 10;
        }

        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(to right, #9b7ba5, #4a9b9b);
            z-index: 9999;
            transition: width 0.1s ease;
        }

        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #9b7ba5, #4a9b9b);
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to bottom, #8a6a94, #397878);
        }

        .gradient-text {
            background: linear-gradient(135deg, #9b7ba5, #4a9b9b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content > * {
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .hero-content > *:nth-child(1) { animation-delay: 0.2s; }
        .hero-content > *:nth-child(2) { animation-delay: 0.4s; }
        .hero-content > *:nth-child(3) { animation-delay: 0.6s; }
        .hero-content > *:nth-child(4) { animation-delay: 0.8s; }
        .hero-content > *:nth-child(5) { animation-delay: 1s; }

        img {
            opacity: 0;
            animation: fadeIn 0.8s ease-in forwards;
        }

        img.loaded {
            opacity: 1;
        }

        .decorative-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(155, 123, 165, 0.15), transparent);
            filter: blur(40px);
            animation: pulse 4s ease-in-out infinite;
        }

        .pattern-overlay {
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(155, 123, 165, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(74, 155, 155, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(138, 106, 148, 0.2) 0%, transparent 50%);
        }

        /* ========================================== */
        /* RESPONSIVE UTILITIES */
        /* ========================================== */
        @media (max-width: 1024px) {
            .floating-image {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 3rem !important;
            }
            
            .hero-content p {
                font-size: 1.125rem !important;
            }
        }

        @media (max-width: 640px) {
            .hero-content h1 {
                font-size: 2.5rem !important;
            }
        }

        /* Smooth animations on mobile */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }