 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0EA5E9;
            --primary-light: #38BDF8;
            --primary-dark: #0284C7;
            --accent: #06B6D4;
            --dark: #0F172A;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            color: #0F172A;
            overflow-x: hidden;
            background: #ffffff;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
        }

        .animated-bg span {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            background: rgba(14, 165, 233, 0.08);
            animation: float 25s linear infinite;
            bottom: -150px;
            border-radius: 50%;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); opacity: 1; }
            100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
        }

        .animated-bg span:nth-child(1) { left: 10%; animation-delay: 0s; width: 80px; height: 80px; }
        .animated-bg span:nth-child(2) { left: 20%; animation-delay: 2s; width: 40px; height: 40px; }
        .animated-bg span:nth-child(3) { left: 30%; animation-delay: 4s; width: 60px; height: 60px; }
        .animated-bg span:nth-child(4) { left: 40%; animation-delay: 0s; width: 50px; height: 50px; }
        .animated-bg span:nth-child(5) { left: 50%; animation-delay: 3s; width: 70px; height: 70px; }
        .animated-bg span:nth-child(6) { left: 60%; animation-delay: 5s; width: 45px; height: 45px; }
        .animated-bg span:nth-child(7) { left: 70%; animation-delay: 1s; width: 55px; height: 55px; }
        .animated-bg span:nth-child(8) { left: 80%; animation-delay: 3s; width: 65px; height: 65px; }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(14, 165, 233, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 50px;
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-light);
        }

        .btn-contact {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
        }

        /* Hero Section */
        .contact-hero {
            padding: 12rem 5% 6rem;
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            position: relative;
            overflow: hidden;
            margin-top: 85px;
        }

        .hero-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-content h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: #94A3B8;
            line-height: 1.6;
        }

        /* Split Layout Section */
        .contact-section {
            padding: 0;
            position: relative;
        }

        .split-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            min-height: 100vh;
        }

        /* Left Side - Info Cards */
        .info-side {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            padding: 8rem 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .info-side::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
        }

        .info-content {
            position: relative;
            z-index: 2;
            max-width: 500px;
        }

        .info-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 3rem;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 24px;
            margin-bottom: 2rem;
            transition: all 0.4s ease;
            animation: slideInLeft 1s ease both;
        }

        .info-card:nth-child(2) { animation-delay: 0.2s; }
        .info-card:nth-child(3) { animation-delay: 0.4s; }
        .info-card:nth-child(4) { animation-delay: 0.6s; }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .info-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary);
            transform: translateX(10px);
        }

        .info-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
        }

        .info-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .info-card p {
            color: #94A3B8;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Right Side - Form */
        .form-side {
            background: #ffffff;
            padding: 8rem 5%;
            display: flex;
            align-items: center;
        }

        .form-container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-header {
            margin-bottom: 3rem;
        }

        .form-header h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .form-header p {
            color: #64748B;
            font-size: 1.1rem;
        }

        /* Form Styling */
        .contact-form {
            animation: slideInRight 1s ease;
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
        }

        .required {
            color: var(--primary);
        }

        .radio-group {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .radio-option input[type="radio"] {
            width: 22px;
            height: 22px;
            accent-color: var(--primary);
            cursor: pointer;
        }

        .radio-option label {
            font-size: 1.05rem;
            color: #475569;
            cursor: pointer;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border: 2px solid #E2E8F0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Rajdhani', sans-serif;
            transition: all 0.3s ease;
            background: #ffffff;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 150px;
        }

        .phone-input-wrapper {
            display: flex;
            gap: 0.5rem;
        }

        .phone-input-wrapper select {
            width: 100px;
        }

        .submit-btn {
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 800;
            font-family: 'Rajdhani', sans-serif;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
            margin-top: 2rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(14, 165, 233, 0.5);
        }

        /* Footer */
        footer {
            background: #0F172A;
            color: #94A3B8;
            padding: 4rem 5% 2rem;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto 3rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand h3 {
            color: #ffffff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-section h4 {
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #94A3B8;
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(148, 163, 184, 0.2);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .split-container {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                gap: 1.5rem;
            }
        }