/* Contact Page Specific Layout */
        .main-container {
            margin: clamp(40px, 8vh, 80px) auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 48px;
            align-items: start;
        }

        @media (max-width: 900px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        /* Left Side Info Card */
        .info-card {
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: clamp(24px, 5vw, 48px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }

        .info-card h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--text), var(--rose));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.01em;
        }

        .info-card p {
            color: var(--text-sub);
            font-size: 16px;
            line-height: 1.65;
            margin-bottom: 32px;
        }

        .contact-details {
            margin-top: 32px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 28px;
        }
        .detail-item:last-child {
            margin-bottom: 0;
        }

        .detail-icon {
            background: var(--rose-dim);
            border: 1px solid rgba(213, 52, 111, 0.3);
            border-radius: var(--radius-sm);
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: var(--rose);
        }

        .detail-content h4 {
            margin: 0 0 6px 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
        }

        .detail-content p {
            margin: 0;
            font-size: 14.5px;
            color: var(--text-sub);
            line-height: 1.6;
        }

        /* Right Side Form Card */
        .form-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: clamp(24px, 5vw, 48px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .form-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, var(--rose-glow) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .form-label {
            display: block;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }

        .form-control {
            width: 100%;
            box-sizing: border-box;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 13px 16px;
            color: var(--text);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--rose);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 0 15px var(--rose-glow);
        }

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

        .btn-submit {
            width: 100%;
            background: var(--rose);
            color: #ffffff;
            border: none;
            border-radius: 40px;
            padding: 14px 20px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            z-index: 1;
            letter-spacing: 0.03em;
        }

        .btn-submit:hover {
            background: var(--rose-hover);
            transform: translateY(-2px);
            box-shadow: 0 0 20px var(--rose-glow);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        /* Success Message Container */
        .success-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(8, 8, 8, 0.97);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s var(--ease);
            z-index: 10;
            text-align: center;
            padding: 24px;
            box-sizing: border-box;
        }

        .success-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .success-icon {
            width: 72px;
            height: 72px;
            background: var(--rose-dim);
            border: 2px solid var(--rose);
            color: var(--rose);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
            animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        .success-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
        }

        .success-text {
            color: var(--text-sub);
            font-size: 15px;
            max-width: 320px;
            line-height: 1.6;
        }
