* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: #1e293b;
    min-height: 100vh;
}

.pricing-page {
    min-height: 100vh;
    background: white;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
    background: white;
}

/* ========== PAGE HEADER ========== */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    background: white;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #1f2a44, #f2a83a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.page-header p {
    color: #64748b;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ========== LOCATION CARD ========== */
.location-card {
    background: white;
    border-radius: 28px;
    padding: 28px 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.location-label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 12px 24px;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.location-label i {
    color: #f2a83a;
}

.location-selector {
    flex: 1;
    cursor: pointer;
}

.no-location-selected {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.no-location-selected:hover {
    border-color: #f2a83a;
    background: #fef9f0;
    color: #f2a83a;
}

.no-location-selected i:first-child {
    color: #f2a83a;
}

.selected-location-display {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    background: #fef9f0;
    border: 1px solid #f2a83a;
    border-radius: 60px;
    cursor: pointer;
}

.selected-location-display .flag { font-size: 1.5rem; }
.selected-location-display .country-name { font-weight: 600; color: #1f2a44; }
.selected-location-display .currency { font-size: 0.8rem; color: #f2a83a; background: white; padding: 4px 12px; border-radius: 40px; }
.selected-location-display i { color: #94a3b8; }

.location-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #64748b;
}

.location-hint i {
    color: #f2a83a;
    font-size: 0.85rem;
}

.location-hint span {
    flex: 1;
    line-height: 1.4;
}

.mobile-location-trigger {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f8fafc;
    padding: 14px 20px;
    border-radius: 60px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    margin-top: 16px;
}

.mobile-location-trigger span {
    flex: 1;
    font-weight: 500;
    color: #64748b;
}

.mobile-location-trigger i:first-child {
    color: #f2a83a;
}

.mobile-location-trigger:active {
    background: #fef9f0;
    border-color: #f2a83a;
}

/* ========== BUTTONS ========== */
.action-bar {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.btn-back, .btn-next {
    padding: 12px 32px;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-back {
    background: #f1f5f9;
    color: #475569;
}

.btn-back:hover {
    background: #e2e8f0;
}

.btn-next {
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    color: white;
}

.btn-next:hover:not(:disabled) {
    background: linear-gradient(135deg, #f2a83a, #e5982b);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 168, 58, 0.3);
}

.btn-next:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.6;
}

/* ========== PERIOD TABS ========== */
.period-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.period-tab {
    padding: 12px 32px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 60px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}

.period-tab.active {
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    color: white;
    border-color: #1f2a44;
}

/* ========== PLANS CONTAINER ========== */
.plans-card-container, .payment-methods-container {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

/* ========== PLAN CARD - DESKTOP (DEFAULT) ========== */
.plan-card {
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    transition: all 0.3s;
    border: 2px solid #e2e8f0;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: #f2a83a;
}

.plan-card.selected {
    border-color: #f2a83a;
    background: #fefbf5;
}

.plan-card.selected::after {
    content: "✓";
    position: absolute;
    top: -12px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f2a83a, #e5982b);
    color: #1f2a44;
    padding: 5px 20px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1f2a44;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: #f2a83a;
    margin: 12px 0;
}

.plan-price small {
    font-size: 0.8rem;
    color: #64748b;
}

.select-plan-btn {
    width: 100%;
    padding: 12px 20px;
    background: #f8fafc;
    color: #475569;
    border: 1.5px solid #e2e8f0;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s;
}

.select-plan-btn:hover {
    background: #f1f5f9;
}

.plan-card.selected .select-plan-btn {
    background: #f2a83a;
    border-color: #f2a83a;
    color: #1f2a44;
    font-weight: 700;
}

/* ============================================ */
/* MOBILE PLAN CARD LAYOUT */
/* ============================================ */
@media (max-width: 768px) {
    .plans-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .plan-card {
        display: flex !important;
        flex-direction: column !important;
        background: white !important;
        border-radius: 16px !important;
        padding: 14px 18px !important;
        transition: all 0.3s !important;
        border: 1px solid #e2e8f0 !important;
        position: relative !important;
        cursor: pointer !important;
        margin: 0 !important;
        text-align: left !important;
        box-shadow: none !important;
    }
    
    .plan-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .plan-card.selected::after {
        top: -8px !important;
        right: 12px !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 0.8rem !important;
    }
    
    .plan-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 10px !important;
        gap: 10px !important;
        flex-direction: row !important;
    }
    
    .plan-name {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #1f2a44 !important;
        margin: 0 !important;
        padding: 0 !important;
        text-transform: capitalize !important;
        text-align: left !important;
        flex: 1 !important;
    }
    
    .plan-price {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: #f2a83a !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: right !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
    
    .plan-price small {
        font-size: 0.65rem !important;
        font-weight: 500 !important;
        color: #64748b !important;
        white-space: nowrap !important;
    }
    
    .plan-badge-row {
        display: flex !important;
        justify-content: flex-start !important;
        margin-bottom: 10px !important;
        width: 100% !important;
    }
    
    .popular-badge {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        display: inline-block !important;
        background: linear-gradient(135deg, #f2a83a, #e5982b) !important;
        color: #1f2a44 !important;
        padding: 4px 12px !important;
        border-radius: 40px !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
    }
    
    .plan-button-row {
        display: flex !important;
        justify-content: stretch !important;
        width: 100% !important;
        margin-top: 4px !important;
    }
    
    .select-plan-btn {
        width: 100% !important;
        padding: 10px 16px !important;
        background: #f8fafc !important;
        color: #475569 !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 40px !important;
        font-weight: 600 !important;
        font-size: 0.85rem !important;
        cursor: pointer !important;
        transition: all 0.25s !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .select-plan-btn:active {
        background: #f1f5f9 !important;
        transform: scale(0.98) !important;
    }
    
    .plan-card.selected {
        border-color: #f2a83a !important;
        background: #fefbf5 !important;
    }
    
    .plan-card.selected .select-plan-btn {
        background: #10b981 !important;
        border-color: #10b981 !important;
        color: white !important;
    }
    
    .plan-card.selected .plan-price {
        color: #10b981 !important;
    }
}

/* ========== PAYMENT METHODS ========== */
.payment-methods-container h2 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: #1f2a44;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 32px;
}

.payment-methods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.payment-pill {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 60px;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-weight: 600;
    color: #475569;
}

.payment-pill:hover {
    transform: translateY(-3px);
    border-color: #f2a83a;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(242, 168, 58, 0.15);
}

.payment-pill.selected {
    background: linear-gradient(135deg, #f2a83a, #e5982b);
    border-color: #f2a83a;
    color: #1f2a44;
}

/* ========== LOADING SPINNER ========== */
.loading-spinner {
    text-align: center;
    padding: 60px;
    color: #94a3b8;
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 12px;
    animation: spin 1s linear infinite;
    color: #f2a83a;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== DESKTOP COUNTRY MODAL ========== */
.country-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.country-modal.show {
    display: flex;
}

.country-modal-content {
    background: white;
    border-radius: 32px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideUp 0.3s ease;
}

.country-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
}

.country-modal-header h3 {
    color: white;
    font-size: 1.1rem;
}

.country-modal-header h3 i {
    color: #f2a83a;
    margin-right: 8px;
}

.country-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

.country-modal-search {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.country-modal-search i {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    z-index: 1;
}

.country-modal-search input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 2px solid #e2e8f0;
    border-radius: 40px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.country-modal-search input:focus {
    outline: none;
    border-color: #f2a83a;
}

.country-list {
    max-height: 60vh;
    overflow-y: auto;
    padding: 8px 0;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.country-option:hover {
    background: #fef9f0;
}

.country-option .flag {
    font-size: 1.8rem;
}

.country-option .name {
    flex: 1;
    font-weight: 600;
    color: #1f2a44;
}

.country-option .currency {
    font-size: 0.8rem;
    color: #64748b;
}

/* ========== MOBILE BOTTOM SHEET ========== */
.mobile-bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 28px 28px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    height: 90vh;
    display: flex;
    flex-direction: column;
    visibility: visible !important;
}

.mobile-bottom-sheet.open {
    transform: translateY(0);
}

.bottom-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    border-radius: 28px 28px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.bottom-sheet-header h3 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
}

.bottom-sheet-header h3 i {
    color: #f2a83a;
    margin-right: 8px;
}

.close-sheet {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-sheet:active {
    background: rgba(239, 68, 68, 0.3);
    transform: scale(0.95);
}

.bottom-sheet-search {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    background: white;
    position: sticky;
    top: 73px;
    z-index: 10;
}

.bottom-sheet-search i {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    z-index: 1;
}

.bottom-sheet-search input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 2px solid #e2e8f0;
    border-radius: 40px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
}

.bottom-sheet-search input:focus {
    outline: none;
    border-color: #f2a83a;
    background: white;
}

.bottom-sheet-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.location-dropdown-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.location-dropdown-option:active {
    background: #fef9f0;
}

.location-dropdown-option .flag {
    font-size: 1.8rem;
}

.location-dropdown-option .details {
    flex: 1;
}

.location-dropdown-option .name {
    font-weight: 600;
    color: #1f2a44;
    font-size: 0.95rem;
}

.location-dropdown-option .currency-info {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 2px;
}

.sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 10000 !important;
    pointer-events: none;
}

.sheet-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.loading-countries, .no-results {
    text-align: center;
    padding: 40px;
    color: #94a3b8;
}

/* ========== PAYMENT MODAL ========== */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.payment-modal.show {
    display: flex;
}

.payment-modal-content {
    background: white;
    border-radius: 32px;
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalSlideUp 0.3s ease;
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    border-radius: 32px 32px 0 0;
}

.payment-modal-header h3 {
    color: white;
    font-size: 1.1rem;
}

.payment-modal-header h3 i {
    color: #f2a83a;
    margin-right: 8px;
}

.payment-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

.payment-modal-body {
    padding: 24px;
}

.payment-modal-footer {
    padding: 16px 24px 24px;
    display: flex;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
}

/* ========== PAYMENT INSTRUCTIONS ========== */
.payment-instructions {
    background: #fef9f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #f2a83a30;
}

.payment-instructions h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 12px;
}

.payment-instructions-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #475569;
    white-space: pre-line;
}

/* ========== UPLOAD SECTION ========== */
.upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.upload-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2a44;
}

.upload-limit {
    font-size: 0.7rem;
    color: #64748b;
}

.upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: #f2a83a;
    background: #fef9f0;
}

.upload-area i {
    font-size: 2rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.upload-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
}

.upload-hint {
    font-size: 0.7rem;
    color: #94a3b8;
}

.upload-area input {
    display: none;
}

.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.image-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.image-preview-item:hover {
    transform: scale(1.05);
    border-color: #f2a83a;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-item .delete-image {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 0.7rem;
}

/* ========== SUCCESS MODAL ========== */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000 !important;
}

.success-modal.show {
    display: flex !important;
}

.success-modal-content {
    background: white;
    border-radius: 28px;
    max-width: 420px;
    width: 90%;
    padding: 32px 28px;
    text-align: center;
    animation: modalSlideUp 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 2.2rem;
    color: white;
}

.success-modal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 10px;
}

.success-modal-content > p {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.transaction-ref {
    background: #f8fafc;
    padding: 14px;
    border-radius: 14px;
    margin: 16px 0;
    font-size: 0.8rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.transaction-ref strong {
    color: #1f2a44;
}

.pending-message {
    background: #fef3c7;
    border-radius: 14px;
    padding: 14px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.pending-message i {
    color: #f2a83a;
    font-size: 1.1rem;
}

.pending-message p {
    color: #92400e;
    font-size: 0.8rem;
    margin: 0;
}

.success-modal-buttons {
    margin-top: 20px;
}

.success-modal-buttons .btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.success-modal-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 42, 68, 0.3);
}

.success-modal-buttons .btn-primary:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .success-modal-content {
        width: 85%;
        padding: 28px 20px;
        max-width: 350px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon i {
        font-size: 1.8rem;
    }
    
    .success-modal-content h3 {
        font-size: 1.1rem;
    }
    
    .transaction-ref {
        font-size: 0.7rem;
        padding: 12px;
    }
    
    .pending-message p {
        font-size: 0.75rem;
    }
}

/* ========== ERROR MODAL ========== */
.error-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.error-modal.show {
    display: flex;
}

.error-modal-content {
    background: white;
    border-radius: 28px;
    max-width: 400px;
    width: 90%;
    padding: 32px 28px;
    text-align: center;
    animation: modalSlideUp 0.3s ease;
}

.error-icon {
    width: 64px;
    height: 64px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.error-icon i {
    font-size: 2rem;
    color: #ef4444;
}

.error-modal-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1f2a44;
}

.error-modal-content p {
    color: #64748b;
    margin-bottom: 24px;
}

.error-modal-content .btn-primary {
    padding: 12px 28px;
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

/* ========== LIGHTBOX MODAL ========== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.lightbox-modal.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    border: none;
}

/* ========== FULL SCREEN MODALS FOR MOBILE ========== */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex !important;
    flex-direction: column !important;
}

.fullscreen-modal.open {
    transform: translateX(0);
}

.fullscreen-modal-header {
    position: sticky;
    top: 0;
    background: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #e2e8f0;
    z-index: 10;
    flex-shrink: 0;
}

.fullscreen-modal-header .back-btn {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.fullscreen-modal-header .back-btn i {
    font-size: 18px;
    color: #1f2a44;
}

.fullscreen-modal-header .back-btn:active {
    background: #e2e8f0;
    transform: scale(0.95);
}

.fullscreen-modal-header h2 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #1f2a44;
    margin: 0;
}

.fullscreen-modal-header .placeholder {
    width: 40px;
}

.fullscreen-modal-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 100px !important;
}

/* ========== DESKTOP COMPLETE PAYMENT ========== */
.payment-complete-container {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.payment-complete-container h2 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: #1f2a44;
}

.payment-complete-container .section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 32px;
}

/* ========== PAYMENT DETAILS SECTION ========== */
.payment-details-section {
    margin-top: 24px;
    margin-bottom: 24px;
}

.payment-details-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-details-section h4 i {
    color: #f2a83a;
}

.payment-details-table {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.payment-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.payment-detail-row:last-child {
    border-bottom: none;
}

.payment-detail-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.payment-detail-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #1f2a44;
    font-weight: 500;
    word-break: break-all;
    text-align: right;
}

.copy-detail-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    font-size: 0.9rem;
    padding: 4px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-detail-btn:hover {
    color: #f2a83a;
    transform: scale(1.1);
}

/* ========== MOBILE PAYMENT DETAILS ========== */
@media (max-width: 768px) {
    .payment-details-section {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .payment-details-section h4 {
        font-size: 0.85rem;
        margin-bottom: 12px;
        padding: 0 4px;
    }
    
    .payment-detail-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 16px !important;
        margin: 0 !important;
        background: #f8fafc;
        border-bottom: 1px solid #e2e8f0;
        flex-direction: row !important;
        gap: 10px !important;
    }
    
    .payment-detail-row:last-child {
        border-bottom: none;
    }
    
    .payment-detail-label {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        color: #475569 !important;
        flex-shrink: 0 !important;
        width: auto !important;
        text-align: left !important;
    }
    
    .payment-detail-value {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 10px !important;
        flex: 1 !important;
        text-align: right !important;
    }
    
    .payment-detail-value span {
        font-size: 0.8rem !important;
        color: #1f2a44 !important;
        font-weight: 500 !important;
        word-break: break-all !important;
        text-align: right !important;
    }
    
    .copy-detail-btn {
        background: #f1f5f9 !important;
        border: none !important;
        cursor: pointer !important;
        color: #64748b !important;
        font-size: 0.8rem !important;
        padding: 6px 10px !important;
        border-radius: 30px !important;
        transition: all 0.2s ease !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        flex-shrink: 0 !important;
    }
    
    .copy-detail-btn i {
        font-size: 0.75rem !important;
    }
    
    .copy-detail-btn:active {
        background: #f2a83a !important;
        color: white !important;
        transform: scale(0.95) !important;
    }
}

/* ========== MOBILE PAYMENT BOTTOM SHEET ========== */
.mobile-payment-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 28px 28px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    height: 90vh;
    display: flex;
    flex-direction: column;
}

