/* Pickup Banner Popup Styles */
.pickup-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pickup-banner-overlay.show {
    opacity: 1;
    visibility: visible;
}

.pickup-banner-modal {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    position: relative;
}

.pickup-banner-overlay.show .pickup-banner-modal {
    transform: scale(1) translateY(0);
}

.pickup-banner-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.pickup-banner-close:hover {
    background: white;
    transform: scale(1.1);
}

.pickup-banner-content {
    display: flex;
    min-height: 400px;
}

.pickup-banner-image {
    flex: 1;
    background: linear-gradient(135deg, rgba(91, 161, 122, 0.3), rgba(40, 167, 69, 0.0)), url(../images/IMG_3441.JPG);
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.pickup-banner-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pickup-banner-title {
    color: #5ba17a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pickup-banner-subtitle {
    color: #28a745;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pickup-banner-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pickup-banner-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pickup-banner-features li {
    color: #495057;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.pickup-banner-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 16px;
}

.pickup-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pickup-banner-btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pickup-banner-btn-primary {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.pickup-banner-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
    color: white;
    text-decoration: none;
}

.pickup-banner-btn-secondary {
    background: transparent;
    color: #5ba17a;
    border: 2px solid #5ba17a;
}

.pickup-banner-btn-secondary:hover {
    background: #5ba17a;
    color: white;
    text-decoration: none;
}

.pickup-banner-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #28a745;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pickup-banner-modal {
        width: 95%;
        margin: 20px;
    }
    
    .pickup-banner-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .pickup-banner-image {
        min-height: 200px;
        order: 1;
    }
    
    .pickup-banner-text {
        order: 2;
        padding: 30px 25px;
    }
    
    .pickup-banner-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .pickup-banner-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .pickup-banner-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .pickup-banner-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .pickup-banner-btn {
        text-align: center;
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pickup-banner-text {
        padding: 25px 20px;
    }
    
    .pickup-banner-title {
        font-size: 20px;
    }
    
    .pickup-banner-subtitle {
        font-size: 15px;
    }
    
    .pickup-banner-description {
        font-size: 13px;
    }
}

/* Animation for the banner icon */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.pickup-banner-icon {
    animation: bounce 2s infinite;
}