/* ============================================
   Commerzy - Dropship 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: 30px;
    opacity: 0.9;
}

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

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

/* ========== BANNER SECTION ========== */
.banner-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.banner-section .banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ========== INTRO SECTION ========== */
.intro-section {
    padding: 80px 0;
}

.intro-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--color-primary);
}

.intro-section .intro-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #777777;
    font-size: 17px;
}

.intro-section .intro-content p {
    margin-bottom: 20px;
}

/* ========== PROBLEMS SECTION ========== */
.problems-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.problems-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.problems-section .section-title.text-danger {
    color: #a80000;
}

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

.problem-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.problem-item .problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(168, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-item .problem-icon i {
    font-size: 28px;
    color: #a80000;
}

.problem-item h3 {
    color: #a80000;
    font-size: 18px;
    margin-bottom: 15px;
}

.problem-item p {
    color: #777777;
    line-height: 1.7;
    margin: 0;
}

/* ========== WARNING SECTION ========== */
.warning-section {
    background: rgba(168, 0, 0, 0.05);
    padding: 80px 0;
    text-align: center;
}

.warning-section .section-title {
    font-size: 32px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.warning-section .section-title.text-danger {
    color: #a80000;
}

/* ========== SYSTEM SECTION ========== */
.system-section {
    padding: 80px 0;
    background: #fff;
}

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

.system-section .system-image {
    text-align: center;
    margin-bottom: 40px;
}

.system-section .system-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.cta-center {
    text-align: center;
}

.btn {
    display: inline-block;
    background: #99ca3d;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #2c3e50;
}

.btn-primary {
    background: #99ca3d;
}

/* ========== HOW IT WORKS SECTION ========== */
.howitworks-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.howitworks-section .diagram-image {
    text-align: center;
    margin-bottom: 50px;
}

.howitworks-section .diagram-image img {
    max-width: 100%;
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* Steps List */
.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.step-item:not(:last-child):after {
    content: '';
    position: absolute;
    left: 50px;
    bottom: -30px;
    width: 2px;
    height: 30px;
    background: #99ca3d;
}

.step-item:last-child:after {
    display: none;
}

.step-item .step-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: #99ca3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item .step-icon i {
    color: #fff;
    font-size: 22px;
}

.step-item .step-content h3 {
    color: #99ca3d;
    font-size: 20px;
    margin-bottom: 10px;
}

.step-item .step-content p {
    color: #777777;
    line-height: 1.7;
    margin: 0;
}

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

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

/* Feature Block */
.feature-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-block-image {
    flex: 0 0 250px;
    text-align: center;
}

.feature-block-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.feature-block-content {
    flex: 1;
}

.feature-block-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-block-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    list-style: disc;
    color: #777777;
    line-height: 1.7;
}

.feature-block-content ul li:last-child {
    margin-bottom: 0;
}

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

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

.video-section .section-subtitle {
    text-align: center;
    color: #777777;
    font-size: 17px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.video-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-feature-item i {
    font-size: 20px;
    color: #99ca3d;
}

.video-feature-item span {
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

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

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

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

.benefit-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-item .benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(153, 202, 61, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-item .benefit-icon i {
    font-size: 28px;
    color: #99ca3d;
}

.benefit-item h3 {
    color: #99ca3d;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.benefit-item p {
    color: #777777;
    line-height: 1.7;
    margin: 0;
}

/* ========== 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;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-block {
        flex-direction: column;
        text-align: center;
    }

    .feature-block.reverse {
        flex-direction: column;
    }

    .feature-block-image {
        flex: none;
    }

    .feature-block-content ul li {
        text-align: left;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-item .step-icon {
        margin: 0 auto;
    }

    .step-item:not(:last-child):after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@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;
    }

    .intro-section,
    .problems-section,
    .warning-section,
    .system-section,
    .howitworks-section,
    .features-section,
    .video-section,
    .benefits-section {
        padding: 50px 0;
    }

    .intro-section .section-title,
    .problems-section .section-title,
    .warning-section .section-title,
    .system-section .section-title,
    .howitworks-section .section-title,
    .features-section .section-title,
    .video-section .section-title,
    .benefits-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .video-section .section-subtitle {
        font-size: 15px;
    }

    .video-features {
        gap: 15px;
    }

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

    .warning-section .section-title {
        font-size: 22px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .feature-block {
        padding: 20px;
    }

    .step-item {
        padding: 20px;
    }

    .step-item .step-content h3 {
        font-size: 18px;
    }

    .benefit-item {
        padding: 25px;
    }
}

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

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

    .problem-item {
        padding: 20px;
    }

    .problem-item .problem-icon {
        width: 50px;
        height: 50px;
    }

    .problem-item .problem-icon i {
        font-size: 22px;
    }

    .problem-item h3 {
        font-size: 16px;
    }

    .benefit-item .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-item .benefit-icon i {
        font-size: 22px;
    }

    .benefit-item h3 {
        font-size: 16px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
