/* ==========================================================================
   WebKolek Modern High-Converting Hero Banner & Lead Form Styles
   ========================================================================== */

.hero-modern-wrapper {
    position: relative;
    background: linear-gradient(135deg, #090814 0%, #0E0D1B 45%, #151329 100%);
    color: #ffffff;
    padding: 110px 0 90px;
    overflow: hidden;
    z-index: 1;
}

/* Ambient Glowing Background Elements */
.hero-ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    pointer-events: none;
    z-index: -1;
    animation: heroOrbFloat 12s infinite alternate ease-in-out;
}

.hero-orb-1 {
    top: -10%;
    left: -5%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #FF4438 0%, rgba(255, 68, 56, 0) 70%);
}

.hero-orb-2 {
    bottom: -15%;
    right: 5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #7C3AED 0%, rgba(124, 58, 237, 0) 70%);
    animation-delay: -4s;
}

.hero-orb-3 {
    top: 30%;
    right: 35%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #FFBE36 0%, rgba(255, 190, 54, 0) 70%);
    opacity: 0.25;
    animation-delay: -8s;
}

@keyframes heroOrbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -25px) scale(1.08); }
    100% { transform: translate(-20px, 35px) scale(0.95); }
}

/* Subtle Grid Background Pattern */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

/* Live Status Badge */
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13.5px;
    font-weight: 600;
    color: #F3F4F6;
    margin-bottom: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-live-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 68, 56, 0.4);
    transform: translateY(-2px);
}

.hero-live-dot {
    position: relative;
    width: 9px;
    height: 9px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
}

.hero-live-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background-color: #10B981;
    opacity: 0.6;
    animation: liveDotPulse 2s infinite ease-out;
}

@keyframes liveDotPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.6); opacity: 0; }
}

/* Hero Typography */
.hero-main-title {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-main-title .gradient-highlight {
    background: linear-gradient(135deg, #FF4438 0%, #FF8A00 50%, #FFBE36 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-sub-text {
    font-size: 17px;
    line-height: 1.65;
    color: #D1D5DB;
    max-width: 540px;
    margin-bottom: 28px;
}

/* Feature Pill Badges */
.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: #E5E7EB;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.hero-feature-pill i {
    color: #FFBE36;
}

.hero-feature-pill:hover {
    background: rgba(255, 68, 56, 0.15);
    border-color: rgba(255, 68, 56, 0.35);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Hero Action Buttons */
.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF4438 0%, #FF6B35 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 68, 56, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, #E63529 0%, #FF5520 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 30px rgba(255, 68, 56, 0.55);
}

.hero-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.12);
    color: #25D366 !important;
    border: 1px solid rgba(37, 211, 102, 0.3);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-whatsapp-btn:hover {
    background: #25D366;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}

/* Trust Proof & Rating Stack */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-avatar-stack {
    display: flex;
    align-items: center;
}

.hero-avatar-stack img,
.hero-avatar-stack .hero-avatar-letter {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #0E0D1B;
    margin-left: -10px;
    object-fit: cover;
    background: #1F2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-avatar-stack img:first-child,
.hero-avatar-stack .hero-avatar-letter:first-child {
    margin-left: 0;
}

.hero-avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FF4438, #FFBE36);
}

.hero-proof-text {
    font-size: 13.5px;
    color: #9CA3AF;
    line-height: 1.4;
}

.hero-proof-text strong {
    color: #FFFFFF;
}

.hero-stars {
    color: #FFBE36;
    font-size: 12px;
    margin-bottom: 2px;
}

/* ==========================================================================
   Glassmorphic Lead Capture Card (Right Side)
   ========================================================================== */

.hero-card-container {
    position: relative;
    padding: 10px;
}

.hero-glass-card {
    position: relative;
    background: rgba(18, 16, 36, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    padding: 34px 30px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    z-index: 2;
    transition: border-color 0.3s ease;
}

.hero-glass-card:hover {
    border-color: rgba(255, 68, 56, 0.3);
}

.hero-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.hero-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255, 68, 56, 0.15);
    border: 1px solid rgba(255, 68, 56, 0.3);
    border-radius: 30px;
    color: #FF6B55;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hero-card-title {
    font-size: 23px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.hero-card-subtitle {
    font-size: 13.5px;
    color: #9CA3AF;
    margin-bottom: 0;
}

/* Form Controls Inside Glass Card */
.hero-input-group {
    position: relative;
    margin-bottom: 16px;
}

.hero-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 15px;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 3;
}

.hero-form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 13px 16px 13px 44px;
    color: #FFFFFF;
    font-size: 14.5px;
    font-family: inherit;
    transition: all 0.25s ease;
}

.hero-form-control::placeholder {
    color: #6B7280;
    font-size: 14px;
}

.hero-form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #FF4438;
    box-shadow: 0 0 0 3px rgba(255, 68, 56, 0.25);
    color: #FFFFFF;
}

.hero-form-control:focus + .hero-input-icon,
.hero-input-group:focus-within .hero-input-icon {
    color: #FF4438;
}

select.hero-form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 38px;
    cursor: pointer;
}

