        :root {
            --primary: #ffad19;
            --primary-glow: rgba(255, 173, 25, 0.4);
            --dark: #0f172a;
            --glass-bg: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(255, 255, 255, 0.4);
            --text-main: #1e293b;
            --text-muted: #64748b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background: radial-gradient(circle at top right, #fffbeb, #fff);
            background-attachment: fixed;
            color: var(--text-main);
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Animated Background Shapes */
        .bg-shape {
            position: fixed;
            z-index: -1;
            filter: blur(80px);
            border-radius: 50%;
            opacity: 0.5;
            animation: move 20s infinite alternate;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--primary-glow);
            top: -100px;
            right: -100px;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: #fef3c7;
            bottom: -50px;
            left: -50px;
            animation-delay: -5s;
        }

        @keyframes move {
            from {
                transform: translate(0, 0) scale(1);
            }

            to {
                transform: translate(50px, 50px) scale(1.1);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* --- contacts-header Section --- */
        .contacts-header-section {
            text-align: center;
            margin-bottom: 80px;
        }

        .contacts-header-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--dark), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .contacts-header-section p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- Premium Info Cards --- */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 80px;
        }

        .premium-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            padding: 30px;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            color: inherit;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        .premium-card:hover {
            transform: translateY(-10px);
            background: #fff;
            box-shadow: 0 20px 40px rgba(255, 173, 25, 0.15);
            border-color: var(--primary);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: var(--dark);
            color: #fff;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .premium-card:hover .card-icon {
            background: var(--primary);
            transform: rotate(10deg);
        }

        .card-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .card-sub {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* --- Main Contact Section --- */
        .main-wrapper {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 40px;
            padding: 60px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        /* Decorative Glow in Wrapper */
        .main-wrapper::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--primary-glow);
            filter: blur(60px);
            bottom: -50px;
            right: -50px;
            z-index: -1;
        }

        .visual-side {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .floating-logo {
            width: 100%;
            max-width: 350px;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .form-side h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 30px;
            position: relative;
        }

        .form-side h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 50px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .input-group {
            margin-bottom: 25px;
            position: relative;
        }

        .input-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-muted);
            margin-left: 15px;
        }

        .premium-input {
            width: 100%;
            padding: 16px 25px;
            background: rgba(241, 245, 249, 0.7);
            border: 2px solid transparent;
            border-radius: 20px;
            outline: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .premium-input:focus {
            background: #fff;
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(255, 173, 25, 0.1);
        }

        textarea.premium-input {
            height: 150px;
            resize: none;
        }

        .premium-btn {
            width: 100%;
            padding: 18px;
            background: var(--dark);
            color: #fff;
            border: none;
            border-radius: 20px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            overflow: hidden;
            position: relative;
        }

        .premium-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .premium-btn:hover::before {
            left: 100%;
        }

        .premium-btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px var(--primary-glow);
        }

        /* --- Success/Error Modal Style --- */
        .status-toast {
            position: fixed;
            top: 30px;
            right: 30px;
            padding: 20px 35px;
            border-radius: 15px;
            background: #fff;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 15px;
            border-left: 5px solid var(--primary);
            animation: slideIn 0.5s ease forwards;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .main-wrapper {
                grid-template-columns: 1fr;
                padding: 40px;
                gap: 50px;
            }

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

        @media (max-width: 600px) {
            .container {
                padding: 30px 15px;
            }

            .main-wrapper {
                padding: 30px 20px;
                border-radius: 30px;
            }

            .contacts-header-section h1 {
                font-size: 2rem;
            }
        }