/* --- DELIVERY SECTION STYLES --- */

#oppa-order {
    background-color: #E11E26;
    /* Primary red color */
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Decorative circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -80px;
}

/* Container */
#oppa-order .order-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 60px;
}

/* Text Content */
#oppa-order .order-text {
    margin-bottom: 60px;
}

#oppa-order .order-badge {
    background-color: #B91A21;
    /* Slightly darker red */
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

#oppa-order .order-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

#oppa-order .order-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    font-weight:lighter;
}

/* Cards Container */
#oppa-order .order-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Card */
#oppa-order .order-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    width: 300px;
    text-align: center;
    /* This should already be here */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Add this */
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#oppa-order .order-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Glass effect for browsers that support it */
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
    #oppa-order .glass-effect {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    #oppa-order .glass-effect {
        background: rgba(255, 255, 255, 0.25);
    }
}

/* Card Icon */
#oppa-order .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#oppa-order .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card Text */
#oppa-order .card-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

#oppa-order .card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0 0 25px 0;
}

/* Card Buttons */
#oppa-order .card-btn {
    display: inline-block;
    /* Change from block to inline-block */
    width: auto;
    /* Change from 100% to auto */
    min-width: 200px;
    /* Set a minimum width */
    padding: 12px 30px;
    /* Adjust padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

#oppa-order .card-btn.primary {
    background-color: white;
    color: #E11E26;
}

#oppa-order .card-btn.primary:hover {
    background-color: #f8f8f8;
    transform: scale(1.02);
}

#oppa-order .card-btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#oppa-order .card-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Yellow highlight for specific words */
#oppa-order .highlight-yellow {
    color: #F8BD13;
    /* Bright yellow */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Optional: Add a gradient yellow for more effect */

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    #oppa-order {
        padding: 60px 20px;
    }

    #oppa-order .order-title {
        font-size: 2.5rem;
    }

    #oppa-order .order-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    #oppa-order .order-cards {
        gap: 20px;
    }

    #oppa-order .order-card {
        width: 100%;
        max-width: 350px;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -50px;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
        bottom: -60px;
        left: -60px;
    }
}

@media (max-width: 480px) {
    #oppa-order .order-title {
        font-size: 2rem;
    }

    #oppa-order .order-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    #oppa-order .order-subtitle {
        font-size: 1rem;
    }

    #oppa-order .order-card {
        padding: 30px 20px;
    }

    #oppa-order .card-title {
        font-size: 1.8rem;
    }
}