/* =====================================================
   HOME PAGE COMPONENTS
   ===================================================== */

/* ===== HOME HERO ===== */
.iyeg-home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.iyeg-home-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.iyeg-home-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: var(--iyeg-font-size-xs);
    letter-spacing: 0.125rem;
    z-index: 10;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: opacity var(--iyeg-transition-base);
}

.iyeg-home-hero__scroll:hover {
    opacity: 1;
}

.iyeg-home-hero__scroll-arrow {
    display: block;
    font-size: var(--iyeg-font-size-md);
    color: var(--iyeg-active-green);
    animation: up-down 1s ease-in-out infinite alternate;
}

/* ===== MODELS BAR ===== */
.iyeg-models-bar {
    background-color: #0a0a0a;
    padding: 3rem 5%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.iyeg-models-bar__content {
    max-width: 800px;
}

.iyeg-models-bar__title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: var(--iyeg-font-size-xl);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.iyeg-models-bar__subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: var(--iyeg-font-size-md);
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.iyeg-models-bar__subtitle-2 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: var(--iyeg-font-size-base);
    color: #ffffff;
    opacity: 0.7;
}

/* ===== PRODUCT SHOWCASE ===== */
.iyeg-product-showcase {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.iyeg-product-showcase__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.iyeg-product-showcase__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.iyeg-product-showcase__content {
    position: absolute;
    bottom: 4rem;
    left: 8%;
    z-index: 3;
    animation: iyegFadeInUp 0.8s ease-out;
}

.iyeg-product-showcase__title {
    font-family: "Barlow Semi Condensed", "Inter", sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.iyeg-product-showcase__subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
    color: #ffffff;
    margin-top: 0.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.iyeg-product-showcase__buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.iyeg-product-showcase__btn {
    display: inline-block;
    padding: 0.625rem 2rem;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: var(--iyeg-font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--iyeg-transition-base);
}

.iyeg-product-showcase__btn:hover {
    background: #ffffff;
    color: #000000;
}

.iyeg-product-showcase__btn--brochure {
    border-color: rgba(255, 255, 255, 0.5);
}

.iyeg-product-showcase__btn--brochure:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
}

/* ===== DEALER SECTION ===== */
.iyeg-dealer-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.iyeg-dealer-section__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.iyeg-dealer-section__box {
    position: absolute;
    bottom: 4rem;
    left: 8%;
    max-width: 420px;
    padding: 2rem 2.5rem;
    z-index: 3;
    animation: iyegFadeInUp 0.8s ease-out;
}

.iyeg-dealer-section__title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.iyeg-dealer-section__description {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: var(--iyeg-font-size-sm);
    color: #ffffff;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.iyeg-dealer-section__btn {
    display: inline-block;
    padding: 0.625rem 2rem;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: var(--iyeg-font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--iyeg-transition-base);
}

.iyeg-dealer-section__btn:hover {
    background: #ffffff;
    color: #000000;
}

/* ===== LOGO MARQUEE ===== */
.iyeg-logo-marquee {
    background-color: #1a1a1a;
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
}

.iyeg-logo-marquee__track {
    display: flex;
    gap: 4rem;
    animation: iyegMarqueeScroll linear infinite;
    width: max-content;
}

.iyeg-logo-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity var(--iyeg-transition-base);
}

.iyeg-logo-marquee__item:hover {
    opacity: 1;
}

.iyeg-logo-marquee__item img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5);
    transition: filter var(--iyeg-transition-base);
}

.iyeg-logo-marquee__item:hover img {
    filter: grayscale(0) brightness(1);
}

