/*==================================================
    HIT AUCTION - HOME PAGE - HALF HEIGHT FIXED
==================================================*/
.hero-section{
    position:relative;
    min-height:420px !important;
    width:100%;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#061827 0%,#0b3148 50%,#0e7490 100%);
    color:#fff;
    isolation:isolate;
}
.hero-section::before,.hero-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    filter:blur(1px);
}
.hero-section::before{
    width:380px;height:380px;
    top:-150px;right:-80px;
    background:rgba(37,150,190,0.22);
    animation:heroFloatOne 8s ease-in-out infinite;
}
.hero-section::after{
    width:280px;height:280px;
    bottom:-120px;left:-70px;
    background:rgba(14,116,144,0.25);
    animation:heroFloatTwo 10s ease-in-out infinite;
}
.hero-overlay{
    position:absolute;inset:0;
    background:radial-gradient(circle at 20% 40%, rgba(37,150,190,0.15), transparent 35%), 
                radial-gradient(circle at 85% 70%, rgba(255,255,255,0.06), transparent 30%);
    pointer-events:none;
}
.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    padding:38px 0 32px !important;
}
.hero-inner{
    max-width:820px;
    margin:0 auto;
    text-align:center;
    padding:0 20px;
}
.hero-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:7px 16px;
    border:1px solid rgba(255,255,255,0.22);
    border-radius:50px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    color:#fff;
    font-size:10.5px;
    font-weight:800;
    letter-spacing:1.3px;
    box-shadow:0 6px 20px rgba(0,0,0,0.12);
}
.hero-tag i{color:#ffd166;font-size:13px}
.hero-title{
    margin:18px 0 12px;
    color:#fff;
    font-size:clamp(34px, 4.5vw, 54px);
    font-weight:900;
    line-height:1.1;
    letter-spacing:-1.5px;
    text-shadow:0 6px 20px rgba(0,0,0,0.18);
}
.hero-highlight{
    display:inline-block;
    background:linear-gradient(90deg,#38bdf8,#67e8f9,#ffffff,#38bdf8);
    background-size:250% auto;
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:heroGradient 4s linear infinite;
}
.hero-desc{
    max-width:640px;
    margin:0 auto;
    color:rgba(255,255,255,0.78);
    font-size:15px;
    line-height:1.6;
    font-weight:400;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:22px;
    flex-wrap:wrap;
}
.hero-section .btn-main,.hero-section .btn-outline-main{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:44px;
    padding:10px 22px;
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    transition:transform .22s ease, box-shadow .22s ease;
}
.hero-section .btn-main{
    color:#fff;
    background:linear-gradient(135deg,#2596be,#0e7490);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:0 8px 20px rgba(0,0,0,0.20);
}
.hero-section .btn-outline-main{
    color:#fff;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.26);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}
.hero-section .btn-main:hover,.hero-section .btn-outline-main:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 12px 26px rgba(0,0,0,0.24);
}
.page-enter{animation:pageHeroEnter .7s ease both}
@keyframes pageHeroEnter{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
@keyframes heroGradient{0%{background-position:0% center}100%{background-position:250% center}}
@keyframes heroFloatOne{0%,100%{transform:translate(0,0)}50%{transform:translate(-20px,18px)}}
@keyframes heroFloatTwo{0%,100%{transform:translate(0,0)}50%{transform:translate(18px,-18px)}}

/* RESPONSIVE - HALF HEIGHT */
@media (max-width:991px){
    .hero-section{min-height:400px !important}
    .hero-content{padding:32px 0 28px !important}
}
@media (max-width:767px){
    .hero-section{min-height:auto !important}
    .hero-content{padding:28px 0 24px !important}
    .hero-tag{padding:6px 12px;font-size:9.5px;letter-spacing:1px}
    .hero-title{margin-top:14px;font-size:32px;letter-spacing:-1px}
    .hero-desc{font-size:13.5px;line-height:1.5}
    .hero-buttons{flex-direction:column;width:100%;margin-top:18px;gap:10px}
    .hero-section .btn-main,.hero-section .btn-outline-main{width:100%;max-width:280px;min-height:42px}
}
@media (max-width:430px){
    .hero-title{font-size:28px}
    .hero-desc{font-size:13px}
}