:root {
            --dark-bg: #2A2A2A;
            --darker-bg: #1A1A1A;
            --light-gray: #EDEDED;
            --highlight-orange: #F5A623;
            --medium-gray: #8A8A8A;
            --deep-dark: #0F0F0F;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--deep-dark) 0%, var(--darker-bg) 50%, var(--dark-bg) 100%);
            color: var(--white);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .logo-container {
            text-align: center;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        .logo-svg {
            max-width: 280px;
            height: auto;
            filter: brightness(1.1) contrast(1.1);
        }
        
        
        .main-content {
            text-align: center;
            max-width: 600px;
            margin-bottom: 4rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.6s forwards;
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .main-message {
            font-size: 1.2rem;
            line-height: 1.6;
            color: var(--light-gray);
            margin-bottom: 2rem;
        }

        .highlight {
            color: var(--highlight-orange);
            font-weight: 500;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            width: 100%;
            max-width: 900px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.9s forwards;
        }

        .contact-form {
            background: rgba(237, 237, 237, 0.05);
            padding: 2.5rem;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .form-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--highlight-orange);
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--light-gray);
            font-weight: 500;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--highlight-orange);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--highlight-orange);
            color: var(--deep-dark);
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            background: var(--medium-gray);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
        }

        .contact-info {
            padding: 2.5rem;
        }

        .info-title {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--highlight-orange);
            text-align: center;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .info-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
        }

        .info-icon {
            font-size: 1.2rem;
            color: var(--highlight-orange);
            margin-right: 1rem;
            width: 24px;
            text-align: center;
        }

        .info-text {
            color: var(--light-gray);
            font-size: 1rem;
        }

        .social-media {
            margin-top: 2rem;
            text-align: center;
        }

        .social-title {
            color: var(--light-gray);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--light-gray);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--highlight-orange);
            color: var(--deep-dark);
            transform: translateY(-3px);
        }

        .footer {
            margin-top: 3rem;
            text-align: center;
            color: var(--light-gray);
            font-size: 0.9rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.2s forwards;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .main-title {
                font-size: 2rem;
            }

            .main-message {
                font-size: 1.1rem;
            }

            .contact-form,
            .contact-info {
                padding: 1.5rem;
            }

            .logo-svg {
                max-width: 250px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 1.8rem;
            }

            .main-message {
                font-size: 1rem;
            }

            .contact-form,
            .contact-info {
                padding: 1rem;
            }

            .logo-svg {
                max-width: 200px;
            }
        }

        /* Placeholder styling */
        ::placeholder {
            color: rgba(237, 237, 237, 0.6);
        }