 .contact-page {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 24px;
            margin-top: 60px;
        }

        /* ========== HEADER ========== */
        .contact-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f0fff5;
            color: #0CD781;
            border: 1.5px solid #0CD781;
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .contact-badge-dot {
            width: 8px; height: 8px;
            background: #0CD781;
            border-radius: 50%;
            animation: dotPulse 1.5s infinite;
        }

        @keyframes dotPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .contact-title {
            font-size: clamp(28px, 5vw, 38px);
            font-weight: 800;
            margin-bottom: 8px;
        }

        .contact-title span { color: #0CD781; }

        .contact-subtitle {
            font-size: 15px;
            color: #888;
            max-width: 500px;
            margin: 0 auto;
        }

        /* ========== CONTENT LAYOUT ========== */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        /* ========== CONTACT CARDS ========== */
        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-card {
            background: #fff;
            border: 1px solid #e8eaed;
            border-radius: 16px;
            padding: 22px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: 0.3s;
            text-decoration: none;
            color: #1a1a1a;
            cursor: pointer;
        }

        .contact-card:hover {
            border-color: #0CD781;
            box-shadow: 0 8px 24px rgba(12, 215, 129, 0.08);
            transform: translateY(-2px);
        }

        .contact-card-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .icon-telegram { background: #e8f5fd; color: #0088cc; }
        .icon-whatsapp { background: #e8f5e9; color: #25d366; }
        .icon-email { background: #fff3e0; color: #f57f17; }
        .icon-website { background: #f0fff5; color: #0CD781; }
        .icon-phone { background: #fce4ec; color: #e91e63; }
        .icon-chat { background: #e3f2fd; color: #2196f3; }

        .contact-card-info { flex: 1; }

        .contact-card-info h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .contact-card-info p {
            font-size: 13px;
            color: #888;
            margin: 0;
            word-break: break-all;
        }

        .contact-card-arrow {
            color: #ccc;
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 10px;
        }

        .contact-card:hover .contact-card-arrow {
            color: #0CD781;
        }

        /* ========== CONTACT FORM ========== */
        .contact-form-card {
            background: #fff;
            border: 1px solid #e8eaed;
            border-radius: 16px;
            padding: 28px;
        }

        .contact-form-card h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .contact-form-card .form-subtitle {
            font-size: 13px;
            color: #888;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #555;
            margin-bottom: 6px;
        }

        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e8eaed;
            border-radius: 12px;
            font-size: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            outline: none;
            transition: 0.2s;
            background: #fff;
            color: #1a1a1a;
        }

        .form-input:focus, .form-textarea:focus, .form-select:focus {
            border-color: #0CD781;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            width: 100%;
            padding: 14px;
            background: #0CD781;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: 0.3s;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .form-submit:hover {
            background: #0ab86e;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(12, 215, 129, 0.3);
        }

        /* ========== SUCCESS MESSAGE ========== */
        .success-msg {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .success-msg.show { display: block; }

        .success-msg .check-icon {
            font-size: 60px;
            margin-bottom: 14px;
        }

        .success-msg h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0CD781;
            margin-bottom: 6px;
        }

        .success-msg p {
            font-size: 14px;
            color: #888;
        }

        /* ========== FAQ QUICK ========== */
        .faq-quick {
            margin-top: 28px;
            background: #fff;
            border: 1px solid #e8eaed;
            border-radius: 16px;
            padding: 28px;
            text-align: center;
        }

        .faq-quick h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .faq-quick-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .faq-link {
            padding: 10px 20px;
            background: #f5f5f5;
            border-radius: 100px;
            font-size: 13px;
            color: #555;
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
        }

        .faq-link:hover {
            background: #0CD781;
            color: #fff;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 700px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }

            .contact-page {
                padding: 40px 16px;
            }
        }