body {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.subscription {
    padding: 80px 0;
    position: relative;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.subscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.subscription-head {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 2rem !important;
}

.pricing-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    margin: 2rem 0;
    gap: 20px;
}

.toggle-container {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    width: 300px;
    height: 50px;
}

.toggle-options {
    display: flex;
    position: relative;
    z-index: 2;
    width: 100%;
    align-items: center;
}

.toggle-option {
    flex: 1;
    padding: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    border-radius: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    font-size: 14px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    margin: 0;
}

.toggle-option:hover {
    color: rgba(255, 255, 255, 1);
}

.toggle-option.active {
    color: #764ba2 !important;
    font-weight: 600;
}

.toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: 38px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    z-index: 1;
}

.toggle-slider.yearly {
    left: calc(50% + 0px);
}

.save {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    padding: 8px 16px;
    border-radius: 20px;
    color: #764ba2 !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
    font-size: 12px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.row.price-plan {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.row.price-plan > [class*="col-"] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-plan .card {
    flex: 1 1 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.price-plan .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.price-plan .card:hover::before {
    left: 100%;
}

.price-plan .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.badge {
    position: absolute;
    margin-top: 5px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    z-index: 10;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #764ba2;
    white-space: nowrap;
}

.start-from-badge {
    display: inline-block;
    background: linear-gradient(90deg, #f3f4f8 0%, #e9eafc 100%);
    color: #6c52a0;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.25rem 1.1rem;
    border-radius: 16px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(108, 82, 160, 0.06);
    letter-spacing: 0.5px;
    text-align: left;
    border: 1px solid #ecebfa;
    position: relative;
    left: 0;
}

.price-amount {
    font-size: 3rem !important;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.price-amount-white {
    font-size: 3rem !important;
    font-weight: 800;
    background: linear-gradient(to right, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.card:hover .price-amount {
    transform: scale(1.05);
}

.card:hover .price-amount-white {
    transform: scale(1.05);
}

sup {
    font-size: 1.2rem !important;
    top: -1rem;
    left: -15px;
    color: #6c757d;
}

.price-period {
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-period-white {
    color: #e2e2e2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    padding: 2.5rem 2rem;
    /* min-height: 600px; */
    flex: 1 1 auto;
}

.card-body-subscription {
    padding: 2.5rem 2rem;
    min-height: 600px;
    flex: 1 1 auto;
}

.plan-name {
    color: #764ba2 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.plan-name-yellow {
    color: #ffd700 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.text-yellow {
    color: #ffd700 !important;
}
.text-purple {
    color: #764ba2 !important;
}

.plan-description {
    background: linear-gradient(to right, #764ba2, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    margin: 1.5rem 0;
    line-height: 2;
}

.plan-description-white {
    background: linear-gradient(to right, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    margin: 1.5rem 0;
    line-height: 2;
}

.list-unstyled li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.list-unstyled li:hover {
    background: rgba(255, 193, 7, 0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.list-unstyled li:last-child {
    border-bottom: none;
}

.ti-circle-check {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-text {
    color: rgba(107, 99, 99, 0.5) !important;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
}

.feature-text-white {
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
}


.btn-subscription {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    text-transform: uppercase;
    color: #764ba2;
    font-size: 15px;
    font-weight: bold;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.btn-subscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-subscription:hover::before {
    left: 100%;
}

.btn-subscription:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}


.btn-subscription i {
    margin-right: 10px;
}

.popular-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 179, 0, 0.05) 100%) !important;
    border: 2px solid #ffc107 !important;
    transform: scale(1.03);
    margin-top: -10px;
}

.popular-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.section-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

/* Mobile First - Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .subscription {
        padding: 30px 0;
    }

    .subscription-head {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 1rem !important;
    }

    .section-title {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .lead {
        font-size: 14px;
        margin-top: 1rem !important;
    }

    .toggle-container {
        width: 280px;
        height: 44px;
    }

    .toggle-option {
        font-size: 13px;
        height: 32px;
    }

    .toggle-slider {
        height: 32px;
        top: 6px;
    }

    .save {
        font-size: 11px;
        padding: 6px 12px;
    }

    .price-plan .col-12 {
        margin-bottom: 1.5rem;
    }

    .card-body {
        padding: 1.5rem 1rem;
    }

    .price-amount {
        font-size: 2rem !important;
    }

    .price-amount-white {
        font-size: 2rem !important;
    }

    .plan-name {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .plan-description {
        font-size: 13px;
        margin: 1rem 0;
    }

    .feature-text {
        font-size: 13px;
    }

    .btn-subscription {
        padding: 15px 20px;
        font-size: 12px;
        width: 100%;
        max-width: 200px;
    }

    .popular-card {
        transform: scale(1) !important;
        margin-top: 0;
    }

    .popular-card:hover {
        transform: translateY(-8px) scale(1) !important;
    }

    .badge {
        font-size: 10px;
        /* padding: 6px 12px; */
        top: -12px;
    }

    .start-from-badge {
        font-size: 0.95rem;
        padding: 0.22rem 0.8rem;
    }

    .row.price-plan {
        gap: 1rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .subscription {
        padding: 40px 0;
    }

    .subscription-head {
        font-size: 2.2rem !important;
    }

    .toggle-container {
        width: 290px;
    }

    .toggle-option {
        font-size: 13px;
    }

    .price-amount {
        font-size: 2.3rem !important;
    }

    .price-amount-white {
        font-size: 2.3rem !important;
    }

    .card-body {
        padding: 1.8rem 1.3rem;
    }

    .plan-description {
        font-size: 14px;
    }

    .feature-text {
        font-size: 13px;
    }

    .btn-subscription {
        padding: 12px 24px;
        font-size: 13px;
    }

    .popular-card {
        transform: scale(1.02);
        margin-top: -5px;
    }

    .popular-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .subscription {
        padding: 50px 0;
    }

    .subscription-head {
        font-size: 2.5rem !important;
    }

    .price-plan .col-lg-4 {
        margin-bottom: 2rem;
    }

    .price-amount {
        font-size: 2.8rem !important;
    }

    .price-amount-white {
        font-size: 2.8rem !important;
    }

    .card-body {
        padding: 2rem 1.5rem;
    }

    .popular-card {
        transform: scale(1.03);
        margin-top: -8px;
    }

    .popular-card:hover {
        transform: translateY(-10px) scale(1.03);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .subscription {
        padding: 60px 0;
    }

    .price-amount {
        font-size: 3rem !important;
    }

    .price-amount-white {
        font-size: 3rem !important;
    }

    .card-body {
        padding: 2.2rem 1.8rem;
    }

    .popular-card {
        transform: scale(1.03);
        margin-top: -10px;
    }

    .popular-card:hover {
        transform: translateY(-10px) scale(1.03);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .subscription {
        padding: 80px 0;
    }

    .subscription-head {
        font-size: 3rem !important;
    }

    .price-amount {
        font-size: 3rem !important;
    }

    .price-amount-white {
        font-size: 3rem !important;
    }

    .card-body {
        padding: 2.5rem 2rem;
    }

    .popular-card {
        transform: scale(1.03);
        margin-top: -10px;
    }

    .popular-card:hover {
        transform: translateY(-10px) scale(1.03);
    }
}

/* Landscape orientation for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .subscription {
        padding: 20px 0;
    }

    .subscription-head {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .lead {
        display: none;
    }

    .pricing-toggle-wrapper {
        margin: 1rem 0;
    }

    .toggle-container {
        width: 250px;
        height: 40px;
    }

    .toggle-option {
        height: 28px;
        font-size: 12px;
    }

    .toggle-slider {
        height: 28px;
    }

    .save {
        margin-top: 5px;
        font-size: 10px;
    }

    .card-body {
        padding: 1rem;
    }

    .plan-description {
        font-size: 12px;
        margin: 0.5rem 0;
    }

    .list-unstyled li {
        padding: 0.3rem 0;
    }
}

/* Touch devices - larger tap targets */
@media (pointer: coarse) {
    .toggle-option {
        -webkit-tap-highlight-color: transparent;
    }
    .btn-subscription {
        -webkit-tap-highlight-color: transparent;
    }
}

/* New Success Modal Styles */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 31, 62, 0.7);
    backdrop-filter: blur(8px);
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 1050;
    padding: 1rem;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.success-modal {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transform: scale(0.9);
    animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

@keyframes modalPop {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f1f5f9;
    color: #64748b;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.success-modal-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.success-icon-wrapper {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #868CFF, #4349B2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px -5px rgba(102, 126, 234, 0.4);
}

.success-icon {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.success-modal-title {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.success-modal-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
}

.success-modal-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    width: 100%;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: modalPop 0.35s cubic-bezier(.4,0,.2,1);
}

.success-modal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(102, 126, 234, 0.5);
}

.whatsapp-button {
    /* Inherit all from .success-modal-button */
    display: block;
    width: 100%;
    margin: 0.5rem 0 1rem 0;
    padding: 0.9rem 1.2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.08);
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    animation: modalPop 0.35s cubic-bezier(.4,0,.2,1);
}
.whatsapp-button:hover, .whatsapp-button:focus {
    background: linear-gradient(90deg, #128C7E 0%, #25D366 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    text-decoration: none;
    box-shadow: 0 7px 20px rgba(18, 140, 126, 0.15);
}

@media (max-width: 1400px) {
    .main-heading {
        font-size: 2.25rem;
    }
    .voucher-form {
        padding: 2.5rem;
    }
}
@media (max-width: 1200px) {
    .main-heading {
        font-size: 2rem;
    }
    .voucher-form {
        padding: 2rem;
    }
}
@media (max-width: 992px) {
    .claim-grid {
        grid-template-columns: 1fr;
    }
    .main-heading {
        font-size: 2.25rem;
    }
    .voucher-form {
        margin-top: 3rem;
    }

    .row.price-plan {
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .claim-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .main-heading {
        text-align: center;
        font-size: 2rem;
    }
    .voucher-form {
        padding: 2.5rem;
    }
    .input-row {
        flex-direction: column;
    }
    .premium-claim-container {
        padding: 1rem;
    }
}
@media (max-width: 576px) {
    .main-heading {
        font-size: 1.75rem;
    }
    .voucher-form {
        padding: 2rem 1.5rem;
    }
    .form-title h3 {
        font-size: 1.5rem;
    }
    .form-input,
    .form-select {
        padding: 0.9rem 1rem;
    }
    .submit-button {
        font-size: 1rem;
    }

    .row.price-plan {
        gap: 1rem;
    }
}

.start-from-label {
    background: linear-gradient(90deg, #ffa751 0%, #ffe259 100%);
    border-radius: 20px;
    padding: 4px 16px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 174, 51, 0.15);
    animation: popIn 0.7s cubic-bezier(.68,-0.55,.27,1.55);
    margin-bottom: 0.5rem;
}

.start-from-icon {
    font-size: 1.2rem;
    color: #ffb300;
    margin-right: 0.5rem;
    animation: sparkle 1.5s infinite alternate;
}

.start-from-text {
    color: #b86e00;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

@keyframes popIn {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes sparkle {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.5); }
}

.card-action {
    margin-top: auto;
}