.mobile-payment-sheet.open {
    transform: translateY(0);
}

.sheet-drag-handle {
    width: 50px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 4px;
    margin: 12px auto 8px;
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.sheet-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2a44;
    margin: 0;
}

.sheet-header h3 i {
    color: #f2a83a;
    margin-right: 8px;
}

.sheet-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #94a3b8;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sheet-close:active {
    background: #f1f5f9;
}

.sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    position: relative;
}

.sheet-upload-area {
    text-align: center;
}

.upload-icon {
    width: 70px;
    height: 70px;
    background: #fef9f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.upload-icon i {
    font-size: 2rem;
    color: #f2a83a;
}

.upload-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 8px;
}

.upload-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 8px;
}

.upload-requirement {
    font-size: 0.75rem;
    color: #ef4444;
    margin-bottom: 20px;
}

.sheet-upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8fafc;
}

.sheet-upload-box i {
    font-size: 2rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 8px;
}

.sheet-upload-box span {
    font-size: 0.85rem;
    color: #475569;
}

.sheet-upload-box:active {
    border-color: #f2a83a;
    background: #fef9f0;
}

.sheet-upload-box input {
    display: none;
}

.sheet-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}

.sheet-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.sheet-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sheet-preview-delete {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 0.7rem;
}

.upload-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: #fef9f0;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #f2a83a;
}

