/* ===== DELIVERY SERVICE SECTION ===== */
.delivery-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--white);
}

.delivery-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.delivery-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.delivery-title {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    text-align: left;
}

.delivery-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    text-align: left;
}

.delivery-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.media-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-delivery-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-delivery-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-delivery-whatsapp i {
    font-size: 24px;
}