/* =============================================
   MODERN HERO SECTION
   E-Shop Style Hero with Text + Image
   ============================================= */

.hero-section {
    padding: 4rem 3rem;
    background:
        linear-gradient(to bottom,
            transparent 0%,
            transparent 30%,
            rgba(17, 24, 39, 0.6) 70%,
            rgba(17, 24, 39, 0.95) 90%,
            var(--bg-primary) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    position: relative;
}

/* Removed overlay - clean architectural look */

.hero-section .container {
    max-width: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
    padding: 0 3rem;
}

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


.hero-title .text-white {
    color: #ffffff;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-title .text-orange {
    color: #fb923c;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(251, 146, 60, 0.5);
    font-weight: 900;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(229, 231, 235, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--secondary), #ea580c);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
}

.btn-hero-cta i {
    transition: transform 0.3s ease;
}

.btn-hero-cta:hover i {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* =============================================
   SERVICES SECTION
   Horizontal Compact Layout
   ============================================= */

.services-section {
    padding: 2rem 3rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.services-section .container {
    max-width: none;
    padding: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: none;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
}

.service-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-icon i {
    font-size: 1.3rem;
    color: white;
}

.service-content {
    text-align: left;
}

.service-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.service-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2.5rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .services-section {
        padding: 1.5rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .service-icon i {
        font-size: 1.1rem;
    }

    .service-content h3 {
        font-size: 0.9rem;
    }

    .service-content p {
        font-size: 0.75rem;
    }
}

/* =============================================
   POSTER SECTION - BELOW SERVICES
   Rounded corner poster display
   ============================================= */

.poster-section {
    padding: 1.5rem 0;
    /* Reduced from 3rem */
    background: var(--bg-primary);
}

.poster-section .container {
    max-width: none;
    padding: 0;
}

.poster-section .poster-slider {
    display: flex;
    width: 100%;
    height: 400px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Poster Item */
.poster-section .poster-item {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.poster-section .poster-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Loading State */
.poster-section .poster-slider-loading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.poster-section .poster-slider-loading p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Responsive Design for Poster */
@media (max-width: 992px) {
    .poster-section {
        padding: 2.5rem 0;
    }

    .poster-section .poster-slider {
        height: 350px;
    }

    .poster-wrapper {
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    .poster-section {
        padding: 2rem 0;
    }

    .poster-section .poster-slider {
        height: 250px;
    }

    .poster-wrapper {
        border-radius: 12px;
    }
}