/* Hero Section Styles */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1571068316344-75bc76f77890?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--white);
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #fff, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 61, 0, 0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.3);
}

.location-badge i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.quick-info {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.info-item i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: var(--accent-color);
}

.stat .label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.sale-badge {
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite;
}

.sale-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.sale-desc {
    font-size: 0.8rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.3);
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--text-color);
    transform: translateY(-2px);
}

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--accent-color);
    font-weight: 500;
}

.store-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--white);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.store-location i {
    color: var(--secondary-color);
}

.store-location span {
    position: relative;
    display: inline-block;
    animation: locationPulse 2.5s infinite;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

@keyframes locationPulse {
    0% {
        transform: translateY(0);
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        transform: translateY(-2px);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }
    100% {
        transform: translateY(0);
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 61, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 61, 0, 0);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
        width: 100%;
        overflow-x: hidden;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .location-badge {
        margin-bottom: 1.5rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        gap: 0.5rem;
        margin: 1.5rem 0;
    }

    .stat .number {
        font-size: 2rem;
    }

    .stat .label {
        font-size: 0.8rem;
    }

    .quick-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.8rem;
        margin: 1rem 0;
    }

    .info-item {
        width: 100%;
        justify-content: center;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .sale-badge {
        width: 100px;
        height: 100px;
        padding: 0.8rem;
    }

    .sale-text {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }

    .satisfaction-guarantee {
        font-size: 0.9rem;
        text-align: center;
        margin-top: 1.5rem;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stat {
        margin-bottom: 1rem;
    }
}

