* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #D4AF37;
            border-radius: 50%;
            opacity: 0.3;
            animation: float 20s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-100px) translateX(50px); }
            50% { transform: translateY(-200px) translateX(-50px); }
            75% { transform: translateY(-100px) translateX(100px); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        /* Header with gradient text animation */
        header {
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: headerGlow 8s ease-in-out infinite;
        }

        @keyframes headerGlow {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(10px, 10px) scale(1.1); }
        }

        .logo-text {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #D4AF37, #FFD700, #D4AF37);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
            margin-bottom: 10px;
            animation: gradientShift 4s ease infinite;
            position: relative;
            z-index: 1;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .tagline {
            color: #D4AF37;
            font-size: 1.1rem;
            font-weight: 300;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Image sections with parallax effect */
        .image-section {
            margin: 60px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }

        .image-section:nth-child(1) {
            animation-delay: 0.2s;
        }

        .image-section:nth-child(2) {
            animation-delay: 0.4s;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .image-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        .image-section:hover::before {
            opacity: 1;
        }

        .image-section:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(212, 175, 55, 0.5);
        }

        .image-section img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-section:hover img {
            transform: scale(1.05);
        }

        /* Form section with glassmorphism */
        .form-section {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
            padding: 60px 20px;
            margin: 60px 0;
            border-radius: 20px;
            border: 2px solid #D4AF37;
            position: relative;
            backdrop-filter: blur(10px);
            animation: slideUp 1s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #D4AF37, #FFD700, #D4AF37, #FFD700);
            background-size: 300% 300%;
            border-radius: 20px;
            z-index: -1;
            animation: borderGlow 5s ease infinite;
            opacity: 0.5;
        }

        @keyframes borderGlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-title {
            text-align: center;
            font-size: 2rem;
            background: linear-gradient(45deg, #D4AF37, #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            font-weight: bold;
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .form-subtitle {
            text-align: center;
            color: #ccc;
            margin-bottom: 40px;
            font-size: 1rem;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .form-group {
            margin-bottom: 25px;
            animation: fadeInUp 1s ease both;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .form-group:nth-child(5) { animation-delay: 0.5s; }

        label {
            display: block;
            color: #D4AF37;
            margin-bottom: 10px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        input, select, textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid #D4AF37;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
            transform: translateY(-2px);
            background: rgba(0, 0, 0, 0.8);
        }

        input:focus + label, select:focus + label, textarea:focus + label {
            color: #FFD700;
            transform: translateX(5px);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
            color: #000;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .submit-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Footer with animated links */
        footer {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
            color: #D4AF37;
            border-top: 2px solid #D4AF37;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #FFD700, transparent);
            animation: scan 3s ease infinite;
        }

        @keyframes scan {
            to { left: 100%; }
        }

        .contact-info {
            margin: 20px 0;
            line-height: 2;
        }

        .contact-info a {
            color: #D4AF37;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .contact-info a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #FFD700;
            transition: width 0.3s ease;
        }

        .contact-info a:hover::after {
            width: 100%;
        }

        .contact-info a:hover {
            color: #FFD700;
            transform: translateX(5px);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .logo-text {
                font-size: 2rem;
            }

            .tagline {
                font-size: 0.9rem;
            }

            .form-title {
                font-size: 1.6rem;
            }

            .form-section {
                padding: 40px 15px;
            }

            input, select, textarea {
                padding: 12px 15px;
            }

            .image-section {
                margin: 40px 0;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }

            .logo-text {
                font-size: 1.6rem;
            }

            header {
                padding: 30px 15px;
            }

            .form-section {
                border-radius: 15px;
            }
        }

        /* Success message animation */
        .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
            color: #000;
            padding: 30px 50px;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: bold;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
            z-index: 1000;
            transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .success-message.show {
            transform: translate(-50%, -50%) scale(1);
        }