        .contact-hero {
            padding-top: 9px;
            text-align: center;
            position: relative;
        }

        .contact-hero::before {
            content: "";
            position: absolute;
            width: 350px;
            height: 350px;
            background: rgba(255, 0, 89, 0.25);
            filter: blur(120px);
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
        }

        .contact-subtitle {
            max-width: 750px;
            margin: 15px auto;
            color: #cbd5e1;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 28px;
            backdrop-filter: blur(10px);
            transition: 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 0, 89, 0.4);
            box-shadow: 0 15px 40px rgba(255, 0, 89, 0.15);
        }

        .contact-card h2 {
            margin-bottom: 15px;
            color: rgb(255, 0, 89);
            font-size: 1.8rem;
        }

        .contact-card p {
            color: #d1d5db;
            line-height: 1.8;
        }

        .contact-badge {
            display: inline-block;
            background: linear-gradient(45deg, rgb(255, 0, 89), #06b6d4);
            color: white;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            margin-bottom: 18px;
            font-weight: 600;
        }

        .contact-form {
            margin-top: 20px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: white;
            font-weight: 500;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: rgb(255, 0, 89);
            box-shadow: 0 0 15px rgba(255, 0, 89, 0.25);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 140px;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 12px;
            background: linear-gradient(45deg, rgb(255, 0, 89), #06b6d4);
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 0, 89, 0.3);
        }

        .contact-info-box {
            margin-top: 25px;
            padding: 18px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.06);
            border-left: 4px solid rgb(255, 0, 89);
        }

        .contact-info-box h3 {
            margin-bottom: 10px;
            color: white;
        }

        .contact-info-box p {
            color: #d1d5db;
        }

        .response-time {
            margin-top: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #cbd5e1;
        }

        .response-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 10px #22c55e;
        }

        @media (max-width: 768px) {

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-hero {
                padding-top: 170px;
            }

            .contact-card h2 {
                font-size: 1.5rem;
            }

            .contact-subtitle {
                font-size: 0.95rem;
            }
        }
    
