.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.promotion-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #f0c987, #e6b35c);
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.promotion-header {
    text-align: center;
    margin-bottom: 20px;
}

.promotion-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promotion-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.promotion-discount {
    font-size: 2.2rem;
    color: #e6b35c;
    font-weight: 700;
    margin-bottom: 15px;
}

.promotion-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
    text-align: center;
}

.promotion-features {
    list-style: none;
    margin-bottom: 20px;
}

.promotion-features li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
    color: #555;
    font-size: 0.9rem;
}

.promotion-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e6b35c;
    font-weight: bold;
    font-size: 1.2rem;
}

.promotion-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 12px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.discounted-price {
    font-size: 1.5rem;
    color: #e6b35c;
    font-weight: 700;
}

.promotion-validity {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #f0c987, #e6b35c);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6b35c, #d4a748);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 201, 135, 0.3);
}

/* Gift Vouchers Section */
.vouchers-section {
    background: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.voucher-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.voucher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #f0c987, #e6b35c);
}

.voucher-title {
    font-size: 2rem;
    color: #E0A75E;
    margin-bottom: 20px;
    font-weight: 700;
}

.voucher-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.voucher-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.voucher-option {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.voucher-option:hover {
    border-color: #f0c987;
    background: rgba(240, 201, 135, 0.1);
}

.voucher-service {
    font-size: 1.5rem;
    color: #e6b35c;
    font-weight: 600;
    margin-bottom: 8px;
}

.voucher-duration {
    color: #2c3e50;
    font-weight: 500;
}

.massage-details-link {
    text-align: center;
    margin: 20px 0;
}

.massage-details-link a {
    color: #e6b35c;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.massage-details-link a:hover {
    border-bottom: 1px solid #e6b35c;
}

.price-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.voucher-advantages-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
}

.voucher-image {
    flex: 350px 0 350px;
    height: 225px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    background: #e6b35c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.voucher-image:hover {
    transform: translateY(-5px);
}

.voucher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.voucher-advantages {
    flex: 0 0 350px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.voucher-advantages h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.voucher-advantages ul {
    list-style: none;
    color: #666;
    margin: 0;
    padding: 0;
    text-align: left;
}

.voucher-advantages li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    text-align: center;
}

.voucher-advantages li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e6b35c;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #f0c987, #e6b35c);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 179, 92, 0.3);
}

.contact-details-pop-up h3 {
    text-align: justify;
}

.voucher-pop-up-details ul {
    list-style: none;
    color: #666;
    margin: 0;
    padding: 0;
    text-align: left;
}

.voucher-pop-up-details li {
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    text-align: left;
}

.voucher-pop-up-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e6b35c;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .voucher-advantages-container {
        flex-direction: column;
        gap: 20px;
    }

    .voucher-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .voucher-advantages {
        text-align: center;
    }

    .voucher-advantages ul {
        text-align: left;
        display: inline-block;
    }


    .voucher-advantages-container {
        flex-direction: column;
        gap: 20px;
    }

    /* First voucher image - positioned below advantages */
    .voucher-advantages-container .voucher-image:first-child {
        order: 2;
    }

    /* Advantages section stays first */
    .voucher-advantages {
        order: 1;
        text-align: center;
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Second voucher image - positioned last */
    .voucher-advantages-container .voucher-image:last-child {
        order: 3;
    }
}

@media (max-width: 768px) {
    .promotion-card {
        padding: 30px;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promotion-price {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .promotion-features li {
        text-align: center;
    }

    .voucher-title {
        font-size: 2rem;
    }

    .voucher-card {
        padding: 30px;
    }

    .voucher-options {
        grid-template-columns: 1fr;
    }

    .voucher-image {
        height: 150px;
    }

    .voucher-advantages {
        padding: 20px;
    }

    .voucher-service {
        font-size: 1.2rem;
    }
}