@keyframes iyegMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .iyeg-product-showcase__title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .iyeg-product-showcase__buttons {
        gap: 1rem;
    }
    
    .iyeg-dealer-section__box {
        max-width: 350px;
        padding: 1.5rem 2rem;
    }
    
    .iyeg-logo-marquee__item img {
        height: 40px;
        max-width: 100px;
    }
    
    .iyeg-logo-marquee__track {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .iyeg-home-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .iyeg-models-bar {
        padding: 2rem 5%;
        min-height: 150px;
    }
    
    .iyeg-models-bar__title {
        font-size: var(--iyeg-font-size-lg);
    }
    
    .iyeg-models-bar__subtitle {
        font-size: var(--iyeg-font-size-base);
    }
    
    .iyeg-models-bar__subtitle-2 {
        font-size: var(--iyeg-font-size-sm);
    }
    
    .iyeg-product-showcase {
        height: 70vh;
        min-height: 500px;
    }
    
    .iyeg-product-showcase__content {
        bottom: 3rem;
        left: 5%;
    }
    
    .iyeg-product-showcase__title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .iyeg-product-showcase__subtitle {
        font-size: var(--iyeg-font-size-sm);
    }
    
    .iyeg-product-showcase__btn {
        padding: 0.5rem 1.5rem;
        font-size: var(--iyeg-font-size-xs);
    }
    
    .iyeg-dealer-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .iyeg-dealer-section__box {
        bottom: 3rem;
        left: 5%;
        max-width: 300px;
        padding: 1.25rem 1.5rem;
    }
    
    .iyeg-dealer-section__title {
        font-size: var(--iyeg-font-size-md);
    }
    
    .iyeg-dealer-section__description {
        font-size: var(--iyeg-font-size-xs);
    }
    
    .iyeg-dealer-section__btn {
        padding: 0.5rem 1.5rem;
        font-size: var(--iyeg-font-size-xs);
    }
    
    .iyeg-logo-marquee {
        padding: 1.5rem 0;
    }
    
    .iyeg-logo-marquee__item img {
        height: 30px;
        max-width: 80px;
    }
    
    .iyeg-logo-marquee__track {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .iyeg-home-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .iyeg-home-hero__scroll {
        font-size: 0.625rem;
        bottom: 1.5rem;
    }
    
    .iyeg-models-bar {
        padding: 1.5rem 5%;
        min-height: 120px;
    }
    
    .iyeg-models-bar__title {
        font-size: var(--iyeg-font-size-md);
        letter-spacing: 0.1em;
    }
    
    .iyeg-models-bar__subtitle {
        font-size: var(--iyeg-font-size-sm);
    }
    
    .iyeg-models-bar__subtitle-2 {
        font-size: var(--iyeg-font-size-xs);
    }
    
    .iyeg-product-showcase {
        height: 60vh;
        min-height: 400px;
    }
    
    .iyeg-product-showcase__content {
        bottom: 2rem;
        left: 5%;
        right: 5%;
    }
    
    .iyeg-product-showcase__title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .iyeg-product-showcase__subtitle {
        font-size: var(--iyeg-font-size-xs);
    }
    
    .iyeg-product-showcase__buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .iyeg-product-showcase__btn {
        width: 100%;
        text-align: center;
        padding: 0.625rem;
        font-size: var(--iyeg-font-size-xs);
    }
    
    .iyeg-dealer-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .iyeg-dealer-section__box {
        bottom: 2rem;
        left: 5%;
        right: 5%;
        max-width: none;
        padding: 1rem 1.25rem;
    }
    
    .iyeg-dealer-section__title {
        font-size: var(--iyeg-font-size-base);
    }
    
    .iyeg-dealer-section__btn {
        width: 100%;
        text-align: center;
    }
    
    .iyeg-logo-marquee {
        padding: 1rem 0;
    }
    
    .iyeg-logo-marquee__item img {
        height: 25px;
        max-width: 60px;
    }
    
    .iyeg-logo-marquee__track {
        gap: 1.5rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .iyeg-home-hero__scroll-arrow {
        animation: none;
    }
    
    .iyeg-logo-marquee__track {
        animation: none;
    }
    
    .iyeg-product-showcase__content {
        animation: none;
    }
    
    .iyeg-dealer-section__box {
        animation: none;
    }
}