/* ========================================
   HERO SECTION - DEDICATED STYLES
   Optimized for laptop viewports
   ======================================== */

/* ===== HERO CONTAINER ===== */

.hero-section {
    position: relative;
    min-height: 75vh;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3rem 0;
}

/* ===== BACKGROUND & OVERLAY ===== */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.28);
}

/* ===== CONTENT CONTAINER ===== */

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1150px;
    width: 100%;
    padding: 0 2rem;
    color: var(--white);
}

.hero-content-left {
    max-width: 700px;
}

.hero-content-right {
    display: none;
}

/* ===== TYPOGRAPHY ===== */

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: var(--white);
    background: none;
    display: inline-block;
    position: relative;
    font-weight: 700;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.2em;
    left: 0;
    width: 100%;
    height: 0.08em;
    background: var(--solar-orange);
    border-radius: 2px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.25rem;
    line-height: 1.7;
    max-width: 600px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

/* ===== STATS SECTION ===== */

.hero-stats {
    display: flex;
    gap: 1.75rem;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 0.625rem 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.stat-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    color: var(--white);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-number {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    font-weight: 400;
}

/* ===== CTA BUTTONS ===== */

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hero-cta .btn-primary {
    background: var(--solar-orange);
    color: var(--white);
    border-color: var(--solar-orange);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta .btn-primary:hover {
    background: var(--solar-orange-dark);
    border-color: var(--solar-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    font-weight: 600;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

/* ===== TRUST STRIP ===== */

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.trust-item i {
    color: var(--solar-yellow);
    font-size: 0.6875rem;
    opacity: 0.9;
}

.trust-separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* ===== SCROLL INDICATOR ===== */

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.scroll-indicator:hover {
    opacity: 0.9;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Laptops & Desktops (1440px+) */
@media (min-width: 1440px) {
    .hero-section {
        min-height: 70vh;
        max-height: 80vh;
    }

    .hero-stats {
        gap: 2.5rem;
    }
}

/* Standard Laptops (1024px - 1439px) */
@media (max-width: 1439px) {
    .hero-section {
        min-height: 75vh;
        max-height: 85vh;
    }

    .hero-title {
        font-size: clamp(2.25rem, 4.5vw, 3rem);
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

/* Small Laptops (1024px - 1366px) */
@media (max-width: 1366px) {
    .hero-section {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        margin-bottom: 1.5rem;
        gap: 1.25rem;
    }

    .stat-item {
        padding: 0.625rem 1rem;
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .hero-section {
        min-height: 70vh;
        max-height: none;
    }

    .hero-content {
        text-align: center;
        padding: 0 1.5rem;
    }

    .hero-content-left {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .hero-section {
        min-height: 85vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .stat-item {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-separator {
        display: none;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
    .hero-section {
        padding: 1.5rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }

    .stat-number {
        font-size: 1rem;
    }
}