.connect-banner {
    position: relative;
    background: linear-gradient(90deg, #d62736 0%, #a5a5a5 100%);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.connect-banner::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 280px;
    height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.connect-banner::after {
    content: "";
    position: absolute;
    right: 30%;
    top: 25px;
    width: 180px;
    height: 80px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 2px, transparent 2px);
    background-size: 16px 16px;
}

.icon-circle {
    width: 82px;
    height: 82px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.icon-circle i {
    font-size: 34px;
    color: #f70057;
}

.banner-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.right-icons {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(214 39 54);
    opacity: 0.4;
}

.mail-icon {
    font-size: 48px;
    position: absolute;
    right: 180px;
    top: -10px;
    transform: rotate(-12deg);
}

.plane-icon {
    font-size: 58px;
    position: absolute;
    right: 0;
    top: -40px;
    transform: rotate(20deg);
}

.star-1,
.star-2 {
    position: absolute;
    font-size: 18px;
}

.star-1 {
    right: 120px;
    top: -45px;
}

.star-2 {
    right: 30px;
    top: 45px;
}

.dashed-line {
    position: absolute;
    width: 150px;
    height: 70px;
    border-top: 2px dashed rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    right: 70px;
    top: 15px;
    transform: rotate(10deg);
}

@media (max-width: 991px) {
    .right-icons {
        display: none;
    }

    .connect-banner {
        padding: 30px;
    }

    .banner-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .connect-banner {
        padding: 25px 20px;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
    }

    .icon-circle i {
        font-size: 26px;
    }

    .banner-title {
        font-size: 1.35rem;
    }

    .banner-text {
        font-size: 0.95rem;
    }
}

.demo-heading {
    font-size: 16px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 14px;
    display: block;
}

.demo-box {
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.demo-check {
    display: flex;
    align-items: center;
    width: 100%;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #ff4f87;
    border-radius: 2px;
    margin-top: 0 !important;
    margin-right: 12px;
    cursor: pointer;
    background-color: #fff;
}

.custom-checkbox:checked {
    background-color: #ff4f87;
    border-color: #ff4f87;
}

.demo-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
    width: 100%;
}

.demo-box:hover {
    border-color: #ff4f87;
}

@media (max-width: 768px) {
    .demo-box {
        min-height: auto;
        padding: 14px;
    }

    .demo-text {
        font-size: 14px;
    }
}


.trust-box {
    background: #f7f6fb;
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(111, 66, 193, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 20px;
    color: #d62736;
}

.trust-item h6 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #2d2d2d;
}

.divider {
    width: 1px;
    height: 48px;
    background: #e2e2e2;
    margin: 0 10px;
}

.submit-btn {
    width: 100%;
    height: 72px;
    border: none;
    border-radius: 14px;
    background: #d62736;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.18);
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.privacy-text {
    margin-top: 14px;
    text-align: center;
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 500;
}

.privacy-text i {
    margin-right: 8px;
    color: #9a9a9a;
}

.contact-sidebar {
    background: linear-gradient(180deg, #fff8fc 0%, #f9f6ff 100%);
    padding: 32px;
    border-radius: 20px;
    max-width: 420px;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
}

@media(max-width: 1400px) {
    .trust-icon {
        width: 32px;
        height: 32px;
    }

    .trust-icon i {
        font-size: 16px;
        color: #d62736;
    }
}