

.hero-section-home {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-image: radial-gradient(rgba(238, 113, 38, 0.09) 1.5px, transparent 1.5px),
        linear-gradient(160deg, #fff9f4 0%, #ffe9d3 42%, #f8fafc 100%);
    background-size: 24px 24px, 100% 100%;
    background-position: 0 0, 0 0;
}

.hero-section-home .hero-container {
    margin: 80px auto 48px;
}

.hero-section-home::before,
.hero-section-home::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.hero-section-home::before {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.35), transparent 70%);
    top: -160px;
    right: -80px;
    animation: ec-float-blob 12s ease-in-out infinite;
}

.hero-section-home::after {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(238, 113, 38, 0.22), transparent 70%);
    bottom: -140px;
    left: -100px;
    animation: ec-float-blob 14s ease-in-out infinite reverse;
}

.hero-sparkle {
    position: absolute;
    z-index: -1;
    color: #ffb347;
    opacity: 0;
    pointer-events: none;
    animation: ec-twinkle 5s ease-in-out infinite;
}

.hero-sparkle-1 { top: 14%; left: 48%; font-size: 1.3rem; animation-delay: 0.5s; }
.hero-sparkle-2 { top: 62%; left: 42%; font-size: 1rem; color: #EE7126; animation-delay: 2.3s; }

/* ── Headline ── */
.hero-section-home .big-text {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-section-home h1 .hero-heading-lead {
    display: inline-block;
    color: #6b7280;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-section-home h1 .hero-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #EE7126, #ffb347, #EE7126);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: ec-gradient-shift 6s ease infinite;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: -4px;
    height: 10px;
    background: linear-gradient(90deg, rgba(238, 113, 38, 0.35), rgba(255, 179, 71, 0.35));
    border-radius: 8px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease 0.35s;
}

.hero-section-home .ec-animate-blur.ec-visible .hero-highlight::after {
    transform: scaleX(1);
}

/* ── Search bar ── */
.hero-search-box {
    position: relative;
}

.hero-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #EE7126;
    font-size: 1.05rem;
    z-index: 10000;
    pointer-events: none;
}

.hero-section-home .search-box .textbox.search {
    border-radius: 14px;
    border: 1.5px solid rgba(238, 113, 38, 0.15);
    padding: 14px 20px 14px 46px;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(20, 20, 40, 0.06);
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-section-home .search-box .textbox.search:focus {
    outline: none;
    border-color: #EE7126;
    box-shadow: 0 0 0 4px rgba(238, 113, 38, 0.15), 0 8px 24px rgba(20, 20, 40, 0.08);
}

/* ── CTA buttons ── */
.hero-section-home .create-event-btn.btn-orange {
    background: linear-gradient(135deg, #EE7126, #ff9852);
    border: none;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(238, 113, 38, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-section-home .create-event-btn.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(238, 113, 38, 0.38);
    color: #fff;
}

/* Secondary CTA (Book a Demo) — glass style, sits a step below the primary gradient button */
.hero-section-home .create-event-btn.btn-orange.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    color: #EE7126;
    border: 1.5px solid rgba(238, 113, 38, 0.35);
    box-shadow: 0 8px 20px rgba(20, 20, 40, 0.06);
}

.hero-section-home .create-event-btn.btn-orange.hero-btn-secondary:hover {
    background: #fff;
    color: #EE7126;
    border-color: #EE7126;
    box-shadow: 0 12px 26px rgba(238, 113, 38, 0.18);
}

.hero-section-home .create-event-btn.btn-outline-orange {
    border: 1.5px solid rgba(238, 113, 38, 0.4);
    border-radius: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-section-home .create-event-btn.btn-outline-orange:hover {
    transform: translateY(-3px);
    border-color: #EE7126;
    background: #fff;
    box-shadow: 0 10px 22px rgba(238, 113, 38, 0.18);
}

/* ── Trust row dots ── */
.hero-section-home .dot {
    background: linear-gradient(135deg, #EE7126, #ffb347);
    box-shadow: 0 0 0 4px rgba(238, 113, 38, 0.12);
}

/* ── Hero image ── */
.hero-section-home .hero-image-wrap {
    position: relative;
    display: inline-block;
    animation: hero-float 6s ease-in-out infinite;
}

.hero-section-home .hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(238, 113, 38, 0.4), rgba(255, 179, 71, 0.2));
    filter: blur(20px);
    z-index: -2;
    animation: hero-image-pulse 4s ease-in-out infinite;
}

.hero-section-home .hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 22px;
    background: linear-gradient(135deg, #EE7126, #ffb347);
    transform: rotate(-4deg);
    box-shadow: 0 20px 40px rgba(238, 113, 38, 0.25);
    z-index: -1;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes hero-image-pulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

.hero-section-home .hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(20, 20, 40, 0.18);
    max-height: 380px;
    object-fit: cover;
}

.hero-section-home .info-badge {
    box-shadow: 0 12px 28px rgba(20, 20, 40, 0.16);
    border: 1px solid rgba(238, 113, 38, 0.08);
}

@media (max-width: 991px) {
    .hero-section-home .big-text {
        font-size: 2.4rem;
    }

    .hero-section-home .hero-image-wrap {
        max-width: 420px;
        width: 100%;
        margin-top: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section-home::before,
    .hero-section-home::after,
    .hero-sparkle,
    .hero-highlight,
    .hero-section-home .hero-image-wrap,
    .hero-section-home .hero-image-wrap::before {
        animation: none;
    }
}
