/* Get Airtime Page Styles - Updated */
:root {
    --cellc-orange: #ea5b0c;
    --cellc-dark: #000000;
    --cellc-gray: #6B7280;
    --cellc-light-gray: #F3F4F6;
    --cellc-border: #E5E7EB;
    --cellc-white: #FFFFFF;
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--cellc-light-gray);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: var(--cellc-dark);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 35px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--cellc-white);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-icon {
    font-size: 0.7rem;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-trial {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: transparent;
    color: var(--cellc-white);
    border: 1px solid var(--cellc-white);
    border-radius: 6px;
    cursor: pointer;
}

.btn-login, .btn-logout {
    padding: 0.5rem 1.5rem;
    background: var(--cellc-orange);
    color: var(--cellc-white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-primary);
}

.btn-search, .btn-cart {
    background: transparent;
    border: none;
    color: var(--cellc-white);
    font-size: 1.2rem;
    cursor: pointer;
}

.d-none {
    display: none !important;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
}

/* Step Sections */
.step-section {
    display: none;
}

.step-section.active {
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--cellc-dark);
}

/* Recharge Options */
.recharge-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.option-btn {
    padding: 1rem 2rem;
    background: var(--cellc-white);
    border: 2px solid var(--cellc-border);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.option-btn.active {
    background: var(--cellc-dark);
    color: var(--cellc-white);
    border-color: var(--cellc-dark);
}

.option-btn:hover:not(.active) {
    border-color: var(--cellc-dark);
}

/* Phone Number Section */
.phone-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.input-label {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--cellc-dark);
}

.input-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.phone-input {
    flex: 1;
    max-width: 500px;
    padding: 1.2rem 1.5rem;
    font-size: 1.2rem;
    border: 2px solid var(--cellc-border);
    border-radius: 12px;
    font-family: var(--font-primary);
}

.phone-input:focus {
    outline: none;
    border-color: var(--cellc-orange);
}

.btn-next {
    padding: 1.2rem 3rem;
    background: var(--cellc-dark);
    color: var(--cellc-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next:hover {
    background: #333;
}

.error-msg {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.error-msg.show {
    display: block;
}

/* Amount Section */
.amount-section {
    max-width: 600px;
    margin: 0 auto;
    background: var(--cellc-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.amount-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.amount-input-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.currency-symbol {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 1rem;
}

.amount-input {
    flex: 1;
    padding: 1rem;
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px solid var(--cellc-border);
    font-family: var(--font-primary);
}

.amount-input:focus {
    outline: none;
    border-bottom-color: var(--cellc-orange);
}

.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount-input[type=number] {
    -moz-appearance: textfield;
}

.minimum-text {
    font-size: 0.9rem;
    color: var(--cellc-gray);
    margin-bottom: 2rem;
}

.security-notice {
    background: #EBF5FF;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.security-icon {
    font-size: 2rem;
    color: #3B82F6;
}

.security-text {
    font-size: 0.95rem;
    color: #1E40AF;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.terms-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.terms-text {
    font-size: 0.95rem;
}

.terms-link {
    color: var(--cellc-orange);
    text-decoration: none;
    font-weight: 600;
}

.btn-buy {
    width: 100%;
    padding: 1.2rem;
    background: var(--cellc-dark);
    color: var(--cellc-white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy:hover:not(:disabled) {
    background: #333;
}

.btn-buy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Payment Method Section */
.payment-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-left {
    background: var(--cellc-white);
    padding: 3rem;
    border-radius: 20px;
}

.payment-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.payment-subtitle {
    font-size: 1rem;
    color: var(--cellc-gray);
    margin-bottom: 2rem;
}

.payment-options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--cellc-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-option:hover {
    border-color: var(--cellc-orange);
}

.payment-option.active {
    border-color: var(--cellc-orange);
    background: #FFF7ED;
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    cursor: pointer;
    accent-color: var(--cellc-orange);
}

.payment-option-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-option-text {
    font-size: 1rem;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chevron {
    font-size: 1.5rem;
    color: var(--cellc-gray);
}

/* Purchase Summary */
.payment-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.purchase-summary {
    background: var(--cellc-dark);
    color: var(--cellc-white);
    padding: 2.5rem;
    border-radius: 20px;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-label {
    color: rgba(255, 255, 255, 0.7);
}
#successSection span.summary-label {
    color: #000;
}

.summary-value {
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.summary-total {
    font-size: 1.2rem;
    font-weight: 700;
}

.security-badge {
    background: #EBF5FF;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.security-badge-text {
    font-size: 0.9rem;
    color: #1E40AF;
}

.payment-actions {
    display: flex;
    gap: 1rem;
}

.btn-cancel {
    flex: 1;
    padding: 1rem;
    background: transparent;
    color: var(--cellc-dark);
    border: 2px solid var(--cellc-dark);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: var(--cellc-dark);
    color: var(--cellc-white);
}

.btn-continue {
    flex: 1;
    padding: 1rem;
    background: var(--cellc-dark);
    color: var(--cellc-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue:hover:not(:disabled) {
    background: #333;
}

.btn-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.site-footer {
    background: var(--cellc-dark);
    color: var(--cellc-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cellc-orange);
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .payment-container {
        grid-template-columns: 1fr;
    }

    .payment-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

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

    .recharge-options {
        flex-direction: column;
        align-items: center;
    }

    .option-btn {
        width: 100%;
        max-width: 400px;
    }

    .input-wrapper {
        flex-direction: column;
    }

    .phone-input {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .payment-left,
    .amount-section,
    .purchase-summary {
        padding: 2rem;
    }
}

/* Success Section Styles */
.success-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.success-icon {
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 8px;
}

.success-subtitle {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 32px;
}

.success-summary {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.success-summary .summary-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    text-align: center;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-home,
.btn-recharge-again {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-home {
    background: #ea5b0c;
    color: white;
}

.btn-home:hover {
    background: #d14e08;
    transform: translateY(-2px);
}

.btn-recharge-again {
    background: white;
    color: #ea5b0c;
    border: 2px solid #ea5b0c;
}

.btn-recharge-again:hover {
    background: #FEF3E7;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .success-title {
        font-size: 24px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .btn-home,
    .btn-recharge-again {
        width: 100%;
    }
}