/* pricing.css - modern and enhanced styles */

/* Add at the top of the file */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #f8f9fa 50%);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Packages Section */
.packages-section {
    background: #f8f9fa;
    position: relative;
    padding: 100px 0;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top left, transparent 49%, #f8f9fa 50%);
}

/* Modern Card Styles */
.modern-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(52, 152, 219, 0.08);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(52, 152, 219, 0.2);
}

.modern-card:hover::before {
    opacity: 1;
}

.modern-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.modern-card-hours {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
}

.modern-card-hours i {
    color: #3498db;
}

.modern-card-price {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    justify-content: center;
    text-align: center;
}

.modern-card-price::before {
    content: '';
}

.modern-card-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modern-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.modern-card-btn:hover::before {
    transform: translateX(0);
}

/* Popular Card Styles */
.popular-card {
    border: 2px solid #3498db;
    transform: scale(1.05);
    z-index: 1;
    animation: floatUpDown 2.5s ease-in-out infinite alternate;
    padding-top: 2.7rem;
}

@keyframes floatUpDown {
    0% {
        transform: scale(1.05) translateY(20px);
    }
    100% {
        transform: scale(1.05) translateY(-20px);
    }
}

.modern-badge {
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: -0.02rem;
    left: -1.2rem;
    transform: rotate(-10deg);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.popular-card .modern-card-title {
    margin-top: 1.6rem;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    position: relative;
    padding: 80px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    min-width: 260px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(52, 152, 219, 0.2);
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(52, 152, 219, 0.1);
}

/* Policy Section */
.policy-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.policy-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(52, 152, 219, 0.2);
}

.policy-card:hover::before {
    opacity: 1;
}

.policy-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(52, 152, 219, 0.1);
    margin-left: auto;
    margin-right: auto;
}

/* Payment Method Styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method-btn {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    background: white;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-method-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.05), rgba(46, 204, 113, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-method-btn:hover {
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.payment-method-btn:hover::before {
    opacity: 1;
}

.payment-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(52, 152, 219, 0.1);
}

.payment-info h6 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
}

.payment-info p {
    margin: 0.25rem 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* Form Styles */
.form-control {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Stripe Card Element Styles */
#card-element {
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
}

#card-element:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
}

#stripeError {
    color: #dc3545;
    margin: 1rem 0;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Modal Styles */
.modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-body {
    padding: 1.5rem;
}

.modal-title {
    font-weight: 700;
    color: #2c3e50;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .modern-card {
        margin-bottom: 2rem;
    }
    
    .policy-card {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        min-width: 100%;
    }
    
    .popular-card {
        transform: none;
    }
    
    .popular-card:hover {
        transform: translateY(-10px);
    }

    .modal-content {
        margin: 1rem;
    }
}

/* Modern Navbar Glassmorphism Styles */
.modern-navbar {
    background: rgba(30, 34, 45, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s, box-shadow 0.3s;
    z-index: 1000;
    padding: 1rem 0;
}

.modern-navbar .navbar-brand {
    color: #fff !important;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    gap: 0.5rem;
}

.modern-navbar .navbar-brand img {
    height: 32px;
    width: auto;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.modern-navbar .navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.modern-navbar .navbar-nav .nav-link.active {
    color: #ebb884 !important;
    background: rgba(235, 184, 132, 0.18);
    box-shadow: 0 2px 8px rgba(235, 184, 132, 0.08);
}

.modern-navbar .navbar-nav .nav-link:hover {
    color: #ebb884 !important;
    background: rgba(235, 184, 132, 0.1);
}

.modern-navbar .navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.modern-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.modern-navbar .navbar-toggler:hover {
    background: rgba(235, 184, 132, 0.1);
    border-radius: 0.5rem;
}

/* Add styles for the hamburger menu lines */
.modern-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .modern-navbar {
        background: rgba(30, 34, 45, 0.95);
        backdrop-filter: blur(18px);
        padding: 0.75rem 0;
    }
    
    .modern-navbar .navbar-brand {
        font-size: 1.1rem;
    }
    
    .modern-navbar .navbar-collapse {
        background: rgba(30, 34, 45, 0.98);
        border-radius: 1rem;
        padding: 1rem;
        margin-top: 0.75rem;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
        border: 1px solid rgba(255,255,255,0.08);
    }
    
    .modern-navbar .navbar-nav {
        padding: 0.5rem;
    }
    
    .modern-navbar .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1.5rem;
        text-align: center;
        border-radius: 0.75rem;
    }
    
    .modern-navbar .navbar-nav .nav-link.active {
        background: rgba(235, 184, 132, 0.15);
    }
    
    .modern-navbar .navbar-nav .nav-link:hover {
        background: rgba(235, 184, 132, 0.1);
    }
}