select.hero-form-control option {
    background: #151329;
    color: #FFFFFF;
    padding: 10px;
}

/* Submit Button */
.hero-submit-btn {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #FF4438 0%, #FF7A00 100%);
    border: none;
    border-radius: 14px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255, 68, 56, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    animation: btnShine 4s infinite ease-in-out;
}

@keyframes btnShine {
    0% { left: -100%; }
    25% { left: 150%; }
    100% { left: 150%; }
}

.hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 68, 56, 0.6);
}

.hero-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Card Guarantee Notes */
.hero-card-guarantees {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    font-size: 12px;
    color: #9CA3AF;
}

.hero-card-guarantees span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hero-card-guarantees i {
    color: #10B981;
}

/* Success Celebration State inside Glass Card */
.hero-success-state {
    display: none;
    text-align: center;
    padding: 30px 10px;
    animation: fadeInScale 0.4s ease-out;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.hero-success-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border: 2px solid #10B981;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #10B981;
    margin-bottom: 18px;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.35);
}

.hero-success-state h4 {
    font-size: 22px;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-success-state p {
    font-size: 14px;
    color: #D1D5DB;
    line-height: 1.55;
    margin-bottom: 22px;
}

/* ==========================================================================
   Floating Interactive Stat Badges around Glass Card
   ========================================================================== */

.hero-floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(24, 21, 46, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 3;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-floating-stat:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.hero-floating-stat-1 {
    top: -24px;
    left: -28px;
    animation: floatBadge1 5s ease-in-out infinite alternate;
}

.hero-floating-stat-2 {
    bottom: -22px;
    right: -24px;
    animation: floatBadge2 6s ease-in-out infinite alternate;
}

@keyframes floatBadge1 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@keyframes floatBadge2 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(12px); }
}

.hero-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-icon-green {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.stat-icon-gold {
    background: rgba(255, 190, 54, 0.15);
    color: #FFBE36;
    border: 1px solid rgba(255, 190, 54, 0.3);
}

.hero-stat-info h5 {
    font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.hero-stat-info p {
    font-size: 11.5px;
    color: #9CA3AF;
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 1199.98px) {
    .hero-main-title {
        font-size: 42px;
    }
    .hero-floating-stat-1 {
        left: -10px;
    }
    .hero-floating-stat-2 {
        right: -10px;
    }
}

@media (max-width: 991.98px) {
    .hero-modern-wrapper {
        padding: 80px 0 70px;
    }
    .hero-main-title {
        font-size: 38px;
    }
    .hero-content-col {
        margin-bottom: 50px;
        text-align: center;
    }
    .hero-sub-text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-features-list,
    .hero-btn-group,
    .hero-social-proof {
        justify-content: center;
    }
    .hero-floating-stat {
        display: none; /* Hide floating badges on smaller screens to prevent overlap */
    }
    .hero-glass-card {
        padding: 28px 22px;
    }
}

@media (max-width: 575.98px) {
    .hero-modern-wrapper {
        padding: 60px 0 50px;
    }
    .hero-main-title {
        font-size: 30px;
    }
    .hero-sub-text {
        font-size: 15px;
    }
    .hero-btn-group {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta-btn,
    .hero-whatsapp-btn {
        width: 100%;
    }
    .hero-social-proof {
        flex-direction: column;
        text-align: center;
    }
    .hero-glass-card {
        padding: 24px 16px;
        border-radius: 20px;
    }
}

/* ==========================================================================
   Continuous Infinite Marquee Slider for Trusted Brands
   ========================================================================== */

.trust-marquee-section {
    position: relative;
    background: #FFFFFF;
    border-top: 1px solid #ECECF1;
    border-bottom: 1px solid #ECECF1;
    padding: 36px 0 32px;
    overflow: hidden;
}

.trust-marquee-header {
    text-align: center;
    margin-bottom: 22px;
}

.trust-marquee-badge {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #6B7280;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-marquee-badge i {
    color: #FF4438;
}

.trust-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trust-marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    will-change: transform;
    animation: smoothLogoMarquee 42s linear infinite;
}

.trust-marquee-wrapper:hover .trust-marquee-track {
    animation-play-state: paused;
}

@keyframes smoothLogoMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trust-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 72px;
    padding: 10px 24px;
    background: #FAFAFC;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
    user-select: none;
}

.trust-logo-card img {
    max-height: 42px;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-logo-card .client-text-name {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.trust-logo-card:hover {
    background: #FFFFFF;
    border-color: rgba(255, 68, 56, 0.35);
    box-shadow: 0 8px 20px rgba(255, 68, 56, 0.12);
    transform: translateY(-3px);
}

.trust-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

.trust-logo-card:hover .client-text-name {
    color: #FF4438;
}

@media (max-width: 768px) {
    .trust-marquee-section {
        padding: 28px 0 24px;
    }
    .trust-marquee-track {
        animation-duration: 28s;
        gap: 14px;
    }
    .trust-logo-card {
        min-width: 145px;
        height: 60px;
        padding: 8px 16px;
    }
    .trust-logo-card img {
        max-height: 34px;
        max-width: 105px;
    }
}

