/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #061a0d 0%, #0d2b16 40%, #0f3520 100%);
}

/* Background Pattern */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26,107,58,.35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(201,168,76,.15) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.3) 100%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Content */
.hero-content { }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.35);
    color: var(--color-gold-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeInDown .8s ease both;
}
.hero-badge i { color: var(--color-gold); }

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInDown .8s ease .2s both;
}
.hero-title span {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
    animation: fadeInDown .8s ease .4s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInDown .8s ease .6s both;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
    animation: fadeInUp .8s ease .8s both;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    display: block;
    font-family: var(--font-display);
}
.stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    font-weight: 600;
    margin-top: 4px;
}

/* Hero Image / Visual */
.hero-visual {
    position: relative;
    animation: fadeInLeft .9s ease .3s both;
}
.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hero-service-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}
.hero-service-card:hover {
    background: rgba(26,107,58,.25);
    border-color: rgba(26,107,58,.5);
    transform: translateY(-4px);
}
.hero-service-card i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    display: block;
}
.hero-service-card h4 {
    font-size: .88rem;
    color: var(--color-white);
    font-weight: 700;
}
.hero-badge-float {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: #1a1a00;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}
.hero-badge-float .float-num {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}
.hero-badge-float .float-text { font-size: .72rem; font-weight: 700; }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.5);
    font-size: .75rem;
    z-index: 1;
    animation: fadeInUp 1s ease 1.2s both;
}
.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%,100% { opacity: 1; transform: translateY(0); }
    50%      { opacity: .3; transform: translateY(8px); }
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero-content { text-align: center; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
}
