/**
 * Versand & Lieferung Page Stylesheet
 * Evolux Cards - Premium styling voor Versand pagina
 */

/* ===== VERSAND SECTION ===== */
.versand-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.versand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.versand-section .container {
    position: relative;
    z-index: 1;
}

/* ===== INTRO ===== */
.versand-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.versand-intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 400;
}

/* ===== CARDS GRID ===== */
.versand-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.versand-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.versand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.versand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
    border-color: var(--primary-light);
}

.versand-card:hover::before {
    transform: scaleX(1);
}

.versand-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    transition: var(--transition);
}

.versand-card:hover .versand-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.35);
}

.versand-card-icon i {
    font-size: 36px;
    color: white;
}

.versand-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.versand-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.versand-card-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

/* ===== SECTION TITLE ===== */
.versand-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.versand-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

/* ===== DETAILS GRID ===== */
.versand-details {
    margin-bottom: 80px;
}

.versand-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.versand-detail-item {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.versand-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.12);
    border-color: var(--primary-light);
}

.versand-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-gray);
}

.versand-detail-header i {
    font-size: 28px;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
}

.versand-detail-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.versand-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.versand-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.versand-detail-list li i {
    color: var(--primary-color);
    font-size: 14px;
    width: 20px;
    flex-shrink: 0;
}

/* ===== PROCESS STEPS ===== */
.versand-process {
    margin-bottom: 80px;
}

.versand-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.versand-process-step {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    text-align: center;
    position: relative;
}

.versand-process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    z-index: 2;
}

.versand-process-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.versand-process-step:hover .versand-process-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
}

.versand-process-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.versand-process-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.versand-process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 30px;
    opacity: 0.5;
}

/* ===== FAQ SECTION ===== */
.versand-faq {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    margin-top: 40px;
}

.versand-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.versand-faq-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.versand-faq-item:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.versand-faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.versand-faq-item h3 i {
    color: var(--primary-color);
    font-size: 20px;
}

.versand-faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .versand-process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .versand-process-step {
        max-width: 100%;
        width: 100%;
    }
    
    .versand-process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .versand-section {
        padding: 60px 0 80px;
    }
    
    .versand-intro-text {
        font-size: 18px;
    }
    
    .versand-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .versand-card {
        padding: 30px 20px;
    }
    
    .versand-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .versand-card-icon i {
        font-size: 32px;
    }
    
    .versand-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .versand-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .versand-detail-item {
        padding: 25px;
    }
    
    .versand-process-steps {
        gap: 15px;
    }
    
    .versand-process-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .versand-process-content {
        padding: 25px 15px;
    }
    
    .versand-faq {
        padding: 40px 25px;
    }
    
    .versand-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .versand-section {
        padding: 40px 0 60px;
    }
    
    .versand-intro {
        margin-bottom: 40px;
    }
    
    .versand-intro-text {
        font-size: 16px;
    }
    
    .versand-card-title {
        font-size: 20px;
    }
    
    .versand-card-text {
        font-size: 15px;
    }
    
    .versand-section-title {
        font-size: 24px;
    }
    
    .versand-detail-header h3 {
        font-size: 18px;
    }
    
    .versand-process-content h3 {
        font-size: 16px;
    }
    
    .versand-process-content p {
        font-size: 14px;
    }
}
