/* ============================================
   Commerzy - Packing Station Page Styles
   ============================================ */

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(to right, #8cd45f 0%, #0091ac 100%);
    padding: 80px 0;
    color: #fff;
}

.page-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-hero .hero-text {
    flex: 1;
}

.page-hero .hero-text .badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.page-hero .hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero .hero-text p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.page-hero .hero-text p.highlight {
    font-weight: bold;
    font-size: 19px;
}

.page-hero .hero-image {
    flex: 1;
}

.page-hero .hero-image img {
    max-width: 100%;
    height: auto;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 80px 0;
}

.features-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-item h3 {
    color: #0091ac;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-item p {
    color: #666;
    line-height: 1.8;
}

.feature-item ul {
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
    text-align: left;
}

.feature-item ul li {
    margin-bottom: 8px;
}

.feature-image {
    padding-top: 20px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.feature-image img {
    max-width: 200px;
    transition: transform 0.3s ease;
}

/* ========== HIGHLIGHT SECTION ========== */
.highlight-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.highlight-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.highlight-section .feature-item {
    background: #fff;
    text-align: left;
}

/* ========== VIDEO SECTION ========== */
.video-section {
    padding: 80px 0;
}

.video-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.video-container {
    text-align: center;
}

.video-container iframe {
    max-width: 100%;
    border-radius: 12px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .page-hero .hero-text,
    .page-hero .hero-image {
        flex: none;
        max-width: 100%;
    }

    .page-hero .hero-image {
        margin-top: 30px;
    }

    .page-hero .hero-text h1 {
        font-size: 32px;
    }

    .features-grid,
    .features-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
    }

    .page-hero .hero-text h1 {
        font-size: 28px;
    }

    .page-hero .hero-text p {
        font-size: 16px;
    }

    .features-section .section-title,
    .highlight-section .section-title,
    .video-section .section-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .page-hero .hero-text h1 {
        font-size: 24px;
    }

    .page-hero .hero-text .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .feature-item {
        padding: 20px;
    }
}
