/* Enhanced 4-Section Layout Styles - Separate File */
.four-sections-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff6b35;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

.section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-left-color: #e55a2b;
}

.section-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.section-card:hover .section-image {
    transform: scale(1.05);
}

.section-badge {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.section-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.section-cta:hover {
    background: #e55a2b;
    transform: translateX(5px);
    color: white;
}

.section-cta::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.section-cta:hover::after {
    transform: translateX(3px);
}

/* Special styling for different sections */
.section-card.free-shipping {
    border-left-color: #28a745;
}

.section-card.free-shipping .section-badge {
    background: #28a745;
}

.section-card.free-shipping .section-cta {
    background: #28a745;
}

.section-card.free-shipping .section-cta:hover {
    background: #218838;
}

.section-card.service {
    border-left-color: #dc3545;
}

.section-card.service .section-badge {
    background: #dc3545;
}

.section-card.service .section-cta {
    background: #dc3545;
}

.section-card.service .section-cta:hover {
    background: #c82333;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .four-sections-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto;
        padding: 0 15px;
    }
    
    .section-card {
        padding: 30px 25px;
    }
    
    .section-image {
        height: 150px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-description {
        font-size: 14px;
    }
}

/* Animation on scroll */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-card {
    animation: slideInUp 0.6s ease-out;
}

.section-card:nth-child(2) {
    animation-delay: 0.1s;
}

.section-card:nth-child(3) {
    animation-delay: 0.2s;
}

.section-card:nth-child(4) {
    animation-delay: 0.3s;
}