/* Vouchers Page - Modern Luxury Style */

/* Hero Section */
.vouchers-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    color: white;
}

.vouchers-hero .hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vouchers-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
}

.badge-icon {
    width: 24px;
    height: 24px;
    color: #FC3130;
}

/* Membership Section */
.membership-section {
    padding: 6rem 0;
    background: #0f0f0f;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Card Container */
.membership-card {
    perspective: 1000px;
    position: relative;
}

/* Card Inner */
.card-inner {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membership-card:hover .card-inner {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
}

/* Card Header - The actual card design */
.card-header {
    position: relative;
    width: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1.5 / 1;
}

/* Silver */
.membership-card.silver .card-header {
    background: linear-gradient(135deg, #8e9eab 0%, #eef2f3 50%, #8e9eab 100%);
    color: #1a1a1a;
}

/* Gold */
.membership-card.gold .card-header {
    background: linear-gradient(135deg, #c9a227 0%, #f4e5b1 50%, #c9a227 100%);
    color: #1a1a1a;
}

/* Black */
.membership-card.black .card-header {
    background: linear-gradient(135deg, #000000 0%, #2d2d2d 50%, #000000 100%);
    color: #ffffff;
}

/* Metallic Effect */
.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

/* Enhanced shine for Silver card */
.membership-card.silver .card-header::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

/* Enhanced shine for Gold card */
.membership-card.gold .card-header::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

@keyframes shine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Card Top Row */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.discount-tag {
    background: #FC3130;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(252, 49, 48, 0.4);
}

/* Card Bottom Row */
.card-bottom {
    position: relative;
    z-index: 1;
}

.card-value {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.card-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Body */
.card-body {
    padding: 2rem;
    background: #1a1a1a;
}

/* Hours Display */
.hours-display {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border: 2px solid #3a3a3a;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.membership-card.silver .hours-display {
    border-color: #8e9eab;
}

.membership-card.gold .hours-display {
    border-color: #c9a227;
}

.membership-card.black .hours-display {
    border-color: #d4af37;
}

.hours-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hours-value {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.membership-card.gold .hours-value {
    color: #c9a227;
}

.membership-card.black .hours-value {
    color: #d4af37;
}

.hours-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* Benefits */
.benefits-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.benefit-icon {
    width: 18px;
    height: 18px;
    color: #FC3130;
    flex-shrink: 0;
}

.membership-card.gold .benefit-icon {
    color: #c9a227;
}

.membership-card.black .benefit-icon {
    color: #d4af37;
}

/* Pricing */
.pricing-box {
    background: #0f0f0f;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.original-price {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 1rem;
}

.sale-price {
    color: white;
    font-size: 2rem;
    font-weight: 900;
}

.membership-card.gold .sale-price {
    color: #c9a227;
}

.membership-card.black .sale-price {
    color: #d4af37;
}

.savings-amount {
    color: #FC3130;
    font-weight: 700;
    font-size: 1.125rem;
}

.membership-card.gold .savings-amount {
    color: #c9a227;
}

.membership-card.black .savings-amount {
    color: #d4af37;
}

/* Purchase Button */
.purchase-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #FC3130 0%, #d42a29 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.purchase-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(252, 49, 48, 0.4);
}

.membership-card.gold .purchase-btn {
    background: linear-gradient(135deg, #c9a227 0%, #a88620 100%);
    color: #1a1a1a;
}

.membership-card.gold .purchase-btn:hover {
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
}

.membership-card.black .purchase-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000000;
}

.membership-card.black .purchase-btn:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FC3130;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(252, 49, 48, 0.5);
    z-index: 10;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #FC3130;
}

.benefit-card .benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card .benefit-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Terms Section */
.terms-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.terms-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.terms-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.terms-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FC3130;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vouchers-hero {
        padding: 6rem 0 4rem;
    }

    .vouchers-hero .hero-title {
        font-size: 2rem;
    }

    .vouchers-hero .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badges {
        gap: 1rem;
    }

    .hero-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .membership-section {
        padding: 4rem 0;
    }

    .benefits-section,
    .terms-section,
    .cta-section {
        padding: 4rem 0;
    }

    .benefits-section .section-title,
    .terms-section .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .card-value {
        font-size: 2.5rem;
    }

    .hours-value {
        font-size: 2rem;
    }

    .sale-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .vouchers-hero .hero-title {
        font-size: 1.75rem;
    }

    .card-header {
        height: 180px;
        padding: 1.5rem;
    }

    .tier-name {
        font-size: 1.25rem;
    }

    .discount-tag {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .card-value {
        font-size: 2rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .hours-value {
        font-size: 1.75rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }

    .sale-price {
        font-size: 1.25rem;
    }
}