@media (max-width: 576px) {
    .modern-navbar {
        padding: 0.5rem 0;
    }
    
    .modern-navbar .navbar-brand {
        font-size: 1rem;
    }
    
    .modern-navbar .navbar-collapse {
        margin-top: 0.5rem;
        padding: 0.75rem;
    }
    
    .modern-navbar .navbar-nav .nav-link {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}

.modern-divider {
    position: relative;
    width: 100%;
    max-width: 340px;
    height: 6px;
    margin: 0 auto;
    border-radius: 3px;
    background: linear-gradient(90deg, #ebb884 0%, #fff 30%, #fff 70%, #ebb884 100%);
    box-shadow: 0 4px 24px 0 rgba(235, 184, 132, 0.18), 0 0 12px 2px #ebb88433;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-divider i {
    font-size: 1.6rem;
    color: #ebb884;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(235, 184, 132, 0.10);
    padding: 0.25rem 0.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Fallback icon if Material Design Icons fails */
.modern-divider::after {
    content: '•';
    font-family: Arial, sans-serif;
    font-size: 2rem;
    color: #ebb884;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(235, 184, 132, 0.10);
    padding: 0.25rem 0.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 1;
    opacity: 0;
}

.payment-details {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 12px rgba(52, 152, 219, 0.04);
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid #ececec;
    font-size: 1.08rem;
    gap: 1rem;
}
.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.detail-item .label {
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.detail-item .value {
    font-weight: 600;
    color: #3498db;
    font-size: 1.12rem;
    background: #eaf6fb;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    min-width: 80px;
    text-align: right;
    box-shadow: 0 1px 4px rgba(52, 152, 219, 0.06);
}

.btn-primary {
    background: linear-gradient(90deg, #ebb884 0%, #3498db 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.10);
    transition: background 0.4s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    left: -75%;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
    pointer-events: none;
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(90deg, #3498db 0%, #ebb884 100%);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.18);
    transform: scale(1.045);
}

.btn-primary:hover::before, .btn-primary:focus::before {
    left: 120%;
}

/* Secure Payment Badge */
.secure-payment-badge {
    position: relative;
    font-size: 0.9rem;
    color: #2c3e50;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border: 1px solid rgba(46, 204, 113, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 180px;
}

.secure-payment-badge .badge-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secure-payment-badge i {
    color: #2ecc71;
    font-size: 1.1rem;
    animation: shieldPulse 2s infinite;
}

.secure-payment-badge .badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(52, 152, 219, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secure-payment-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.15);
}

.secure-payment-badge:hover .badge-glow {
    opacity: 1;
}

/* Pulse Animation */
@keyframes shieldPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Enhanced hours pill */
.enhanced-hours-pill {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #eaf6fb 0%, #d1f2eb 100%);
    color: #3498db;
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
    font-weight: 600;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.08);
    margin-bottom: 1.2rem;
    gap: 0.5rem;
    border: 1px solid #e0e0e0;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.enhanced-hours-pill .hours-icon {
    font-size: 1.3rem;
    color: #2ecc71;
    margin-right: 0.4rem;
}

/* Enhanced price */
.enhanced-price {
    font-size: 2.7rem;
    font-weight: 900;
    background: linear-gradient(90deg, #3498db 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 4px 16px rgba(52, 152, 219, 0.10);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}
.enhanced-price .currency {
    font-size: 2.1rem;
    font-weight: 900;
    color: #2ecc71;
    -webkit-text-fill-color: #2ecc71;
    text-fill-color: #2ecc71;
    margin-left: 0.18em;
    margin-right: 0;
    line-height: 1;
    vertical-align: middle;
}
.enhanced-price .price-value {
    font-size: 2.7rem;
    font-weight: 900;
}

/* Enhanced badge */
.enhanced-badge {
    background: linear-gradient(90deg, #f9d423 0%, #ff4e50 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.5rem 1.7rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 78, 80, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%) rotate(-7deg);
    animation: badgePulse 2s infinite;
    z-index: 2;
}
.enhanced-badge i {
    font-size: 1.2rem;
    color: #fff;
}
@keyframes badgePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 78, 80, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 78, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 78, 80, 0); }
}

/* Enhanced select button */
.enhanced-btn {
    background: linear-gradient(90deg, #3498db 0%, #2ecc71 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.10);
    transition: background 0.4s, box-shadow 0.3s, transform 0.2s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1.05rem;
    padding: 1rem 2rem;
}
.enhanced-btn:hover, .enhanced-btn:focus {
    background: linear-gradient(90deg, #2ecc71 0%, #3498db 100%);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.18);
    transform: scale(1.045);
}

/* Ribbon badge for Most Popular */
.ribbon-badge {
    position: absolute;
    top: 18px;
    left: -42px;
    background: linear-gradient(90deg, #f9d423 0%, #ff4e50 100%);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    padding: 0.6rem 6.2rem 0.6rem 2.7rem;
    border-radius: 8px 120px 120px 8px;
    box-shadow: 0 6px 24px 0 rgba(255, 78, 80, 0.18);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transform: rotate(-18deg);
    z-index: 3;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(255, 78, 80, 0.10);
    overflow: visible;
}
.ribbon-badge i {
    font-size: 1.3rem;
    color: #fff;
    margin-right: 0.4rem;
}
.ribbon-badge::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #ff4e50 60%, #f9d423 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(255, 78, 80, 0.10);
    z-index: -1;
    transform: rotate(8deg);
}

.card-header-badge {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f9d423 0%, #ff4e50 100%);
    color: #fff;
    font-size: 1.12rem;
    font-weight: 800;
    padding: 0.7rem 0;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 2px 12px 0 rgba(255, 78, 80, 0.10);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(255, 78, 80, 0.10);
    margin-bottom: 0;
    margin-top: 0;
    gap: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
}
.card-header-badge i {
    font-size: 1.3rem;
    color: #fff;
    margin-right: 0.4rem;
}

/* Enhanced Selected Package Summary */
.stripe-summary-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(52, 152, 219, 0.15);
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.08);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.stripe-summary-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.selected-package-summary {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.package-icon {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.15);
}

.package-icon i {
    font-size: 28px;
    color: #fff;
}

.package-details {
    flex: 1;
}

.package-name {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-name::before {
    content: '\F0C1';
    font-family: 'Material Design Icons';
    font-size: 1.2rem;
    color: #3498db;
}

.package-info {
    display: flex;
    gap: 1.5rem;
    color: #6c757d;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.package-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    font-weight: 600;
}

.package-hours::before {
    content: '\F0951';
    font-family: 'Material Design Icons';
    font-size: 1.1rem;
    color: #2ecc71;
}

.package-price {
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(90deg, #3498db 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 1.1rem;
}

/* Policy Agreement Text */
.policy-agreement {
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(52, 152, 219, 0.03);
    border: 1px solid rgba(52, 152, 219, 0.08);
}

.policy-agreement small {
    font-size: 0.85rem;
    line-height: 1.4;
}

.policy-agreement i {
    color: #3498db;
    font-size: 1rem;
    vertical-align: -2px;
}

.policy-agreement a {
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s ease;
}

.policy-agreement a:hover {
    color: #2980b9;
    text-decoration: underline !important;
}