.sheet-footer {
    padding: 16px 20px 24px;
    border-top: 1px solid #e2e8f0;
}

.sheet-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sheet-submit-btn:active {
    transform: scale(0.98);
}

.sheet-submit-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

/* ========== SUBMIT BUTTON STYLES ========== */
#desktopSubmitPaymentBtn {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

#desktopSubmitPaymentBtn:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4) !important;
}

#desktopSubmitPaymentBtn:active {
    transform: scale(0.98) !important;
}

#desktopSubmitPaymentBtn:disabled {
    background: #cbd5e1 !important;
    box-shadow: none !important;
    transform: none !important;
    cursor: not-allowed !important;
}

/* ========== UPLOAD REQUIRED MODAL ========== */
.upload-required-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.upload-required-modal.show {
    display: flex;
}

.upload-required-content {
    background: white;
    border-radius: 32px;
    max-width: 400px;
    width: 90%;
    padding: 40px 32px;
    text-align: center;
    animation: modalSlideUp 0.3s ease;
}

.upload-required-icon {
    width: 80px;
    height: 80px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.upload-required-icon i {
    font-size: 2.5rem;
    color: #f2a83a;
}

.upload-required-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 12px;
}

.upload-required-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.upload-required-buttons {
    display: flex;
    gap: 12px;
}

