.whatsapp-banner-wrapper {
    background: #f8f9fa;
    padding: 0;
}
.wa-banner-card {
    display: flex;
    flex-wrap: wrap;
    min-height: 850px;
}
.wa-left {
    flex: 1 1 50%;
    background-color: #1a8f40;
    position: relative;
    padding: 100px 80px;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wa-right {
    flex: 1 1 50%;
    background-color: #ffffff;
    padding: 100px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Decorative circles */
.wa-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.wa-circle-1 {
    width: 800px;
    height: 800px;
    top: -250px;
    right: -200px;
}
.wa-circle-2 {
    width: 450px;
    height: 450px;
    bottom: -150px;
    left: -150px;
}

.wa-left-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}
.wa-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.wa-left h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}
.wa-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}
.wa-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wa-benefits li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}
.wa-benefits li i {
    background: rgba(255,255,255,0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.wa-right-content {
    max-width: 450px;
    width: 100%;
}
.wa-subtitle {
    color: #1a8f40;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.wa-right h3 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}
.wa-desc-right {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.5;
}
.wa-form {
    margin-bottom: 15px;
}
.wa-input-group {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.wa-prefix {
    background: #f5f5f5;
    padding: 15px 20px;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #e0e0e0;
}
.wa-input-group input {
    flex: 1;
    border: none;
    padding: 15px;
    outline: none;
    font-size: 15px;
}
.wa-submit-btn {
    width: 100%;
    background: #1a8f40;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}
.wa-submit-btn:hover {
    background: #147232;
}
.wa-disclaimer {
    font-size: 12px;
    color: #888;
    text-align: center;
}
.wa-disclaimer i {
    color: #555;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .wa-left {
        display: none !important;
    }
    .wa-right {
        flex: 1 1 100%;
        padding: 40px 20px;
        min-height: 100vh;
    }
    .wa-banner-card {
        min-height: 100vh;
    }
    .wa-right h3 {
        font-size: 26px;
    }
    
    .mobile-wa-footer {
        display: block;
    }
}

.mobile-wa-footer {
    display: none;
    position: fixed;
    bottom: -100px; /* Hidden initially */
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 15px 20px;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.mobile-wa-footer.show {
    bottom: 0;
}
.mobile-wa-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-wa-footer-text {
    display: flex;
    flex-direction: column;
}
.mobile-wa-footer-title {
    font-weight: 800;
    font-size: 15px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mobile-wa-footer-title i {
    color: #25D366; /* WhatsApp color */
    font-size: 18px;
}
.mobile-wa-footer-desc {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}
.mobile-wa-footer-btn {
    background: #1a8f40;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(26, 143, 64, 0.3);
}
.mobile-wa-footer-btn:hover {
    color: #fff;
    background: #147232;
}
