/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: clamp(5.5rem, 7vw, 8rem);
    overflow-x: hidden;
    overflow-y: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
    transform: scale(1.1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.7) 0%, rgba(143, 163, 30, 0.5) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-c);
    max-width: 800px !important;
    padding: 0 2rem;
    animation: fadeInUp 1s ease 0.5s both;
}

/* ... other styles ... */

.hero-title {
    font-size: 3.5rem !important;
    font-weight: 900;
    margin-bottom: 3.5rem !important;
    margin-top: 2rem;
    text-shadow: 4px 6px 25px rgba(0,0,0,0.8);
    line-height: 1.1;
    letter-spacing: -3px;
    text-transform: uppercase;
    opacity: 0;
    animation: hero-appear 1.2s ease-out 0.8s both;
}

.hero-description {
    font-size: 1rem !important;
    margin-bottom: 3rem;
    opacity: 0;
    line-height: 1.5;
    max-width: 70% !important;
    margin-left: auto;
    margin-right: auto;
    animation: hero-appear 1.2s ease-out 1.2s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-b) 0%, var(--color-c) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-b);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s both;
    position: sticky;
    bottom: 2rem;
    z-index: 11;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-a) 0%, var(--color-d) 100%);
    color: var(--color-c);
    box-shadow: 0 10px 30px rgba(85, 107, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-c);
    border: 2px solid var(--color-a);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-a) 0%, var(--color-d) 100%);
    border-color: transparent;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--color-c);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0 0.75rem;
    text-shadow: 0 6px 18px rgba(0,0,0,0.6);
    z-index: 20;
    pointer-events: none;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    color: var(--color-b);
}

.hero-arrow:focus-visible {
    outline: 2px solid var(--color-b);
    outline-offset: 6px;
}

.hero-slider:hover ~ .hero-arrow,
.hero-arrow:hover,
.hero-arrow:focus-visible {
    opacity: 1;
    pointer-events: auto;
}

.hero-arrow:hover {
    transform: translateY(-50%);
}

.hero-arrow.left {
    left: 3rem;
}

.hero-arrow.right {
    right: 3rem;
}