:root {
            --deep-blue: #1a237e;
            --silver: #c0c0c0;
            --white: #ffffff;
            --gradient-blue: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
            --gold: #ffd700;
            --shadow-blue: rgba(26, 35, 126, 0.3);
            --success-green: #4caf50;
        }

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

        body {
            font-family: 'Open Sans', sans-serif;
            background: var(--deep-blue);
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            color: var(--white);
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Floating Animation Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .floating-coin {
            position: absolute;
            color: var(--gold);
            font-size: 24px;
            opacity: 0.3;
            animation: float 8s infinite ease-in-out;
        }

        .floating-star {
            position: absolute;
            color: var(--silver);
            font-size: 16px;
            opacity: 0.2;
            animation: sparkle 3s infinite ease-in-out;
        }

        .floating-diamond {
            position: absolute;
            color: var(--white);
            font-size: 20px;
            opacity: 0.25;
            animation: rotate-float 6s infinite linear;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            25% { transform: translateY(-20px) rotate(90deg); opacity: 0.5; }
            50% { transform: translateY(-40px) rotate(180deg); opacity: 0.7; }
            75% { transform: translateY(-20px) rotate(270deg); opacity: 0.5; }
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.2; }
            50% { transform: scale(1.5) rotate(180deg); opacity: 0.6; }
        }

        @keyframes rotate-float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-60px) rotate(360deg); }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(26, 35, 126, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--silver);
        }

        .header.scrolled {
            background: rgba(26, 35, 126, 0.98);
            box-shadow: 0 4px 20px var(--shadow-blue);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
            background: linear-gradient(45deg, var(--gold), var(--silver));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: logo-glow 2s infinite alternate ease-in-out;
        }

        @keyframes logo-glow {
            0% { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); }
            100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-menu a:hover {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after {
            width: 80%;
        }

        .nav-menu a.active {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-menu a.active::after {
            width: 80%;
        }

        .age-badge {
            background: linear-gradient(45deg, #ff4444, #cc3333);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: pulse-badge 2s infinite ease-in-out;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

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

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

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

        /* Mobile Menu */
        .mobile-nav {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(26, 35, 126, 0.98);
            backdrop-filter: blur(10px);
            transition: left 0.3s ease;
            padding: 2rem;
            z-index: 999;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0;
        }

        .mobile-nav ul li {
            margin: 1.5rem 0;
        }

        .mobile-nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            padding: 1rem;
            display: block;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .mobile-nav ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--gold);
            transform: translateX(10px);
        }

        /* Main Content */
        .main-content {
            position: relative;
            z-index: 2;
            margin-top: 80px;
            min-height: calc(100vh - 80px);
        }

        /* Contact Container */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

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

        .contact-header h1 {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--gold), var(--silver), var(--white));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            animation: title-glow 2s ease-in-out infinite alternate;
        }

        @keyframes title-glow {
            0% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
            100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)); }
        }

        .contact-header p {
            font-size: 1.3rem;
            color: var(--silver);
            font-weight: 300;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Contact Info */
        .contact-info {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 30px;
            border: 2px solid var(--silver);
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            animation: shine 3s infinite ease-in-out;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .contact-info h2 {
            color: var(--gold);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .contact-info p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateX(5px);
        }

        .contact-item .icon {
            font-size: 1.5rem;
            color: var(--gold);
            animation: icon-bounce 2s ease-in-out infinite;
        }

        @keyframes icon-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        .contact-item div h3 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .contact-item div p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
        }

        .contact-item div a {
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-item div a:hover {
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
        }

        /* Contact Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 30px;
            border: 2px solid var(--silver);
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            animation: shine 3s infinite ease-in-out 1.5s;
        }

        .contact-form h2 {
            color: var(--gold);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .form-group label {
            display: block;
            color: var(--silver);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid transparent;
            border-radius: 15px;
            color: var(--white);
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-button {
            background: linear-gradient(45deg, var(--gold), #ffed4a);
            color: var(--deep-blue);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            animation: button-glow 2s ease-in-out infinite alternate;
            width: 100%;
        }

        @keyframes button-glow {
            0% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
            100% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5); }
        }

        .submit-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
        }

        .submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Success Popup */
        .success-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .success-popup.show {
            opacity: 1;
            visibility: visible;
        }

        .success-popup-content {
            background: var(--gradient-blue);
            padding: 3rem;
            border-radius: 30px;
            text-align: center;
            max-width: 500px;
            border: 3px solid var(--success-green);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            transform: scale(0.8) translateY(-50px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .success-popup.show .success-popup-content {
            transform: scale(1) translateY(0);
        }

        .success-popup-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(76, 175, 80, 0.1), transparent);
            animation: success-shimmer 2s ease-in-out;
        }

        @keyframes success-shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .success-icon {
            font-size: 4rem;
            color: var(--success-green);
            margin-bottom: 1rem;
            animation: success-bounce 0.6s ease-out;
        }

        @keyframes success-bounce {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .success-popup h2 {
            color: var(--success-green);
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .success-popup p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .close-popup-btn {
            background: linear-gradient(45deg, var(--success-green), #66bb6a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-popup-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
        }

        /* Footer */
        .footer {
            background: var(--deep-blue);
            padding: 2rem;
            text-align: center;
            border-top: 3px solid var(--gold);
            margin-top: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--silver);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        .footer-copyright {
            opacity: 0.7;
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .contact-header h1 {
                font-size: 2.5rem;
            }

            .contact-container {
                padding: 2rem 1rem;
            }

            .contact-info,
            .contact-form {
                padding: 2rem 1.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .success-popup-content {
                margin: 1rem;
                padding: 2rem;
            }
        }

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

            .contact-info h2,
            .contact-form h2 {
                font-size: 1.5rem;
            }
        }