/* Delivery Section Styles */
.delivery {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    text-align: center;
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Delivery Card Styles */
.delivery-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #eb5b5b, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.delivery-card:hover::before {
    transform: scaleX(1);
}

/* Delivery Icon Styles */
.delivery-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #eb5b5b 0%, #ff6b6b 100%);
    color: white;
}

.delivery-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

/* Delivery Content Styles */
.delivery-content h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.delivery-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.delivery-content span {
    display: inline-block;
    background: linear-gradient(135deg, #eb5b5b 0%, #ff6b6b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Delivery Phone Number */
.delivery-phone {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #eb5b5b;
    margin-top: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.delivery-phone:hover {
    color: #d63447;
    transform: scale(1.05);
}

/* Mobile - 468px */
@media (max-width: 468px) {
    .delivery {
        padding: 30px 10px;
    }
    
    .delivery-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .delivery-card {
        padding: 20px;
        min-height: 240px;
    }
    
    .delivery-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .delivery-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .delivery-content h3 {
        font-size: 1.3rem;
    }
    
    .delivery-content p {
        font-size: 0.9rem;
    }
    
    .delivery-content span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .delivery-phone {
        font-size: 1.5rem;
    }
}

/* PC - 1600px */
@media (min-width: 1600px) {
    .delivery {
        padding: 80px 20px;
    }
    
    .delivery-container {
        max-width: 1400px;
        gap: 40px;
    }
    
    .delivery-card {
        padding: 40px;
        min-height: 320px;
    }
    
    .delivery-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .delivery-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .delivery-content h3 {
        font-size: 1.8rem;
    }
    
    .delivery-content p {
        font-size: 1.1rem;
    }
    
    .delivery-content span {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .delivery-phone {
        font-size: 2.2rem;
    }
}