.btn-upload-now {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f2a83a, #e5982b);
    color: #1f2a44;
    border: none;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-upload-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 168, 58, 0.3);
}

.upload-required-buttons .btn-cancel {
    flex: 1;
    padding: 12px 20px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-required-buttons .btn-cancel:hover {
    background: #e2e8f0;
}

@media (max-width: 768px) {
    .upload-required-content {
        padding: 32px 24px;
        width: 85%;
    }
    
    .upload-required-buttons {
        flex-direction: column;
    }
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .container {
        padding: 0 16px 40px 16px;
        padding-top: 0;
    }
    
    .page-header {
        margin-bottom: 24px;
        padding-top: 20px;
    }
    
    .page-header h1 {
        font-size: 1.3rem;
    }
    
    .page-header p {
        font-size: 0.75rem;
    }
    
    .location-card {
        padding: 20px;
        margin-top: 0;
        border-radius: 20px;
    }
    
    .location-info {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .location-label {
        justify-content: center;
    }
    
    .location-selector {
        display: none;
    }
    
    .mobile-location-trigger {
        display: flex;
    }
    
    .location-hint {
        font-size: 0.7rem;
        padding: 10px 14px;
        margin-top: 16px;
    }
    
    .plans-card-container {
        margin-top: 20px;
        padding: 20px;
        border-radius: 20px;
    }
    
    .payment-methods-container {
        margin-top: 20px;
        padding: 20px;
        border-radius: 20px;
    }
    
    .period-tabs {
        margin-top: 8px;
        margin-bottom: 24px;
    }
    
    .period-tab {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .payment-methods-grid {
        flex-direction: column;
    }
    
    .payment-pill {
        text-align: center;
    }
    
    .action-bar {
        justify-content: center;
        margin-top: 24px;
        padding-top: 20px;
    }
    
    .btn-back, .btn-next {
        flex: 1;
        justify-content: center;
    }
    
    .payment-modal-footer {
        flex-direction: column;
    }
    
    .payment-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .bottom-sheet-header {
        position: sticky;
        top: 0;
        z-index: 20;
    }
    
    .bottom-sheet-search {
        position: sticky;
        top: 73px;
        z-index: 20;
        background: white;
    }
    
    .country-modal {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-sheet, .sheet-overlay {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .location-card {
        padding: 16px;
    }
    
    .no-location-selected {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .mobile-location-trigger {
        padding: 12px 16px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* ========== MOBILE PAYMENT FOOTER ========== */
@media (max-width: 768px) {
    .mobile-payment-footer {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 16px 20px;
        border-top: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 101;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        margin-top: auto;
    }
    
    .mobile-upload-proof-btn {
        width: 100%;
        padding: 14px 20px;
        background: linear-gradient(135deg, #f2a83a, #e5982b) !important;
        border: none !important;
        border-radius: 60px;
        font-size: 0.95rem;
        font-weight: 700;
        color: #1f2a44 !important;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.2s;
        box-shadow: 0 4px 12px rgba(242, 168, 58, 0.3);
    }
    
    .mobile-upload-proof-btn:active {
        transform: scale(0.98);
    }
    
    .mobile-submit-payment-btn {
        width: 100%;
        padding: 14px 20px;
        background: linear-gradient(135deg, #10b981, #059669);
        border: none;
        border-radius: 60px;
        font-size: 0.95rem;
        font-weight: 700;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.2s;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    
    .mobile-submit-payment-btn:active {
        transform: scale(0.98);
    }
    
    .mobile-submit-payment-btn:disabled {
        background: #cbd5e1;
        transform: none;
        cursor: not-allowed;
    }
    
    #mobileCompletePaymentModal .fullscreen-modal-content {
        padding-bottom: 100px !important;
    }
}

/* ========== SHEET INNER MODAL (Payment Proof Required) ========== */
.sheet-inner-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 28px 28px 0 0;
    animation: fadeIn 0.2s ease;
}

.sheet-inner-modal-content {
    background: white;
    border-radius: 28px;
    max-width: 320px;
    width: 85%;
    padding: 28px 24px;
    text-align: center;
    animation: modalSlideUp 0.3s ease;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

.sheet-inner-modal-icon {
    width: 70px;
    height: 70px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sheet-inner-modal-icon i {
    font-size: 2.2rem;
    color: #f2a83a;
}

.sheet-inner-modal-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 10px;
}

.sheet-inner-modal-content p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.sheet-inner-modal-buttons {
    display: flex;
    gap: 12px;
}

.sheet-inner-modal-upload {
    flex: 1;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f2a83a, #e5982b);
    color: #1f2a44;
    border: none;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.sheet-inner-modal-upload:active {
    transform: scale(0.98);
}

.sheet-inner-modal-cancel {
    flex: 1;
    padding: 12px 16px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.sheet-inner-modal-cancel:active {
    background: #e2e8f0;
    transform: scale(0.98);
}

/* ========== SHEET ERROR MESSAGE ========== */
.sheet-error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fee2e2;
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    animation: shakeError 0.3s ease;
}

.sheet-error-message i {
    color: #ef4444;
    font-size: 1.1rem;
}

.sheet-error-message span {
    color: #991b1b;
    font-size: 0.85rem;
    font-weight: 500;
    flex: 1;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ========== UPLOAD REQUIRED MODAL ========== */
.upload-required-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.upload-required-modal.show {
    display: flex;
}

.upload-required-content {
    background: white;
    border-radius: 32px;
    max-width: 400px;
    width: 90%;
    padding: 40px 32px;
    text-align: center;
    animation: modalSlideUp 0.3s ease;
}

.upload-required-icon {
    width: 80px;
    height: 80px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.upload-required-icon i {
    font-size: 2.5rem;
    color: #f2a83a;
}

.upload-required-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 12px;
}

.upload-required-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.upload-required-buttons {
    display: flex;
    gap: 12px;
}

.btn-upload-now {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f2a83a, #e5982b);
    color: #1f2a44;
    border: none;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-upload-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 168, 58, 0.3);
}

.upload-required-buttons .btn-cancel {
    flex: 1;
    padding: 12px 20px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-required-buttons .btn-cancel:hover {
    background: #e2e8f0;
}

@media (max-width: 768px) {
    .upload-required-content {
        padding: 32px 24px;
        width: 85%;
    }
    
    .upload-required-buttons {
        flex-direction: column;
    }
}
