.elementor-1993 .elementor-element.elementor-element-2b21f60 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}/* Start custom CSS for html, class: .elementor-element-3e0cb9a */.rc-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px; /* reduced vertical padding */
    position: relative;
    overflow: hidden;
    min-height: auto; /* remove full viewport height */
    display: flex;
    align-items: center;
    
    min-height: calc(100vh - 100px); /* adjust based on nav/footer */
}


.rc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="400" cy="600" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="700" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: rc-float 20s infinite linear;
    z-index: 0;
}

@keyframes rc-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.rc-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Text Content */
.rc-hero-content {
    text-align: left;
}

.rc-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.rc-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.4;
}

.rc-hero-features {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.rc-hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.rc-hero-features li::before {
    content: '✓';
    background: #00b894;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* CTA Buttons */
.rc-cta-primary, .rc-cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 16px;
    margin-bottom: 10px;
}

.rc-cta-primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.rc-cta-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(45deg, #ff5252, #ff7979);
}

.rc-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.rc-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Social Proof */
.rc-social-proof {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rc-social-proof-text {
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 10px;
}

.rc-social-proof-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.rc-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00b894;
}

.rc-stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Form */
.rc-hero-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.rc-urgency-banner {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    animation: rc-pulse 2s infinite;
}

@keyframes rc-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.rc-hero-form-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.rc-hero-form-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
}

.rc-hero-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.rc-hero-form-group {
    display: flex;
    flex-direction: column;
}


/* Trust Signals */
.rc-hero-trust-signals {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
}

.rc-trust-signal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Responsive */
@media (max-width: 1024px) {
    .rc-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .rc-hero-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .rc-hero-form-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .rc-hero {
        padding: 40px 16px;
    }
}/* End custom CSS */