:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --background-color: #f8f9fa;
    --text-color: #333;
    --card-bg: #ffffff;
    --border-color: #e1e4e8;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Fixed App Promo Bar */
.app-promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    z-index: 9999;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.app-promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-promo-text {
    font-size: 15px;
    color: #fff;
}

.app-promo-text strong {
    color: #FFD93D;
}

.app-promo-badges {
    display: flex;
    gap: 10px;
    align-items: center;
}

.app-promo-badges a {
    display: flex;
    transition: transform 0.2s ease;
}

.app-promo-badges a:hover {
    transform: scale(1.05);
}

.app-promo-badges img {
    height: 36px;
}

/* Adjust body padding when promo bar is visible */
body {
    padding-top: 60px;
}

@media (max-width: 600px) {
    .app-promo-bar {
        padding: 10px 16px;
    }

    .app-promo-content {
        flex-direction: column;
        gap: 8px;
    }

    .app-promo-text {
        font-size: 13px;
        text-align: center;
    }

    .app-promo-badges {
        gap: 8px;
    }

    .app-promo-badges img {
        height: 32px;
    }

    body {
        padding-top: 90px;
    }
}

@media (max-width: 600px) {
    body>header>nav>.hamburger-menu {
        top: 85px !important;
    }
}

/* Utility and global styles from styles.css merged in */

.search-container {
    margin: 30px auto;
    max-width: 600px;
    padding: 0 20px;
    text-align: center;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    border-color: #1863dc;
    box-shadow: 0 0 5px rgba(24, 99, 220, 0.2);
}

.country-select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: white;
}

.country-select:focus {
    outline: none;
    border-color: #1863dc;
    box-shadow: 0 0 5px rgba(24, 99, 220, 0.2);
}

.loading,
.no-packages {
    text-align: center;
    padding: 20px;
    color: #666;
}

.error-message {
    text-align: center;
    padding: 20px;
    color: #dc3545;
}

/* Compatibility checker styles */
.compatibility-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    border-left: 4px solid #28a745;
}

.compatibility-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    border-left: 4px solid #dc3545;
}

.compatibility-notes {
    margin-top: 10px;
    font-size: 0.9em;
    font-style: italic;
}

#device-brand,
#device-model {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#check-compatibility {
    margin-top: 10px;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Global mobile list indentation fix */
@media (max-width: 768px) {
    ul, ol {
        padding-left: 1.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    main ul, main ol {
        padding-left: 1.75rem;
    }
}

body>header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
}

body>header>nav {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

body>header>nav>.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    top: 75px;
    right: 20px;
}

body>header>nav>.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 2px 0;
    transition: all 0.3s ease;
}

body>header>nav>.side-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 4rem;
}

body>header>nav>.side-nav.active {
    right: 0;
}

body>header>nav>.side-nav>.nav-links {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
}

body>header>nav>.side-nav>.nav-links>.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid #eee;
    text-align: left;
    display: block;
}

body>header>nav>.side-nav>.nav-links>.nav-link:last-child {
    border-bottom: none;
}

body>header>nav>.side-nav>.nav-links>.nav-link:hover {
    color: var(--secondary-color);
}

body>header>nav>.side-nav>.nav-links>.nav-button {
    background: none;
    border: none;
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid #eee;
    display: block;
    width: 100%;
}

body>header>nav>.side-nav>.nav-links>.nav-button:hover {
    color: var(--secondary-color);
}

/* Hamburger menu animation */
body>header>nav>.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body>header>nav>.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

body>header>nav>.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

header {
    background-color: transparent;
    padding: 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-text {
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
}

nav {
    display: flex;
    justify-content: flex-end;
    padding: 0;
}

.nav-links {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid #eee;
    text-align: left;
    display: block;
}

.nav-button {
    background: none;
    border: none;
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid #eee;
    display: block;
    width: 100%;
}

.hero-subtitle {
    text-align: center;
}

.hero-mascot {
    display: block;
    width: 120px;
    height: auto;
    margin: 1.5rem auto;
}

.hero-subtitle .crypto-link {
    color: #f7931a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.hero-subtitle .crypto-link:hover {
    color: #e8820f;
    text-decoration: underline;
}

.hero-subtitle .crypto-link .fa-bitcoin {
    color: #f7931a;
    margin-right: 2px;
}

.hero-subtitle .crypto-link .lightning-icon {
    display: inline-block;
    background: linear-gradient(135deg, #7b68ee, #9370db);
    border-radius: 50%;
    width: 1.1em;
    height: 1.1em;
    text-align: center;
    line-height: 1.1em;
    font-size: 0.85em;
    margin-right: 2px;
    vertical-align: middle;
}

/* Payment method icons in hero subtitle */
.hero-subtitle .fa-bitcoin {
    color: #f7931a;
}

.hero-subtitle .lightning-icon {
    font-style: normal;
}

.hero-subtitle .fa-monero {
    color: #ff6600;
}

.hero-subtitle .fa-coins {
    color: #6c5ce7;
}

/* Hero buttons - Browse Regional, Global, Data+Calls */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.hero-buttons .btn {
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
}

.hero-buttons .btn.btn-primary {
    width: auto !important;
}

.hero-btn-regional {
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(56, 178, 172, 0.3);
}

.hero-btn-calls {
    background: linear-gradient(135deg, #6c5ce7 0%, #a855f7 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: left;
}

section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.step {
    margin-bottom: 2rem;
}

select,
button {
    padding: 0.5rem;
    margin: 0.5rem 0;
    width: 100%;
    max-width: 300px;
}

button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

.compatibility-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
}

.plan-card {
    border: 1px solid #ddd;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    background: white;
    transition: transform 0.2s;
}

.plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.compatibility-success {
    color: #2ecc71;
    padding: 1rem;
    background: #eafaf1;
    border-radius: 4px;
    margin-top: 1rem;
}

.compatibility-error {
    color: #e74c3c;
    padding: 1rem;
    background: #fdedec;
    border-radius: 4px;
    margin-top: 1rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.package-card {
    background: white;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.package-card h3 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

.package-details {
    margin-bottom: 1rem;
}

.package-details p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.package-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.checkout-form {
    max-width: 400px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* How it works section */

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.step-item {
    flex: 1 1 160px;
    min-width: 160px;
    max-width: 250px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1.5rem 1rem;
    margin: 0 0.5rem 1.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    background: var(--secondary-color);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .step-item {
        max-width: 90vw;
        min-width: 0;
    }
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.auth-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.auth-form button {
    background-color: #1863dc;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.auth-form button:hover {
    background-color: #1456b8;
}

.auth-box p {
    margin-top: 1rem;
    text-align: center;
    color: #666;
}

.auth-box a {
    color: #1863dc;
    text-decoration: none;
}

.auth-box a:hover {
    text-decoration: underline;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    z-index: 1000;
}

/* Dashboard styles */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.dashboard-header h1 {
    margin: 0;
    color: var(--primary-color);
    font-size: 2rem;
}

.esim-list {
    background: transparent;
    box-shadow: none;
    padding: 0 1rem;
}

.esim-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.esim-details-container {
    margin-top: 2rem;
    padding: 0 1rem;
}

.esim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.esim-header h3 {
    margin: 0;
    color: #333;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
}

.status-badge.active {
    background-color: #4CAF50;
    color: white;
}

.status-badge.in_use {
    background-color: #2196F3;
    color: white;
}

.status-badge.pending {
    background-color: #FF9800;
    color: white;
}

.status-badge.processing {
    background-color: #03A9F4;
    color: white;
}

.status-badge.suspended {
    background-color: #F44336;
    color: white;
}

.status-badge.revoked {
    background-color: #9E9E9E;
    color: white;
}

/* New status badges for cancelled, terminated, and expired eSIMs */
.status-badge.cancelled {
    background-color: #7D3C98;
    color: white;
}

.status-badge.terminated {
    background-color: #CB4335;
    color: white;
}

.status-badge.expired {
    background-color: #884EA0;
    color: white;
}

.status-badge.used-up {
    background-color: #D35400;
    color: white;
}

.status-badge.revoked {
    background-color: #566573;
    color: white;
}

/* Status badge modifiers */
.status-badge.inactive-status {
    border: 2px solid #E74C3C;
}

.status-badge.warning-status {
    border: 2px solid #F39C12;
}

.status-badge.active-status {
    border: 2px solid #2ECC71;
}

.status-badge.processing-status {
    border: 2px solid #3498DB;
    animation: pulse 2s infinite;
}

@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);
    }
}

.status-badge.unknown,
.status-badge.error {
    background-color: #616161;
    color: white;
}

.status-badge.got-resource {
    background-color: #4CAF50;
    color: white;
}

/* Disabled buttons */
.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Processing message styling */
.processing-message {
    background-color: rgba(3, 169, 244, 0.1);
    border-left: 4px solid #03A9F4;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.processing-message p {
    margin: 5px 0;
    color: #0277BD;
}

/* No eSIMs message */
.no-esims-message {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    grid-column: 1 / -1;
}

.no-esims-message p {
    margin: 10px 0;
    color: #6c757d;
}

.no-esims-message a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.no-esims-message a:hover {
    text-decoration: underline;
}

.expiry-countdown {
    font-size: 0.85em;
    color: #FF9800;
    font-weight: bold;
    margin-left: 0.5rem;
}

/* Progress bar for data usage */
.data-progress {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-top: 5px;
    overflow: hidden;
}

.data-progress-bar {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
}

.data-progress-bar.high {
    background-color: #FF9800;
}

.data-progress-bar.critical {
    background-color: #F44336;
}

.esim-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    margin-bottom: 8px;
}

.detail-label {
    font-weight: bold;
    width: 120px;
    color: #666;
}

.detail-value {
    flex: 1;
}

.esim-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #2196F3;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-email {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-email:hover {
    opacity: 0.9;
}

/* Browse Buttons Container */
.browse-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 10px 0 20px;
    flex-wrap: wrap;
}

.browse-buttons .btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.browse-buttons .btn-secondary {
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(56, 178, 172, 0.3);
}

.browse-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    box-shadow: 0 4px 12px rgba(56, 178, 172, 0.4);
}

.browse-buttons .btn-primary {
    background-color: var(--primary-color, #3498db);
    color: white;
}

.browse-buttons .btn-primary:hover {
    background-color: #2980b9;
}

.qr-section {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qr-code {
    max-width: 250px;
    height: auto;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    padding: 10px;
    border-radius: 4px;
}

.activation-code {
    background: #e9ecef;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.activation-code code {
    font-family: monospace;
    font-size: 1.1em;
    background: white;
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid #dee2e6;
}

.copy-btn {
    padding: 8px 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.copy-btn:hover {
    background: #0056b3;
}

.no-esims {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 8px;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.package-details-container {
    margin: 20px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: bold;
    color: var(--primary-color);
}

.modal-actions {
    margin-top: 20px;
    text-align: right;
}

/* Ensure modal button styles don't interfere with existing buttons */
.modal .btn-primary {
    display: inline-block;
    width: auto;
    min-width: 120px;
}

/* Package Details Dark Modal */
.pkg-modal-overlay {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.pkg-detail-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pkg-detail-modal h2 {
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
}

.pkg-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pkg-modal-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
}

.pkg-modal-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.pkg-modal-value {
    font-size: 1rem;
    font-weight: 600;
}

.pkg-modal-price {
    color: #4ade80;
    font-weight: 700;
}

.pkg-modal-operators-section {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.pkg-modal-operators-section h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.75rem;
}

.pkg-modal-overlay .operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.pkg-modal-overlay .operator-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pkg-modal-overlay .operator-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
    text-align: center;
    color: #fff;
    font-size: 0.85rem;
}

.pkg-modal-overlay .network-type {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.pkg-modal-overlay .network-coverage-list {
    margin-top: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
}

.pkg-modal-overlay .country-network-group .country-header {
    background: rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px;
    margin-bottom: 0.4rem;
    padding: 0.6rem 0.75rem !important;
}

.pkg-modal-overlay .country-network-group .country-header:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.pkg-modal-overlay .country-network-group .country-flag {
    font-size: 1.25rem;
    line-height: 1;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.pkg-modal-overlay .country-network-group .country-name {
    color: #fff !important;
    font-weight: 500;
}

.pkg-modal-overlay .country-network-group .operator-count {
    color: rgba(255, 255, 255, 0.5) !important;
}

.pkg-modal-overlay .country-network-group .expand-icon {
    color: rgba(255, 255, 255, 0.5) !important;
}

.pkg-modal-overlay .country-network-group .country-operators {
    background: rgba(255, 255, 255, 0.03) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 0.5rem 1rem 0.75rem !important;
}

.pkg-modal-overlay .country-network-group .operator-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.pkg-modal-overlay .country-network-group .operator-item:last-child {
    border-bottom: none !important;
}

.pkg-modal-overlay .country-network-group .operator-item .operator-name {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pkg-modal-overlay .country-network-group .network-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pkg-modal-overlay .country-network-group .network-badge.badge-5g {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: white !important;
}

.pkg-modal-close-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.pkg-modal-close-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.pkg-modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.qr-container {
    text-align: center;
    margin: 2rem 0;
}

.qr-container img {
    max-width: 300px;
    height: auto;
}

.top-up-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.top-up-package {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.top-up-package:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.top-up-package.selected {
    border-color: var(--secondary-color);
    background: #f0f7ff;
}

/* Improved details styling */
.esim-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.esim-details h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-label {
    font-weight: 600;
    color: #6c757d;
}

.detail-value {
    color: #2c3e50;
}

.top-up-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.top-up-option {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
}

.top-up-option:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-up-option h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.top-up-option p {
    color: #6c757d;
    margin: 5px 0;
}

.top-up-option button {
    margin-top: 15px;
    width: 100%;
}

/* Country selection and search styles */
.search-container {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-box {
    position: relative;
    margin-bottom: 1rem;
}

.country-search {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.country-search:focus {
    border-color: var(--secondary-color);
}

.search-button {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.3s;
    max-width: 50px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background-color: #2980b9;
}

.country-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: border-color 0.3s;
}

.country-select:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.country-select optgroup {
    font-weight: bold;
    font-style: normal;
    color: #555;
    background-color: #f8f9fa;
    padding: 5px;
}

.country-select option {
    padding: 8px 12px;
    font-weight: normal;
    color: #333;
}

.country-select option:hover,
.country-select option:focus {
    background-color: var(--secondary-color);
    color: white;
}

.country-select .no-results {
    color: #999;
    font-style: italic;
    padding: 8px 12px;
}

@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
    }
}

/* Mobile country search styles */
.mobile-search {
    width: 100%;
}

.mobile-search input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-search input:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
}

/* Adjust sizes for smaller screens */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
    }

    .mobile-search input {
        font-size: 16px;
        /* Prevents iOS zoom on focus */
        padding: 14px 15px;
    }

    .package-card {
        padding: 1rem;
    }

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

.add-esim-form {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eaeaea;
}

.add-esim-form .form-group {
    margin-bottom: 15px;
}

.add-esim-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.add-esim-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.result-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.result-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.result-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.result-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Search box with autocomplete */
.search-box {
    width: 100%;
    max-width: 600px;
    margin: 1.5rem auto;
    position: relative;
}

.country-search {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.country-search:focus {
    border-color: var(--secondary-color);
}

.search-button {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.3s;
    max-width: 50px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background-color: #2980b9;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: calc(100% - 50px);
    /* Account for button width */
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.autocomplete-results.active {
    display: block;
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.autocomplete-item:hover,
.autocomplete-item.selected {
    background-color: #f5f5f5;
}

.autocomplete-item .country-name {
    font-weight: bold;
    color: var(--primary-color);
}

.autocomplete-item .country-code {
    font-size: 0.8em;
    color: #666;
    margin-left: 5px;
}

.no-results {
    padding: 10px 15px;
    color: #666;
    font-style: italic;
}

/* Loading indicator for packages */
.packages-loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.packages-loading:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 3px solid #ddd;
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mascot image styling */
.mascot-container {
    text-align: center;
    margin: 1rem auto 2rem;
}

.mascot-image {
    max-width: 100px;
    height: auto;
    border-radius: 10px;
}

/* Site Logo in Header */
.site-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.site-logo-img {
    height: 2.5rem;
    width: auto;
}

.site-logo-text {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
}

.site-logo-link:hover .site-logo-text {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .site-logo-img {
        height: 2rem;
    }

    .site-logo-text {
        font-size: 1.6rem;
    }
}

/* Region info section */
.region-info {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.region-info h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.country-badge {
    background-color: #eef5ff;
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    border: 1px solid #d1e4ff;
}

/* eSIM Type Buttons */
.esim-type-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.esim-type-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.esim-type-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.esim-type-button i {
    font-size: 1.2em;
}

/* Regional and Global Pages */
.region-info,
.global-info {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.region-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.region-card h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.region-card p {
    color: #666;
    margin: 0 0 15px 0;
}

.region-card button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.region-card button:hover {
    background-color: #45a049;
}

/* ============================================
   REGIONAL INDEX PAGE STYLES
   Enhanced regional page with stats and icons
   ============================================ */

.regional-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.regional-hero {
    text-align: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.regional-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.regional-hero h1 i {
    margin-right: 0.5rem;
}

.regional-hero .hero-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.regional-hero .hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.regional-hero .hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.regional-hero .hero-features i {
    color: var(--primary-color);
}

/* Stats Bar */
.regional-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.regional-stats .stat-item {
    text-align: center;
}

.regional-stats .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.regional-stats .stat-label {
    font-size: 0.85rem;
    color: #666;
}

/* Region Grid - Enhanced Cards */
.regional-page .region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.regional-page .region-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    border: 1px solid #eee;
}

.regional-page .region-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.regional-page .region-card .region-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2196F3 100%);
    border-radius: 12px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.regional-page .region-card .region-icon i {
    font-size: 1.5rem;
    color: white;
}

.regional-page .region-card .region-content {
    flex: 1;
    min-width: 0;
}

.regional-page .region-card .region-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.35rem 0;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.regional-page .region-card .region-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.regional-page .region-card .area-badge,
.regional-page .region-card .package-count {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.regional-page .region-card .area-badge i,
.regional-page .region-card .package-count i {
    font-size: 0.7rem;
    color: #888;
}

.regional-page .region-card .region-price {
    text-align: right;
    margin-left: 1rem;
    flex-shrink: 0;
}

.regional-page .region-card .price-label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.regional-page .region-card .price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success-color, #28a745);
}

.regional-page .region-card .region-arrow {
    margin-left: 0.75rem;
    color: #ccc;
    transition: transform 0.2s ease, color 0.2s ease;
}

.regional-page .region-card:hover .region-arrow {
    transform: translateX(3px);
    color: var(--primary-color);
}

/* No Regions Message */
.regional-page .no-regions {
    text-align: center;
    padding: 3rem;
    color: #666;
    grid-column: 1 / -1;
}

.regional-page .no-regions i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ccc;
}

/* Info Section */
.regional-info-section {
    margin-bottom: 3rem;
}

.regional-info-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.regional-info-section .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.regional-info-section .info-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.regional-info-section .info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.regional-info-section .info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.regional-info-section .info-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Other Options Section */
.other-options {
    margin-bottom: 2rem;
}

.other-options h2 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.other-options .option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.other-options .option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all 0.25s ease;
}

.other-options .option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.other-options .option-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.other-options .option-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.other-options .option-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Regional Page Responsive */
@media (max-width: 768px) {
    .regional-hero {
        padding: 1.5rem 1rem;
    }

    .regional-hero h1 {
        font-size: 1.5rem;
    }

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

    .regional-hero .hero-features {
        gap: 1rem;
    }

    .regional-hero .hero-features span {
        font-size: 0.8rem;
    }

    .regional-stats {
        gap: 1.5rem;
        padding: 1rem;
    }

    .regional-stats .stat-number {
        font-size: 1.25rem;
    }

    .regional-stats .stat-label {
        font-size: 0.75rem;
    }

    .regional-page .region-grid {
        grid-template-columns: 1fr;
    }

    .regional-page .region-card {
        padding: 1rem;
    }

    .regional-page .region-card .region-icon {
        width: 45px;
        height: 45px;
    }

    .regional-page .region-card .region-icon i {
        font-size: 1.25rem;
    }

    .regional-page .region-card .region-content h3 {
        font-size: 0.95rem;
    }

    .regional-page .region-card .price-value {
        font-size: 1.1rem;
    }

    .regional-info-section .info-cards {
        grid-template-columns: 1fr;
    }

    .other-options .option-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .regional-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .regional-hero .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Breadcrumb Navigation */
.regional-page .breadcrumb {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.regional-page .breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.regional-page .breadcrumb li {
    display: flex;
    align-items: center;
}

.regional-page .breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #999;
}

.regional-page .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.regional-page .breadcrumb a:hover {
    text-decoration: underline;
}

.regional-page .breadcrumb li[aria-current="page"] {
    color: #666;
}

/* Visually Hidden (for screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Regional FAQ Section */
.regional-faq {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.regional-faq h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.regional-faq .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.regional-faq .faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.regional-faq .faq-item summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.regional-faq .faq-item summary::-webkit-details-marker {
    display: none;
}

.regional-faq .faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.regional-faq .faq-item[open] summary::after {
    content: '−';
}

.regional-faq .faq-item p {
    padding: 0 1.25rem 1rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.regional-faq .faq-item[open] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .regional-faq {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }

    .regional-faq .faq-item summary {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .regional-faq .faq-item p {
        padding: 0 1rem 0.875rem;
        font-size: 0.9rem;
    }
}

/* Highlighted eSIM card styling for top-up success */
.highlighted-esim {
    border: 2px solid var(--success-color);
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.top-up-notification {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid var(--success-color);
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 0 4px 4px 0;
}

.top-up-notification p {
    color: var(--success-color);
    font-weight: 500;
    margin: 0;
}

/* How It Works Section with Mobile Phone Design */
.how-it-works-section {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f9f9f9, #f2f2f2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 6px 6px 0 0;
}

.how-it-works-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: #333;
}

.how-it-works-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498db, #2980b9, transparent);
}

.mobile-phones-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
    perspective: 1000px;
}

.mobile-phone {
    position: relative;
    width: 240px;
    height: 480px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: rotateY(0deg) translateZ(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 36px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 5;
    pointer-events: none;
}

.mobile-phone:hover {
    transform: rotateY(5deg) rotateX(2deg) translateZ(10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(52, 152, 219, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background-color: #111;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 10;
    overflow: hidden;
}

.phone-notch::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(52, 152, 219, 0.9);
    border-radius: 50%;
    top: 8px;
    left: 30px;
    box-shadow: 0 0 4px rgba(52, 152, 219, 0.8);
}

.phone-notch::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow-y: auto;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.phone-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-button {
    display: none;
    /* Hide the button to prevent it from covering text */
}

/* Phone Status Bar */
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 15px;
    background: linear-gradient(to bottom, #f0f0f0, #f8f8f8);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    font-size: 12px;
    color: #333;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.status-time {
    position: relative;
}

.status-time::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #4cd964;
    border-radius: 50%;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wifi-icon,
.signal-icon,
.battery-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transform: scale(0.9);
}

/* Phone 1: QR Code Scanning Screen */
.qr-scan-screen {
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px);
    background-color: #fff;
    position: relative;
}

.qr-scan-header {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.qr-scan-header h3 {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.qr-scan-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.qr-scan-image {
    width: 100%;
    max-width: 220px;
    height: 220px;
    position: relative;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.qr-code-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.qr-code-img {
    width: 90%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

.qr-scan-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #ffcc00;
    border-radius: 8px;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.3);
    animation: scanPulse 2s infinite;
}

@keyframes scanPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}

.qr-scan-instructions {
    text-align: center;
    margin-bottom: 20px;
}

.qr-scan-instructions p {
    margin: 0 0 10px;
    color: #333;
    font-size: 14px;
}

.qr-learn-more {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.qr-scan-footer {
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.qr-manual-entry {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Phone 2: Cellular Settings Screen */
.cellular-settings-screen {
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px);
    background-color: #f2f2f7;
    overflow-y: auto;
}

.cellular-settings-header {
    padding: 15px;
    background-color: #f2f2f7;
    border-bottom: 1px solid #e0e0e0;
}

.back-button {
    color: #007aff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.back-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #007aff;
    border-bottom: 2px solid #007aff;
    transform: translateY(-50%) rotate(45deg);
}

.cellular-settings-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.cellular-settings-content {
    padding: 15px;
}

.settings-card {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.settings-row:last-child {
    border-bottom: none;
}

.settings-label {
    font-size: 16px;
    color: #000;
}

.settings-value {
    font-size: 16px;
    color: #8e8e93;
    margin-right: 5px;
}

.settings-arrow {
    color: #c7c7cc;
    font-size: 18px;
}

.settings-toggle {
    width: 50px;
    height: 30px;
    background-color: #e9e9eb;
    border-radius: 15px;
    position: relative;
    transition: background-color 0.3s;
}

.settings-toggle.active {
    background-color: #34c759;
}

.settings-toggle::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.settings-toggle.active::before {
    transform: translateX(20px);
}

.settings-section-label {
    font-size: 12px;
    font-weight: 500;
    color: #6d6d72;
    margin: 15px 0 5px;
    padding: 0 15px;
    text-transform: uppercase;
}

.settings-description {
    font-size: 12px;
    color: #8e8e93;
    padding: 0 15px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.delete-esim-button {
    text-align: center;
    color: #ff3b30;
    font-size: 16px;
    font-weight: 500;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    margin-top: 20px;
}

/* Phone 3: Data Plan Card */
.data-plan-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 80px);
    background-color: #f5f5f5;
    padding: 20px;
}

.data-plan-card {
    width: 100%;
    max-width: 280px;
    background-color: #b71c1c;
    border-radius: 15px;
    padding: 20px;
    color: white;
    position: relative;
    box-shadow: 0 10px 20px rgba(183, 28, 28, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.data-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

.data-plan-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: #4caf50;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.data-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.data-plan-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.data-plan-flag {
    width: 40px;
    height: 25px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.thai-flag {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            #ed1c24 0%, #ed1c24 16.67%,
            #fff 16.67%, #fff 33.33%,
            #0039a6 33.33%, #0039a6 66.67%,
            #fff 66.67%, #fff 83.33%,
            #ed1c24 83.33%, #ed1c24 100%);
}

.australia-flag {
    width: 100%;
    height: 100%;
    background-color: #00008B;
    position: relative;
    overflow: hidden;
}

.australia-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background-image:
        linear-gradient(to bottom right, transparent calc(50% - 1px), white calc(50% - 1px), white calc(50% + 1px), transparent calc(50% + 1px)),
        linear-gradient(to bottom left, transparent calc(50% - 1px), white calc(50% - 1px), white calc(50% + 1px), transparent calc(50% + 1px));
}

.canada-flag {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}

.canada-flag::before,
.canada-flag::after {
    content: '';
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    background-color: #ff0000;
}

.canada-flag::before {
    left: 0;
}

.canada-flag::after {
    right: 0;
}

.france-flag {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0055a4 33.33%, #ffffff 33.33%, #ffffff 66.67%, #ef4135 66.67%);
}

.turkey-flag {
    width: 100%;
    height: 100%;
    background-color: #e30a17;
    position: relative;
}

.turkey-flag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    background-color: white;
    border-radius: 50%;
}

.uae-flag {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            #00732f 33.33%,
            #ffffff 33.33%, #ffffff 66.67%,
            #000000 66.67%);
    position: relative;
}

.uae-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background-color: #ff0000;
}

.data-plan-details {
    margin-bottom: 20px;
}

.data-plan-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.data-plan-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.data-plan-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.data-icon::before {
    content: '📊';
    font-size: 12px;
}

.duration-icon::before {
    content: '⏱️';
    font-size: 12px;
}

.speed-icon::before {
    content: '⚡';
    font-size: 12px;
}

.coverage-icon::before {
    content: '🌍';
    font-size: 12px;
}

.price-icon::before {
    content: '💰';
    font-size: 12px;
}

.data-plan-label {
    flex: 1;
    font-size: 14px;
    opacity: 0.8;
}

.data-plan-value {
    font-size: 16px;
    font-weight: 600;
}

.data-plan-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.data-plan-info-button,
.data-plan-buy-button {
    padding: 10px 0;
    text-align: center;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    flex: 1;
    transition: all 0.3s ease;
}

.data-plan-info-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    margin-right: 10px;
}

.data-plan-buy-button {
    background-color: white;
    color: #b71c1c;
}

.data-plan-info-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.data-plan-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Phone 4: Country Selection */
.country-selection-screen {
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px);
    background-color: #f5f5f5;
    padding: 20px;
    overflow-y: auto;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.country-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.country-flag {
    width: 60px;
    height: 40px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.country-name {
    font-size: 14px;
    color: #333;
    text-align: center;
    font-weight: 500;
}

/* Step 1: Choose Destination */
.phone-content-1 {
    background-color: #fff;
}

.pikasim-app-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pikasim-app-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.5;
    pointer-events: none;
}

.app-logo {
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    align-items: center;
}

.app-logo::before {
    content: '';
    background-image: url('/img/pika-trans.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 6px;
}

.app-back {
    font-size: 14px;
    opacity: 0.9;
}

.search-box-mock {
    margin: 15px;
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-box-mock:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    border-color: rgba(52, 152, 219, 0.3);
}

.search-icon {
    color: #3498db;
    font-size: 16px;
}

.search-text {
    color: #999;
    font-size: 14px;
}

.country-grid-mock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.country-card-mock {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.country-card-mock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

.country-card-mock:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(52, 152, 219, 0.2);
}

.country-flag-img {
    width: 40px;
    height: 25px;
    margin: 0 auto 5px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.country-card-mock:hover .country-flag-img {
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.country-name-mock {
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

/* Step 2: Purchase eSIM */
.phone-content-2 {
    background-color: #fff;
}

.package-details-mock {
    background-color: #f8f8f8;
    margin: 15px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.package-details-mock h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.package-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.info-label {
    color: #666;
}

.info-value {
    font-weight: 500;
    color: #333;
}

.checkout-form-mock {
    margin: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field-label {
    font-size: 12px;
    color: #666;
}

.field-input {
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.checkout-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

/* Step 3: Install eSIM */
.phone-content-3 {
    background-color: #f2f2f7;
}

.settings-header {
    background-color: #f2f2f7;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.settings-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.settings-menu {
    margin: 15px 0;
    background-color: #fff;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.menu-icon.cellular {
    width: 24px;
    height: 24px;
    background-color: #3498db;
    border-radius: 5px;
    margin-right: 10px;
    position: relative;
}

.menu-icon.cellular::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-radius: 2px;
    border: 2px solid white;
}

.menu-text {
    flex-grow: 1;
    font-size: 16px;
    color: #333;
}

.menu-arrow {
    color: #999;
    font-size: 20px;
}

.qr-container {
    margin: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-code-mock {
    width: 150px;
    height: 150px;
    background: repeating-conic-gradient(#000 0% 25%, #fff 0% 50%) 50% / 10% 10%;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 6px solid white;
    margin: 0 auto;
}

.qr-logo {
    width: 32px;
    height: 32px;
    position: absolute;
    border-radius: 50%;
    background-color: white;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.qr-instructions {
    font-size: 14px;
    color: #333;
    text-align: center;
}

/* Step 4: Activate and Connect (iOS Style) */
.phone-content-4 {
    background-color: #f2f2f7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* iOS Settings Header */
.ios-settings-header {
    background-color: #f2f2f7;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ios-back-button {
    color: #007aff;
    font-size: 16px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 12px;
    transition: all 0.2s ease;
    width: fit-content;
}

.ios-back-button:hover {
    opacity: 0.7;
    transform: translateX(-2px);
}

.ios-back-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #007aff;
    border-bottom: 2px solid #007aff;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.2s ease;
}

.ios-back-button:hover::before {
    left: -2px;
}

.ios-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* iOS Settings Groups */
.ios-settings-group {
    margin: 20px 0;
    background-color: #fff;
    border-top: 1px solid #c8c7cc;
    border-bottom: 1px solid #c8c7cc;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transform: translateZ(0);
    animation: fadeIn 0.4s ease-out;
    animation-fill-mode: both;
}

.ios-settings-group:nth-child(1) {
    animation-delay: 0.1s;
}

.ios-settings-group:nth-child(2) {
    animation-delay: 0.2s;
}

.ios-settings-group:nth-child(3) {
    animation-delay: 0.3s;
}

.ios-settings-group:nth-child(4) {
    animation-delay: 0.4s;
}

.ios-section-header {
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 500;
    color: #6d6d72;
    background-color: #f2f2f7;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.ios-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    background: linear-gradient(to right, rgba(200, 199, 204, 0.5), rgba(200, 199, 204, 0.8), rgba(200, 199, 204, 0.5));
}

/* iOS Toggle Rows */
.ios-toggle-row,
.ios-menu-row,
.ios-plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 15px;
    background-color: #fff;
    transition: background-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.ios-toggle-row:active,
.ios-menu-row:active,
.ios-plan-row:active {
    background-color: #f0f0f0;
}

.ios-toggle-row::after,
.ios-menu-row::after,
.ios-plan-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    background-color: rgba(200, 199, 204, 0.5);
}

.ios-border-top {
    border-top: 1px solid #e0e0e0;
}

.ios-setting-label {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    transition: color 0.2s ease;
}

.ios-toggle-row:hover .ios-setting-label,
.ios-menu-row:hover .ios-setting-label {
    color: #007aff;
}

.ios-value {
    font-size: 16px;
    color: #8e8e93;
    margin-right: 5px;
    font-weight: 400;
}

/* iOS Toggle Switch */
.ios-toggle {
    position: relative;
    width: 50px;
    height: 30px;
    background-color: #e9e9eb;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ios-toggle.active {
    background-color: #34c759;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 10px rgba(52, 199, 89, 0.3);
}

.ios-toggle::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.ios-toggle.active::before {
    transform: translateX(20px);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.ios-toggle:hover::before {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: scale(1.05) translateX(0);
}

.ios-toggle.active:hover::before {
    transform: scale(1.05) translateX(19px);
}

/* iOS Chevron */
.ios-chevron {
    width: 8px;
    height: 8px;
    border-top: 2px solid #c7c7cc;
    border-right: 2px solid #c7c7cc;
    transform: rotate(45deg);
}

/* iOS Plan Row */
.ios-plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ios-plan-name {
    font-size: 16px;
    color: #000;
    margin-bottom: 2px;
}

.ios-plan-number {
    font-size: 14px;
    color: #8e8e93;
}

/* iOS Data Usage */
.ios-data-usage {
    padding: 20px 15px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.ios-data-usage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.ios-data-label {
    font-size: 14px;
    color: #000;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.ios-data-label::before {
    content: '📊';
    margin-right: 6px;
    font-size: 14px;
}

.ios-data-value {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ios-data-value::after {
    content: '23%';
    font-size: 14px;
    color: #3498db;
    font-weight: 500;
    background-color: rgba(52, 152, 219, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.ios-data-bar {
    height: 8px;
    background-color: #e9e9eb;
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ios-data-progress {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 4px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.ios-data-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.ios-data-expiry {
    font-size: 14px;
    color: #8e8e93;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ios-data-expiry::before {
    content: '⏱️';
    margin-right: 6px;
    font-size: 14px;
}

.ios-data-expiry::after {
    content: 'Renews May 8';
    font-size: 12px;
    color: #8e8e93;
}

/* Step Caption */
.step-caption {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px 15px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateZ(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
}

.mobile-phone:hover .step-caption {
    transform: translateY(-5px);
}

.step-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.step-caption .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    margin-bottom: 10px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Minimal Step Content Design */
.minimal-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    height: 100%;
    margin-bottom: 80px;
    /* Space for step caption */
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mobile-phone:hover .step-icon {
    transform: scale(1.1) translateY(-5px);
}

.minimal-step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #2c3e50;
}

.minimal-step-content p {
    font-size: 0.9rem;
    color: #5c6b7a;
    line-height: 1.5;
    margin: 0;
    padding: 0 10px;
}

.optional-tag {
    margin-top: 1rem;
    padding: 4px 12px;
    background-color: #f1c40f;
    color: #333;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step-caption .step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
}

.mobile-phone:hover .step-caption .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.5);
}

.step-caption h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.step-caption h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, transparent);
}

.step-caption p {
    margin: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Responsive adjustments for mobile phones */
@media (max-width: 1200px) {
    .mobile-phones-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-phone {
        width: 220px;
        height: 440px;
    }

    .mobile-phones-container {
        gap: 1.5rem;
    }

    .qr-code-mock {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .mobile-phones-container {
        flex-direction: column;
        align-items: center;
    }

    .mobile-phone {
        width: 260px;
        height: 520px;
    }
}

/* Why PikaSim Section */
.why-pikasim-section {
    margin: 5rem 0;
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f9f9f9, #f2f2f2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.why-pikasim-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 6px 6px 0 0;
}

.why-pikasim-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    color: #333;
}

.why-pikasim-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498db, #2980b9, transparent);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #3498db;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px dashed rgba(52, 152, 219, 0.4);
    opacity: 0.7;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), rgba(41, 128, 185, 0.15));
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    position: relative;
    display: inline-block;
}

.benefit-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.5), transparent);
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

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

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .benefits-container {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* FAQ Section for Homepage */
.faq-section-home {
    margin: 5rem 0;
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f9f9f9, #f2f2f2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.faq-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 6px 6px 0 0;
}

.faq-section-home h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    color: #333;
}

.faq-section-home h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498db, #2980b9, transparent);
}

.faq-container-home {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-home {
    margin-bottom: 1.2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: white;
    transition: all 0.3s ease;
}

.faq-item-home:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question-home {
    background-color: white;
    padding: 1.2rem 1.8rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #2c3e50;
    position: relative;
    padding-right: 50px;
    border-left: 0px solid #3498db;
    transition: all 0.3s ease;
}

.faq-question-home:hover {
    background-color: #f8f9fa;
    border-left: 5px solid #3498db;
}

.faq-question-home::after {
    content: '+';
    font-size: 1.5rem;
    color: #3498db;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.faq-question-home.active::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.faq-question-home.active {
    background-color: #f8f9fa;
    border-left: 5px solid #3498db;
}

.faq-answer-home {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: white;
}

.faq-answer-home.active {
    padding: 1.5rem 1.8rem;
    max-height: 1000px;
}

.faq-answer-home p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.faq-answer-home p:last-child {
    margin-bottom: 0;
}

.faq-answer-home ul,
.faq-answer-home ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.faq-answer-home li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #666;
}

.faq-answer-home a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-answer-home a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.view-all-faqs {
    margin-top: 2.5rem;
}

.view-all-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

@media (max-width: 768px) {
    .faq-section-home {
        padding: 2.5rem 1rem;
    }

    .faq-section-home h2 {
        font-size: 1.8rem;
    }

    .faq-question-home {
        padding: 1rem 1.5rem 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer-home.active {
        padding: 1.2rem 1.5rem;
    }

    .faq-answer-home p,
    .faq-answer-home li {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .faq-section-home h2 {
        font-size: 1.6rem;
    }

    .faq-question-home::after {
        font-size: 1.3rem;
        right: 15px;
    }
}

/* Package Action Buttons */
.package-actions {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

/* More Info Button - takes up less space */
.more-info-btn {
    flex: 0.55;
}

/* Payment Button Group - takes up more space for Buy Now button */
.payment-button-group {
    flex: 1.45;
    position: relative;
}

/* More Info Button - Subtle */
.more-info-btn {
    width: 100% !important;
    padding: 12px 18px !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 10px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    color: white !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    backdrop-filter: blur(10px) !important;
    box-sizing: border-box !important;
}

/* Buy Now Button - PROMINENT with site's blue theme */
.buy-now-btn {
    width: 100% !important;
    padding: 14px 20px !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3) !important;
    box-sizing: border-box !important;

    /* Flexbox to position text and arrow */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.more-info-btn:hover {
    background: rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%) !important;
    border-color: #FFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5) !important;
}

/* Stripe Button Styles */
.buy-now-btn.stripe-btn {
    background: #635bff !important;
    border-color: #635bff !important;
    box-shadow: 0 4px 15px rgba(99, 91, 255, 0.3) !important;
}

.buy-now-btn.stripe-btn:hover {
    background: #5147e5 !important;
    border-color: #5147e5 !important;
    box-shadow: 0 6px 20px rgba(99, 91, 255, 0.5) !important;
}

/* Crypto Button Styles */
.buy-now-btn.crypto-btn {
    background: #f7931a !important;
    border-color: #f7931a !important;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3) !important;
}

.buy-now-btn.crypto-btn:hover {
    background: #e8850f !important;
    border-color: #e8850f !important;
    box-shadow: 0 6px 20px rgba(247, 147, 26, 0.5) !important;
}

/* Payment buttons row */
.payment-buttons-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.payment-buttons-row .buy-now-btn {
    flex: 1;
    width: auto !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
}

/* Buy Now Container */
.buy-now-container {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 8px;
    width: 100%;
}

.buy-now-header {
    text-align: center;
    margin-bottom: 4px;
}

.buy-now-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.buy-now-instant {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-left: 6px;
}

/* Payment buttons stacked (vertical) */
.payment-buttons-stack {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
}

.payment-buttons-stack .buy-now-btn {
    width: 100% !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.payment-buttons-stack .buy-now-btn .fab {
    font-size: 1rem !important;
}

@media (max-width: 480px) {
    .payment-buttons-row {
        flex-direction: column;
        gap: 8px;
    }

    .payment-buttons-row .buy-now-btn {
        width: 100% !important;
    }
}

.payment-options-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    display: none;
    z-index: 1000;
    overflow: hidden;
    min-width: 200px;
}

.payment-options-menu.show {
    display: block;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    color: #333 !important;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.payment-option:last-child {
    border-bottom: none;
}

.payment-option:hover {
    background: #f8f9fa !important;
}

.payment-option i {
    font-size: 20px !important;
    width: 24px !important;
    text-align: center !important;
}

.payment-option i.fa-credit-card {
    color: #3b82f6 !important;
}

.payment-option i.fa-bitcoin {
    color: #f7931a !important;
}

.payment-option span {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #333 !important;
}

/* Trust Badges (Stripe & SSL) */
.trust-badges-package {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.badge-item-small {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.badge-item-small i {
    font-size: 14px;
    opacity: 0.9;
}

.crypto-badge-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
}

.crypto-badge-package i {
    font-size: 14px;
    opacity: 0.9;
}

/* Mobile Responsive Styles for Package Buttons */
@media (max-width: 767px) {
    .package-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 10px;
    }

    .more-info-btn,
    .buy-now-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        margin-top: 0 !important;
    }

    .payment-button-group {
        width: 100%;
    }

    .payment-options-menu {
        min-width: 100%;
    }

    /* Trust badges - clean horizontal layout */
    .trust-badges-package {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        align-items: center;
        gap: 12px !important;
        margin-top: 12px;
        padding: 0 10px;
    }

    .badge-item-small {
        display: flex !important;
        align-items: center;
        gap: 5px !important;
        font-size: 11px !important;
        white-space: nowrap;
    }

    .badge-item-small i {
        font-size: 13px !important;
    }

    /* Crypto badge - cleaner look */
    .crypto-badge-package {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px !important;
        font-size: 11px !important;
        margin-top: 8px;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .crypto-badge-package i {
        font-size: 13px !important;
    }
}

/* Mobile responsive */
@media (max-width: 576px) {
    .payment-options-menu {
        min-width: 260px;
    }

    .option-icon {
        font-size: 24px;
        margin-right: 12px;
    }

    .option-title {
        font-size: 14px;
    }

    .option-subtitle {
        font-size: 12px;
    }
}

/* ====================================
   Review System Styles
   ==================================== */

/* Review Form Container */
.review-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.required {
    color: var(--error-color);
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.875rem;
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
    font-size: 2rem;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s;
    margin: 0;
}

.star-rating label:hover,
.star-rating label:hover~label {
    color: #ffc107;
}

.star-rating input[type="radio"]:checked~label {
    color: #ffc107;
}

/* Messages */
.success-message,
.error-message,
.warning-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.warning-message {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

/* Privacy Notice */
.privacy-notice {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Reviews Page */
.reviews-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.reviews-header {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rating-summary {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin: 0.5rem 0;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.rating-distribution {
    flex: 1;
    min-width: 250px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.rating-label {
    min-width: 40px;
    color: #666;
    font-size: 0.9rem;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #ffc107;
    transition: width 0.3s;
}

.rating-count-small {
    min-width: 40px;
    text-align: right;
    color: #999;
    font-size: 0.85rem;
}

.actions-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* No Reviews State */
.no-reviews {
    text-align: center;
    padding: 3rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.no-reviews svg {
    color: #ccc;
    margin-bottom: 1rem;
}

.no-reviews h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.no-reviews p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
}

.review-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #666;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--success-color);
}

.verified-badge svg {
    color: var(--success-color);
}

.review-date {
    color: #999;
}

.review-rating {
    font-size: 1.25rem;
    color: #ddd;
}

.review-rating .star.filled {
    color: #ffc107;
}

.review-body {
    margin: 1rem 0;
    line-height: 1.6;
    color: #333;
}

.review-footer {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.review-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.875rem;
    color: #666;
}

.review-tag svg {
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {

    .review-container,
    .reviews-page {
        padding: 1rem;
    }

    .rating-summary {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-actions,
    .actions-row {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .review-header {
        flex-direction: column;
        gap: 1rem;
    }

    .review-rating {
        align-self: flex-start;
    }
}

/* ===== eSIM Provision Pages (Shared) ===== */

/* Container and Card Styles */
.provision-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .provision-container {
        margin: 40px auto;
        padding: 2rem;
    }
}

.provision-card {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .provision-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

.provision-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
}

.provision-id {
    font-family: 'Courier New', monospace;
    color: #666;
    font-size: 14px;
    margin-top: 0.5rem;
}

/* Status Badge Styles */
.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin: 1rem 0;
}

.status-pending {
    background: #FFF3CD;
    color: #856404;
}

.status-confirming {
    background: #CCE5FF;
    color: #004085;
}

.status-settled {
    background: #D4EDDA;
    color: #155724;
}

.status-expired {
    background: #F8D7DA;
    color: #721C24;
}

.status-failed {
    background: #F8D7DA;
    color: #721C24;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 25px;
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.5s ease;
}

/* QR Code Container */
.qr-code-container {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .qr-code-container {
        padding: 2rem;
        margin: 2rem 0;
    }
}

.qr-code-img {
    max-width: 100%;
    width: 250px;
    border: 3px solid #3498db;
    border-radius: 8px;
    padding: 10px;
    background: white;
}

/* Generated QR code container (for Airalo and providers without hosted image) */
.qr-code-generated {
    display: inline-block;
    border: 3px solid #3498db;
    border-radius: 8px;
    padding: 10px;
    background: white;
}

.qr-code-generated img {
    display: block;
}

@media (min-width: 768px) {
    .qr-code-img {
        max-width: 300px;
    }
}

.qr-subtitle {
    margin-top: 1rem;
    color: #666;
}

/* eSIM Details Section */
.esim-details {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .esim-details {
        margin-top: 2rem;
    }
}

.esim-details-title {
    color: #3498db;
}

/* Detail Row Styles */
.detail-row {
    display: flex;
    flex-direction: column;
    padding: 12px;
    margin: 8px 0;
    background: #f8f9fa;
    border-radius: 6px;
}

.detail-label {
    font-weight: bold;
    color: #555;
    margin-bottom: 6px;
}

.detail-value {
    color: #333;
    font-family: 'Courier New', monospace;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.detail-value-small {
    font-size: 12px;
}

@media (min-width: 768px) {
    .detail-row {
        flex-direction: row;
    }

    .detail-label {
        min-width: 150px;
        margin-bottom: 0;
    }
}

/* Icons */
.icon-large {
    font-size: 64px;
    margin: 1rem 0;
}

/* Messages */
.waiting-message {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Text Utilities */
.text-blue {
    color: #3498db;
}

.text-small {
    font-size: 12px;
}

.text-gray {
    color: #666;
}

.text-dark-gray {
    color: #333;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
    margin: 8px;
}

.btn:hover {
    background: #2980b9;
    color: white;
}

.btn-secondary {
    background: #95a5a6;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* Wallet Action Button */
.wallet-action-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    transition: all 0.3s ease;
}

.wallet-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.wallet-action-btn i {
    font-size: 18px;
    margin-right: 8px;
}

@media (min-width: 768px) {
    .wallet-action-btn {
        max-width: 400px;
        padding: 14px 32px;
        font-size: 16px;
    }

    .wallet-action-btn i {
        font-size: 20px;
    }
}

/* Install Box Styles */
.install-box-ios {
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #FFD700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    margin-bottom: 24px;
}

.install-box-wallet {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #38b2ac;
    box-shadow: 0 8px 20px rgba(56, 178, 172, 0.3);
    margin-bottom: 24px;
}

.install-box-pdf {
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #dc3545;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.2);
    margin-bottom: 24px;
}

.install-box-pdf .install-box-icon-large {
    color: #dc3545;
}

.install-box-app {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #f5a623;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.2);
    margin-bottom: 24px;
}

.install-box-app .install-box-icon-large {
    color: #f5a623;
}

.install-box-android {
    background: linear-gradient(135deg, #3DDC84 0%, #2BB673 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #1B5E20;
    box-shadow: 0 8px 20px rgba(61, 220, 132, 0.3);
    margin-bottom: 24px;
}

.install-box-title {
    color: white;
    margin-bottom: 15px;
    font-size: 26px;
}

.install-box-title-medium {
    color: white;
    margin-bottom: 15px;
    font-size: 24px;
}

.install-box-title-small {
    color: white;
    margin-bottom: 12px;
    font-size: 22px;
}

.install-box-text {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.install-box-text-medium {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.install-box-text-small {
    color: white;
    margin-bottom: 15px;
    font-size: 15px;
}

.install-box-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.install-box-icon-large {
    font-size: 32px;
    vertical-align: middle;
}

.install-box-icon-medium {
    font-size: 28px;
    vertical-align: middle;
}

/* Install Box Details/Summary */
.install-details {
    margin-top: 15px;
    text-align: left;
}

.install-summary {
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.install-summary-arrow {
    font-size: 12px;
}

.install-details-content {
    margin-top: 10px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.install-details-text {
    color: white;
    font-size: 13px;
    margin: 0 0 10px 0;
}

.install-details-list {
    color: white;
    font-size: 13px;
    margin: 0;
    padding-left: 18px;
    line-height: 1.6;
}

.install-details-list li {
    margin-bottom: 8px;
}

.install-details-list li:last-child {
    margin-bottom: 0;
}

/* Code Display */
.code-display {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.code-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
    line-height: 1.4;
}

.code-text-small {
    font-size: 13px;
    opacity: 0.9;
}

/* Alert Boxes */
.alert-box-warning {
    background: #fff0e0;
    border: 2px solid #e67e22;
    border-radius: 8px;
    padding: 20px;
    margin: 2rem 0;
    text-align: center;
    color: #333;
}

.alert-box-pending {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 2rem 0;
}

.alert-box-settled {
    background: #e8f5e8;
    border: 2px solid #4caf50;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.alert-box-title {
    margin: 0 0 10px 0;
    color: #856404;
}

.alert-box-title-success {
    margin: 0 0 10px 0;
    color: #2e7d32;
}

.alert-box-text {
    color: #856404;
    margin: 0 0 15px 0;
    font-size: 15px;
}

.alert-box-text-success {
    color: #2e7d32;
    margin: 0 0 15px 0;
    font-size: 14px;
}

.alert-box-note {
    color: #856404;
    margin: 0;
    font-size: 14px;
}

/* Code Block */
.code-block {
    background: rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    border-radius: 4px;
    display: block;
    color: #1b5e20;
    font-size: 13px;
    word-break: break-all;
}

.code-block-pending {
    background: rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 8px;
    word-break: break-all;
}

/* Payment Details Box */
.payment-details-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* URL Save Box */
.url-save-box {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border: 3px solid #1b5e20;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.url-save-title {
    color: white;
    margin: 0 0 12px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.url-save-message {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 15px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.url-code-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.url-code {
    background: rgba(255, 255, 255, 0.95);
    color: #1b5e20;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    word-break: break-all;
    flex: 1;
    min-width: 200px;
}

.copy-url-btn {
    background: white;
    color: #2e7d32;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-url-btn:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

.url-save-suggestion {
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0 0 0;
    font-size: 0.9rem;
}

/* Top-Up Reminder Box */
.topup-reminder-box {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border: 3px solid #e65100;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.topup-reminder-title {
    color: white;
    margin: 0 0 12px 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.topup-reminder-message {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 15px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.topup-iccid-container {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.topup-iccid-label {
    color: white;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.topup-iccid-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topup-iccid-code {
    background: rgba(255, 255, 255, 0.95);
    color: #e65100;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    word-break: break-all;
    flex: 1;
    min-width: 150px;
}

.topup-copy-btn {
    background: white;
    color: #f57c00;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.topup-copy-btn:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

.topup-link-btn {
    display: inline-block;
    background: white;
    color: #f57c00;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.topup-link-btn:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
    color: #f57c00;
}

/* ICCID Copy Container (for detail rows) */
.iccid-copy-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.copy-btn {
    background: #38b2ac;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

/* Review CTA Section */
.review-cta-section {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    color: white;
}

.review-cta-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.review-cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.review-cta-subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
}

.review-cta-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-cta-btn {
    background: white;
    color: #2d3748;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.review-cta-btn:hover {
    color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.review-cta-note {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.review-cta-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.review-cta-secondary-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.review-cta-btn-secondary:hover {
    color: white;
    background: rgba(255, 255, 255, 0.3);
}

.review-cta-disclaimer {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.review-cta-link {
    color: white;
    text-decoration: underline;
    font-size: 0.95rem;
    display: block;
    margin-top: 1.5rem;
}

.review-cta-link:hover {
    color: white;
}

/* Center Text Utility */
.text-center {
    text-align: center;
}

/* Margin Top Utilities */
.mt-2 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* ============================================
   Day Pass Package Styles
   ============================================ */

/* Day Pass Badge */
.day-pass-badge {
    display: inline-block;
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Day Pass Total Section - contains total and day selector */
/* Compact Day Pass Section - single row */
.day-pass-total-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 8px 0;
    gap: 8px;
}

/* Days selector - left side */
.day-pass-days-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Day Pass +/- Buttons */
.day-pass-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
}

.day-pass-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

.day-pass-btn:active {
    transform: scale(0.95);
}

/* Days display */
.day-pass-days-display {
    font-size: 14px;
    font-weight: 600;
    color: white;
    min-width: 50px;
    text-align: center;
}

/* Total row - right side */
.day-pass-total-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.day-pass-total-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.day-pass-total-price {
    font-size: 18px;
    font-weight: 700;
    color: #4ade80;
}

/* Day Pass Notice (No Top-Ups Warning) */
.day-pass-notice {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.day-pass-notice-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.day-pass-notice-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .day-pass-btn {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .day-pass-days-display {
        font-size: 13px;
        min-width: 45px;
    }

    .day-pass-total-price {
        font-size: 16px;
    }

    .day-pass-total-section {
        padding: 6px 10px;
    }

    .day-pass-total-label {
        font-size: 11px;
    }
}

/* ==============================================
   FIXED HELP BUTTON (appears on all pages except /help)
   ============================================== */

.fixed-help-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(56, 178, 172, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 1000;
}

.fixed-help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 178, 172, 0.5);
    color: white;
    text-decoration: none;
}

.fixed-help-btn i {
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    .fixed-help-btn {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .fixed-help-btn i {
        font-size: 1rem;
    }
}

/* ==============================================
   HELP PAGE STYLES
   ============================================== */

/* Trust Hero Section */
.help-hero {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    margin: -1rem -1rem 0 -1rem;
    border-radius: 8px 8px 0 0;
}

.help-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.help-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.help-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.help-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.help-trust-badge i {
    font-size: 1rem;
}

.help-review-highlight {
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.help-review-highlight .stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.help-review-highlight .review-text {
    font-style: italic;
    font-size: 0.95rem;
    color: #fff;
}

.help-review-highlight .review-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
}

/* Help Chat Container */
.help-chat-container {
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0 1rem 1rem 1rem;
    overflow: hidden;
}

.help-chat-header {
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

/* Quick Action Buttons */
.help-quick-actions {
    padding: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.help-quick-actions-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
    text-align: center;
}

.help-quick-actions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.help-quick-action-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
}

.help-quick-action-btn:hover {
    background: #38b2ac;
    color: white;
    border-color: #38b2ac;
}

.help-quick-action-btn i {
    margin-right: 0.4rem;
}

/* ICCID Row */
.help-iccid-row {
    padding: 0.75rem 1rem;
    background: #f7fafa;
    border-bottom: 1px solid #e2e8f0;
}

.help-iccid-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.4rem;
}

.help-iccid-row label i {
    margin-right: 0.3rem;
    color: #38b2ac;
}

.help-iccid-field {
    display: flex;
    gap: 0.5rem;
}

.help-iccid-field input {
    flex: 1;
    padding: 0.6rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    min-width: 0;
}

.help-iccid-field input:focus {
    border-color: #38b2ac;
}

.help-iccid-field input::placeholder {
    color: #a0aec0;
}

.help-iccid-field button {
    padding: 0.6rem 1.25rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.help-iccid-field button:hover {
    background: #2980b9;
}

.help-iccid-hint {
    display: block;
    font-size: 0.73rem;
    color: #718096;
    margin-top: 0.35rem;
}

/* Device Row */
.help-device-row {
    padding: 0.5rem 1rem;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-device-row label {
    font-size: 0.85rem;
    color: #666;
    white-space: nowrap;
}

.help-device-row select {
    flex: 1;
    max-width: 200px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.help-device-optional {
    font-size: 0.75rem;
    color: #999;
}

/* Highlighted quick action button */
.help-quick-action-btn.help-quick-action-btn--highlight {
    background: #e6fffa;
    border-color: #38b2ac;
    color: #234e52;
    font-weight: 600;
}

.help-quick-action-btn.help-quick-action-btn--highlight:hover {
    background: #38b2ac;
    color: white;
}

/* Chat Messages */
.help-chat-messages {
    height: 450px;
    overflow-y: auto;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fafafa;
}

.help-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    max-width: 85%;
    line-height: 1.6;
    word-wrap: break-word;
    animation: helpSlideIn 0.3s ease-out;
}

@keyframes helpSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-user-message {
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(56, 178, 172, 0.3);
}

.help-assistant-message {
    background: white;
    border: 1px solid #e9ecef;
    margin-right: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.help-assistant-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.help-assistant-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.help-assistant-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}

/* Message content formatting */
.help-message-content p {
    margin: 0 0 0.75rem 0;
}

.help-message-content p:last-child {
    margin-bottom: 0;
}

.help-message-content ul,
.help-message-content ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.help-message-content li {
    margin: 0.35rem 0;
}

.help-message-content strong {
    font-weight: 600;
    color: inherit;
}

.help-user-message strong {
    color: #fff;
}

.help-message-content em {
    font-style: italic;
}

/* Typing indicator */
.help-typing-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-typing-text {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.help-typing-indicator {
    display: inline-flex;
    align-items: center;
}

.help-typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: #38b2ac;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    animation: helpTyping 1.4s infinite;
}

.help-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.help-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes helpTyping {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Chat Input */
.help-chat-input {
    display: flex;
    gap: 0.5rem;
}

.help-chat-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.help-chat-input input:focus {
    outline: none;
    border-color: #38b2ac;
}

.help-chat-input button {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

/* Help Data Check Section */
.help-data-check-section {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 12px;
    text-align: center;
    color: white;
}

.help-data-check-section h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: white;
}

.help-data-check-section h2 i {
    margin-right: 0.5rem;
}

.help-data-check-section > p {
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
}

.help-data-check-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.help-data-check-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #333;
    box-sizing: border-box;
    text-align: center;
}

.help-data-check-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

.help-data-check-form input::placeholder {
    color: #999;
}

.help-data-check-form button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-sizing: border-box;
}

.help-data-check-form button:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.help-data-check-hint {
    margin: 1rem 0 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.help-data-check-hint i {
    margin-right: 0.3rem;
}

/* Help FAQ Section Styles */
.help-faq-section {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.help-faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.help-faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.help-faq-question {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.help-faq-question:hover {
    background-color: #e9ecef;
}

.help-faq-question:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.help-faq-question.active:after {
    content: '−';
}

.help-faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.help-faq-answer.active {
    padding: 1.5rem;
    max-height: 2000px;
}

.help-faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.help-faq-answer p:last-child {
    margin-bottom: 0;
}

.help-faq-answer ul,
.help-faq-answer ol {
    margin: 0.5rem 0 1rem 1.5rem;
    line-height: 1.6;
}

.help-faq-answer li {
    margin-bottom: 0.5rem;
}

.help-faq-answer strong {
    font-weight: 600;
}

/* Help page responsive */
@media (max-width: 600px) {
    .help-hero {
        padding: 1.5rem 1rem;
    }

    .help-hero h1 {
        font-size: 1.5rem;
    }

    .help-trust-badges {
        gap: 0.75rem;
    }

    .help-trust-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .help-quick-actions-grid {
        gap: 0.4rem;
    }

    .help-quick-action-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .help-chat-messages {
        height: 350px;
    }

    .help-device-row {
        flex-wrap: wrap;
    }

    .help-device-row select {
        max-width: 100%;
    }
}

/* ============================================
   GLOBAL RESPONSIVE TABLE STYLES
   Makes all tables scroll horizontally on mobile
   ============================================ */

/* Wrapper for tables to enable horizontal scroll */
.table-responsive,
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
}

/* Global table styles */
table {
    border-collapse: collapse;
    width: 100%;
    min-width: 100%;
}

/* Mobile table responsiveness */
@media (max-width: 768px) {
    /* Make all tables scrollable on mobile */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure table cells have proper sizing */
    table th,
    table td {
        min-width: 80px;
        padding: 10px 12px;
        font-size: 0.85rem;
        white-space: normal;
        word-wrap: break-word;
    }

    /* First column (usually labels) can be narrower */
    table th:first-child,
    table td:first-child {
        min-width: 90px;
    }
}

/* ============================================
   MOBILE PADDING/MARGIN FIX
   Reduces excessive nested container padding on mobile
   ============================================ */

@media (max-width: 768px) {
    /* Reduce main container padding on mobile */
    main {
        padding: 1rem 0.5rem;
    }

    /* Reduce section padding inside main */
    section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    /* Article containers - reduce padding */
    .article-container {
        padding: 0 0.5rem 1.5rem;
    }

    .article-header {
        padding: 1.5rem 0.5rem 1rem;
    }

    /* Provider cards and similar nested boxes */
    .provider-card,
    .option-card,
    .benefit-card,
    .qa-item,
    .tip-item,
    .decision-card {
        padding: 1rem;
    }

    /* Boxes inside cards */
    .pros-cons-box,
    .provider-stats,
    .recommendation-content,
    .recommendation-box,
    .avoid-examples,
    .other-options {
        padding: 0.75rem;
    }

    /* How it works / process sections */
    .how-it-works,
    .top-up-process,
    .crypto-privacy,
    .account-free-features {
        padding: 0;
    }

    /* Guide and comparison pages */
    .comparison-guide,
    .privacy-guide,
    .guide-container {
        padding: 0 0.5rem;
    }

    /* Grids - reduce gaps */
    .benefits-grid,
    .qa-grid,
    .tips-list,
    .decision-grid {
        gap: 1rem;
    }

    /* Hero sections */
    .hero-section,
    .regional-hero {
        padding: 1.5rem 0.5rem;
    }

    /* Country page specific */
    .country-hero {
        padding: 1rem 0.5rem;
    }

    /* Rank badge adjustment */
    .rank-badge {
        top: -10px;
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .provider-card h3 {
        padding-top: 0.5rem;
    }
}

/* Extra small screens - even tighter */
@media (max-width: 480px) {
    main {
        padding: 0.5rem 0.25rem;
    }

    section {
        padding: 0.75rem;
        border-radius: 4px;
    }

    .article-container {
        padding: 0 0.25rem 1rem;
    }

    .provider-card,
    .decision-card {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .pros-cons-box,
    .recommendation-box {
        padding: 0.5rem;
    }

    /* Reduce font sizes slightly */
    .article-header h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }
}

/* ===========================================
   PRIVATE SMS PAGE STYLES
   =========================================== */

.sms-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.sms-hero {
    text-align: center;
    padding: 2rem 1rem;
}

.sms-hero .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.sms-hero .logo-img {
    height: 2.2rem;
    width: auto;
}

.sms-hero .logo-text {
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
}

.sms-hero h1 {
    font-size: 2rem;
    color: #333;
    margin: 0.5rem 0;
}

.sms-hero .hero-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badges-row .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #333;
}

.trust-badges-row .trust-badge i {
    color: #e8965a;
}

/* Quick SMS Promo Banner */
.quick-sms-banner {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
}

.quick-sms-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-sms-banner .banner-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.95rem;
}

.quick-sms-banner .banner-text i {
    font-size: 1.5rem;
    color: #ffc107;
}

.quick-sms-banner .banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #2d3748;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.quick-sms-banner .banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .quick-sms-banner .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .quick-sms-banner .banner-text {
        flex-direction: column;
    }
}

/* Long-term SMS Promo Banner */
.longterm-sms-banner {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
}

.longterm-sms-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.longterm-sms-banner .banner-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.95rem;
}

.longterm-sms-banner .banner-text i {
    font-size: 1.5rem;
    color: white;
}

.longterm-sms-banner .banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #11998e;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.longterm-sms-banner .banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .longterm-sms-banner .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .longterm-sms-banner .banner-text {
        flex-direction: column;
    }
}

/* Out of stock notice */
.out-of-stock-notice {
    text-align: center;
    padding: 3rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    margin: 2rem 0;
}

.out-of-stock-notice i {
    font-size: 3rem;
    color: #856404;
    margin-bottom: 1rem;
}

.out-of-stock-notice h3 {
    color: #856404;
    margin-bottom: 0.5rem;
}

/* Rental options */
.rental-options {
    margin: 2rem 0;
}

.rental-options h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.rental-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.rental-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rental-flag {
    width: 48px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}

.rental-title h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.rental-duration {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.rental-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rental-features .feature {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.rental-features .feature i {
    color: #4ade80;
    margin-right: 0.5rem;
}

.rental-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.rental-pricing .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.rental-pricing .period {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.rental-actions {
    display: flex;
    gap: 0.75rem;
}

.rental-actions button {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-buy-stripe {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.btn-buy-stripe:hover {
    background: linear-gradient(135deg, #e8965a 0%, #d4824a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-buy-crypto {
    background: #f7931a;
    color: white;
}

.btn-buy-crypto:hover {
    background: #e8850f;
    transform: translateY(-2px);
}

.btn-buy-wallet {
    background: #28a745;
    color: white;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-buy-wallet:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-buy-wallet:disabled,
.btn-buy-wallet.btn-disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Quick SMS Provider Tabs */
.quick-provider-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem;
    border-radius: 8px;
}

.quick-provider-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.quick-provider-tab .tab-flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.quick-provider-tab i {
    font-size: 1rem;
}

.quick-provider-tab:hover {
    background: rgba(56, 178, 172, 0.1);
    color: #333;
}

.quick-provider-tab.active {
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(56, 178, 172, 0.3);
}

.quick-provider-tab.active .tab-flag {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Provider Section Headers */
.provider-highlight {
    margin: 1.5rem 0 1rem;
}

.provider-highlight-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.provider-highlight-header i {
    color: #fbbf24;
}

.provider-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.provider-section-header i {
    color: #fbbf24;
}

.rental-grid {
    display: grid;
    gap: 1rem;
}

.featured-grid {
    margin-bottom: 1rem;
}

/* Featured card (high stock) */
.rental-card.featured-card {
    background: linear-gradient(135deg, #1a4731 0%, #0d3320 100%);
    border: 2px solid #28a745;
    position: relative;
    overflow: hidden;
}

.featured-ribbon {
    position: absolute;
    top: 12px;
    right: -35px;
    background: #28a745;
    color: white;
    padding: 0.25rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

.btn-buy-wallet.featured-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.btn-buy-wallet.featured-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

/* Limited stock card */
.rental-card.limited-stock-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1f1f2e 100%);
    border: 1px solid #444;
}

/* Stock badges */
.stock-badge {
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
}

.stock-badge.high-stock {
    background: #28a745;
    color: white;
}

.stock-badge.low-stock {
    background: #fbbf24;
    color: #1a1a2e;
}

/* Network display */
.rental-network {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.rental-network i {
    color: #4ade80;
}

/* Non-VoIP badge */
.nonvoip-badge {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
}

/* Non-VoIP banner style */
.limited-stock-banner.nonvoip-banner {
    background: linear-gradient(135deg, #1a4731 0%, #0f2e1f 100%);
    border-color: #28a745;
}

.nonvoip-banner .stock-alert > i {
    color: #4ade80;
}

.nonvoip-banner .stock-info strong {
    color: #4ade80;
}

/* VoIP card warning */
.rental-features .feature.warning {
    color: #fbbf24;
}

.rental-features .feature.warning i {
    color: #fbbf24;
}

.no-rentals-message {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

/* Limited Stock Banner */
.limited-stock-banner {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    border: 1px solid #2d5a8f;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.stock-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.stock-alert > i {
    font-size: 1.5rem;
    color: #fbbf24;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.stock-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stock-info strong {
    color: #fbbf24;
    font-size: 1.1rem;
}

.stock-count {
    color: #4ade80;
    font-weight: 600;
    font-size: 1rem;
}

.stock-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.stock-note i {
    color: #60a5fa;
    margin-right: 0.5rem;
}

.stock-note strong {
    color: #4ade80;
}

/* Stock badge on rental cards */
.stock-badge {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.stock-badge i {
    font-size: 0.75rem;
}

.stock-badge.low-stock {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

/* Highlighted feature */
.rental-features .feature.highlight {
    color: #4ade80;
    font-weight: 600;
}

.rental-features .feature.highlight i {
    color: #4ade80;
}

/* Stock tip */
.stock-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.stock-tip i {
    color: #60a5fa;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* How it works */
.how-it-works {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 3px 10px rgba(56, 178, 172, 0.3);
}

.step h3 {
    margin: 0 0 0.5rem;
    color: #333;
}

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

/* SMS FAQ */
.sms-page .faq-section {
    margin: 3rem 0;
}

.sms-page .faq-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sms-page .faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.sms-page .faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.sms-page .faq-item summary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    list-style: none;
}

.sms-page .faq-item summary::-webkit-details-marker {
    display: none;
}

.sms-page .faq-item summary::after {
    content: '+';
    float: right;
    font-size: 1.2rem;
    color: #e8965a;
}

.sms-page .faq-item[open] summary::after {
    content: '-';
}

.sms-page .faq-item p {
    padding: 0 1.5rem 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===========================================
   SMS RECEIPT AUTH PAGE STYLES
   =========================================== */

.sms-receipt-auth-page {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sms-receipt-auth-page .auth-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}

.sms-receipt-auth-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.sms-receipt-auth-page .back-link:hover {
    color: #1863dc;
}

.sms-receipt-auth-page .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.sms-receipt-auth-page .logo-img {
    height: 2rem;
    width: auto;
}

.sms-receipt-auth-page .logo-text {
    font-size: 1.5rem;
    color: #2d3748;
    font-weight: 600;
}

.sms-receipt-auth-page .auth-icon {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.sms-receipt-auth-page h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 0.5rem;
}

.sms-receipt-auth-page p {
    color: #666;
    margin-bottom: 1.5rem;
}

.sms-receipt-auth-page .auth-error {
    background: #f8d7da;
    color: #721c24;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.sms-receipt-auth-page .auth-form {
    margin-bottom: 1.5rem;
}

.sms-receipt-auth-page .wallet-input-group {
    margin-bottom: 1rem;
}

.sms-receipt-auth-page .wallet-input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: monospace;
    text-align: center;
    letter-spacing: 1px;
}

.sms-receipt-auth-page .wallet-input-group input:focus {
    outline: none;
    border-color: #1863dc;
}

.sms-receipt-auth-page .btn-auth {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #1863dc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sms-receipt-auth-page .btn-auth:hover {
    background: #1456b8;
}

.sms-receipt-auth-page .auth-help {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #666;
}

.sms-receipt-auth-page .auth-help i {
    color: #17a2b8;
}

/* ===========================================
   SMS RECEIPT/INBOX PAGE STYLES
   =========================================== */

.sms-receipt-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem;
}

.receipt-header {
    text-align: center;
    padding: 1.5rem 1rem;
}

.receipt-header .btn-back-to-sms {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    transition: background 0.2s, color 0.2s;
}

.receipt-header .btn-back-to-sms:hover {
    background: #1863dc;
    color: white;
}

.receipt-header .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.receipt-header .logo-img {
    height: 2rem;
    width: auto;
}

.receipt-header .logo-text {
    font-size: 1.5rem;
    color: #2d3748;
    font-weight: 600;
}

.receipt-header h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 0.5rem 0 0;
}

/* Status cards */
.status-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    margin: 1rem 0;
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.status-pending {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

.status-pending .status-icon {
    color: #856404;
}

.status-provisioning {
    background: #e3f2fd;
    border: 1px solid #2196f3;
}

.status-provisioning .status-icon {
    color: #1565c0;
}

.status-error {
    background: #ffebee;
    border: 1px solid #f44336;
}

.status-error .status-icon {
    color: #c62828;
}

.status-error .error-detail {
    font-family: monospace;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.btn-support {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #c62828;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #f5a623;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Crypto loading overlay */
#crypto-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.crypto-loading-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 40px 50px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.crypto-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #f7931a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

.crypto-loading-content h3 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 1.4rem;
}

.crypto-loading-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 8px;
    font-size: 1rem;
}

.crypto-loading-note {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
    margin-top: 16px !important;
}

/* Phone number card */
.phone-number-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1rem 0;
    color: white;
}

.phone-number-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-flag {
    width: 48px;
    height: 32px;
    border-radius: 4px;
}

.phone-info {
    flex: 1;
}

.phone-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 1px;
    color: white;
}

.btn-copy {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.3);
}

.phone-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.meta-item i {
    color: #4ade80;
}

/* Inbox section */
.inbox-section {
    margin: 1.5rem 0;
}

.inbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.inbox-header h2 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-refresh {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-refresh:hover {
    background: #e9ecef;
}

.messages-container {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    min-height: 200px;
    max-height: 500px;
    overflow-y: auto;
}

.no-messages {
    text-align: center;
    padding: 3rem;
    color: #999;
}

.no-messages i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.no-messages p {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.no-messages span {
    font-size: 0.9rem;
}

.message-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.message-item:last-child {
    border-bottom: none;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.message-from {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message-from i {
    color: #e8965a;
}

.message-time {
    font-size: 0.8rem;
    color: #999;
}

.message-body {
    color: #555;
    line-height: 1.5;
    word-break: break-word;
}

.auto-refresh-notice {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Important notice */
.important-notice {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.important-notice h3 {
    color: #1565c0;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.important-notice p {
    color: #555;
    margin: 0 0 1rem;
}

.btn-bookmark {
    background: #1565c0;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.btn-bookmark:hover {
    background: #0d47a1;
}

/* Extension section */
.extend-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.extend-section h3 {
    color: #333;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.extend-section h3 i {
    color: #e8965a;
}

.extend-section > p {
    color: #666;
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
}

.extend-options {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.extend-option {
    flex: 1;
    min-width: 90px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.extend-option:hover {
    border-color: #e8965a;
}

.extend-option.selected {
    border-color: #e8965a;
    background: linear-gradient(135deg, #fff8ed 0%, #fff4e6 100%);
}

.extend-days {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.extend-price {
    display: block;
    color: #e8965a;
    font-weight: 600;
    font-size: 0.95rem;
}

.extend-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-extend-stripe,
.btn-extend-crypto {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-extend-stripe {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.btn-extend-stripe:hover {
    background: linear-gradient(135deg, #e8965a 0%, #d4824a 100%);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-extend-crypto {
    background: #f7931a;
    color: white;
}

.btn-extend-crypto:hover {
    background: #e8850f;
}

.extend-note {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.extend-note i {
    color: #e8965a;
}

/* Toast notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 1000;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.toast-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Deposit Overlay Styles */
.deposit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.deposit-overlay.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

.deposit-overlay-content {
    background: #1e1e2e;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.deposit-overlay-content h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
    color: #fff;
}

.deposit-overlay-content p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.deposit-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #333;
    border-top-color: #646cff;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.deposit-success .deposit-checkmark {
    font-size: 4rem;
    color: #10b981;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.deposit-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981 !important;
    margin: 1rem 0 !important;
}

.deposit-overlay .btn-primary {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
}

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

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Crypto Payment Modal */
.crypto-payment-content {
    background: #1e1e2e;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.crypto-payment-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
}

.crypto-payment-close:hover {
    color: #fff;
}

.crypto-payment-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: #fff;
}

.crypto-payment-content .crypto-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f7931a;
    margin: 0.5rem 0 1rem;
}

.crypto-qr-container {
    background: #2a2a3e;
    padding: 1rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 1rem;
}

.crypto-qr {
    width: 200px;
    height: 200px;
    border-radius: 8px;
}

.crypto-instruction {
    color: #888;
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.crypto-open-wallet {
    display: inline-block;
    background: linear-gradient(135deg, #f7931a, #e87f00);
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
}

.crypto-open-wallet:hover {
    background: linear-gradient(135deg, #e87f00, #d06e00);
}

.crypto-invoice-box {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.crypto-invoice-box input {
    flex: 1;
    background: #2a2a3e;
    border: 1px solid #3a3a4e;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #888;
    font-size: 0.75rem;
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
}

.crypto-invoice-box .btn-copy {
    background: #3a3a4e;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #fff;
    cursor: pointer;
}

.crypto-invoice-box .btn-copy:hover {
    background: #4a4a5e;
}

.crypto-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: #252535;
    border-radius: 8px;
}

.crypto-status span {
    color: #888;
    font-size: 0.875rem;
}

.crypto-status-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-top-color: #f7931a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.crypto-status-success {
    font-size: 1.5rem;
    color: #10b981;
    animation: scaleIn 0.5s ease;
}

.crypto-fallback-link {
    display: block;
    color: #646cff;
    font-size: 0.75rem;
    text-decoration: none;
    margin-top: 0.5rem;
}

.crypto-fallback-link:hover {
    text-decoration: underline;
}

/* ======================================
   QUICK SMS PAGE STYLES
   ====================================== */

.sms-quick-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.sms-quick-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.sms-quick-hero .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.sms-quick-hero .logo-img {
    width: 40px;
    height: 40px;
}

.sms-quick-hero .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.sms-quick-hero h1 {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 0.5rem;
}

.sms-quick-hero .hero-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: #f0f7ff;
    color: #1565c0;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Wallet Access Card */
.wallet-access-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.wallet-access-card h2 {
    color: #333;
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

.wallet-access-card h2 i {
    color: #e8965a;
}

.wallet-access-card > p {
    color: #666;
    margin: 0 0 1.5rem;
}

.wallet-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.wallet-input-group input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: monospace;
}

.wallet-input-group input:focus {
    outline: none;
    border-color: #e8965a;
}

.btn-access-wallet {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.btn-access-wallet:hover {
    background: linear-gradient(135deg, #e8965a 0%, #d4824a 100%);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.wallet-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.wallet-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #dee2e6;
}

.wallet-divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: #999;
    font-size: 0.9rem;
}

.btn-create-wallet {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    border: 1px solid #dee2e6;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-create-wallet:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.btn-create-wallet i {
    color: #28a745;
}

/* Wallet Created Modal */
.wallet-created-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.wallet-created-modal .modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.wallet-created-modal .modal-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.wallet-created-modal h3 {
    color: #333;
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.wallet-created-modal .warning-text {
    color: #dc3545;
    margin: 0 0 1.5rem;
}

.wallet-code-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.wallet-code-display code {
    flex: 1;
    font-family: monospace;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.btn-copy-code {
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(56, 178, 172, 0.3);
}

.btn-copy-code:hover {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
}

.btn-continue {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.btn-continue:hover {
    background: #218838;
}

/* Wallet Dashboard */
.wallet-dashboard {
    margin-top: 1rem;
}

.balance-card {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
}

.balance-info {
    display: flex;
    flex-direction: column;
}

.balance-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
}

.balance-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-deposit-stripe,
.btn-deposit-crypto {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.btn-deposit-stripe {
    background: white;
    color: #e8965a;
}

.btn-deposit-stripe:hover {
    background: #f0f0f0;
}

.btn-deposit-crypto {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-deposit-crypto:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Order Form */
.order-form-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-form-card h2 {
    color: #333;
    font-size: 1.2rem;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-form-card h2 i {
    color: #e8965a;
}

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

.form-group label {
    display: block;
    color: #555;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #e8965a;
}

/* Service Autocomplete */
.service-autocomplete-wrapper {
    position: relative;
}

.service-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-dropdown.show {
    display: block;
}

.service-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.15s;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-option:hover {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
}

.service-no-results {
    padding: 1rem;
    text-align: center;
    color: #999;
}

.service-section-header {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.5px;
}

.service-name {
    flex: 1;
}

.service-price {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 500;
    margin-left: 1rem;
}

.service-option:hover .service-price {
    color: rgba(255, 255, 255, 0.9);
}

.service-hint {
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

/* Country Autocomplete */
.country-autocomplete-wrapper {
    position: relative;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.country-dropdown.show {
    display: block;
}

.country-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.15s;
}

.country-option:hover {
    background: #f8f9fa;
}

.country-option img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

/* Price Display */
.price-display {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.price-value {
    font-weight: 700;
    color: #28a745;
    font-size: 1.3rem;
}

.success-row {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.success-value {
    font-weight: 600;
    color: #e8965a;
}

.price-note {
    color: #888;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.btn-order-sms {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-order-sms:hover:not(:disabled) {
    background: #218838;
}

.btn-order-sms:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Country List */
.country-list-loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.country-list-loading i {
    margin-right: 0.5rem;
}

.country-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.country-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.country-item:hover {
    background: #e9ecef;
}

.country-item.selected {
    background: #e8e6ff;
    border-color: #e8965a;
}

.country-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-info .country-flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.country-info .country-flag-placeholder {
    width: 20px;
    height: 14px;
    display: inline-block;
    background: #e9ecef;
    border-radius: 2px;
}

.country-info .country-name {
    font-weight: 500;
    color: #333;
}

.country-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.country-success {
    background: #d4edda;
    color: #155724;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.country-stock {
    color: #666;
}

.country-price {
    font-weight: 600;
    color: #28a745;
}

.no-countries {
    text-align: center;
    padding: 2rem;
    color: #999;
}

/* Add Funds Button */
.btn-add-funds {
    background: white;
    color: #e8965a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-add-funds:hover {
    background: #f0f0f0;
}

/* Deposit Payment Methods */
.deposit-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.deposit-payment-methods .btn-buy-stripe,
.deposit-payment-methods .btn-buy-crypto {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

/* Active Order Card */
.active-order-card {
    background: white;
    border: 2px solid #38b2ac;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.order-status-header h2 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-status-header h2 i {
    color: #f7931a;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.countdown-timer {
    background: #f7931a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-family: monospace;
    font-size: 1.1rem;
}

.phone-number-display {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.phone-label {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.phone-number-display .phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    font-family: monospace;
    margin-right: 0.5rem;
}

.btn-copy-small {
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    vertical-align: middle;
    box-shadow: 0 2px 6px rgba(56, 178, 172, 0.3);
}

.btn-copy-small:hover {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
}

.order-details {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* SMS Message Box */
.sms-message-box {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.sms-message-box.received {
    border-color: #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

.message-box-header {
    background: #e9ecef;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.sms-message-box.received .message-box-header {
    background: #28a745;
    color: white;
}

.message-box-content {
    padding: 1.5rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waiting-message {
    color: #6c757d;
    font-size: 1rem;
}

.waiting-message i {
    margin-right: 0.5rem;
    color: #38b2ac;
}

.received-message {
    width: 100%;
    text-align: center;
}

/* Active Rentals Section */
.active-rentals-section {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.active-rentals-section h3 {
    margin: 0 0 1rem 0;
    color: #155724;
    font-size: 1.1rem;
}

.active-rentals-section h3 i {
    margin-right: 0.5rem;
}

.active-rentals-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.active-rental-item {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.rental-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rental-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    font-family: monospace;
}

.rental-meta {
    font-size: 0.85rem;
    color: #666;
}

.rental-meta span {
    margin-right: 1rem;
}

.btn-view-messages {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.btn-view-messages:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

/* SMS Code Section */
.sms-code-section {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.sms-received-badge {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.sms-received-badge i {
    margin-right: 0.5rem;
}

.sms-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.sms-code-display code,
.sms-code {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    font-family: monospace;
    letter-spacing: 0.2rem;
}

.sms-full-message {
    color: #555;
    font-size: 0.9rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    word-break: break-word;
}

.order-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-cancel-order {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.btn-cancel-order:hover {
    background: #c82333;
}

.btn-new-order {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.btn-new-order:hover {
    background: linear-gradient(135deg, #e8965a 0%, #d4824a 100%);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.wallet-link {
    text-align: center;
    margin-top: 1rem;
}

.wallet-link a {
    color: #e8965a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.wallet-link a:hover {
    text-decoration: underline;
}

/* Deposit Modal */
.deposit-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.deposit-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.deposit-modal .modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    z-index: 1;
}

.deposit-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.deposit-modal .modal-close:hover {
    color: #333;
}

.deposit-modal h3 {
    color: #333;
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deposit-modal h3 i {
    color: #28a745;
}

.deposit-modal > .modal-content > p {
    color: #666;
    margin: 0 0 1.5rem;
}

.deposit-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.deposit-amount-btn {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
}

.deposit-amount-btn:hover {
    border-color: #e8965a;
    background: #e9ecef;
}

.deposit-amount-btn.selected {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    border-color: #e8965a;
    color: white;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.custom-amount-group {
    margin-bottom: 1.5rem;
}

.custom-amount-group label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.custom-amount-input span {
    padding: 0.875rem 0.75rem;
    background: #f8f9fa;
    color: #666;
    font-weight: 600;
}

.custom-amount-input input {
    flex: 1;
    border: none;
    padding: 0.875rem 0.75rem;
    font-size: 1rem;
}

.custom-amount-input input:focus {
    outline: none;
}

.btn-confirm-deposit {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.btn-confirm-deposit:hover {
    background: #218838;
}

.btn-confirm-deposit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Quick SMS How It Works */
.sms-quick-page .how-it-works {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.sms-quick-page .how-it-works h2 {
    text-align: center;
    color: #333;
    margin: 0 0 1.5rem;
    font-size: 1.3rem;
}

.sms-quick-page .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sms-quick-page .step {
    text-align: center;
}

.sms-quick-page .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 3px 10px rgba(56, 178, 172, 0.3);
}

.sms-quick-page .step h3 {
    color: #333;
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.sms-quick-page .step p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Quick SMS FAQ */
.sms-quick-page .faq-section {
    margin: 2rem 0;
}

.sms-quick-page .faq-section h2 {
    text-align: center;
    color: #333;
    margin: 0 0 1.5rem;
    font-size: 1.3rem;
}

.sms-quick-page .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sms-quick-page .faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.sms-quick-page .faq-item summary {
    padding: 1rem;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sms-quick-page .faq-item summary::-webkit-details-marker {
    display: none;
}

.sms-quick-page .faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: #e8965a;
    font-weight: 700;
}

.sms-quick-page .faq-item[open] summary::after {
    content: '-';
}

.sms-quick-page .faq-item p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Rental Promo */
.rental-promo {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #2196f3;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.rental-promo h3 {
    color: #1565c0;
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.rental-promo p {
    color: #555;
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.btn-rental-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1565c0;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-rental-link:hover {
    background: #0d47a1;
}

/* ======================================
   SMS WALLET PAGE STYLES
   ====================================== */

.sms-wallet-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.wallet-header {
    text-align: center;
    margin-bottom: 2rem;
}

.wallet-header .btn-back-to-sms {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f0f2f5;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.2s;
}

.wallet-header .btn-back-to-sms:hover {
    background: #e4e6ea;
    color: #1863dc;
}

.wallet-header .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.wallet-header .logo-img {
    width: 40px;
    height: 40px;
}

.wallet-header .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.wallet-header h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.wallet-header h1 i {
    color: #e8965a;
}

.wallet-balance-card {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
}

.wallet-balance-card .balance-section {
    display: flex;
    flex-direction: column;
}

.wallet-balance-card .balance-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.wallet-balance-card .balance-amount {
    font-size: 2rem;
    font-weight: 700;
}

.wallet-code-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.wallet-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wallet-code-header h3 {
    color: #333;
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wallet-code-header h3 i {
    color: #e8965a;
}

.save-warning {
    color: #dc3545;
    font-size: 0.85rem;
    font-weight: 500;
}

.wallet-code-note {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.quick-actions {
    margin-bottom: 1.5rem;
}

.btn-quick-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #28a745;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-quick-order:hover {
    background: #218838;
}

/* Order History Card */
.order-history-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-history-card h3 {
    color: #333;
    margin: 0 0 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-history-card h3 i {
    color: #e8965a;
}

.empty-state {
    text-align: center;
    padding: 2rem;
    color: #999;
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.empty-state p {
    font-size: 1rem;
    margin: 0 0 0.25rem;
    color: #666;
}

.empty-state span {
    font-size: 0.9rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid #dee2e6;
}

.order-item.order-status-received {
    border-left-color: #28a745;
}

.order-item.order-status-waiting_sms {
    border-left-color: #f7931a;
}

.order-item.order-status-refunded {
    border-left-color: #17a2b8;
}

.order-item.order-status-cancelled,
.order-item.order-status-expired {
    border-left-color: #dc3545;
}

.order-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.order-service {
    display: flex;
    flex-direction: column;
}

.service-name {
    font-weight: 600;
    color: #333;
}

.country-name {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.country-flag {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-success {
    background: #d4edda;
    color: #155724;
}

.status-waiting {
    background: #fff3cd;
    color: #856404;
}

.status-refunded {
    background: #d1ecf1;
    color: #0c5460;
}

.status-cancelled,
.status-expired {
    background: #f8d7da;
    color: #721c24;
}

.order-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.order-phone {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.order-sms-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #d4edda;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    margin-top: 0.75rem;
}

.code-label {
    color: #155724;
    font-weight: 500;
}

.order-sms-code .sms-code {
    font-size: 1.2rem;
    font-weight: 700;
    color: #155724;
    letter-spacing: 0.1rem;
}

.order-actions-row {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

.btn-view-inbox {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #1863dc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-view-inbox:hover {
    background: #1456b8;
}

/* Transaction History Card */
.transaction-history-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
}

.transaction-history-card h3 {
    color: #333;
    margin: 0 0 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transaction-history-card h3 i {
    color: #e8965a;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.tx-icon {
    font-size: 1.2rem;
}

.tx-deposit .tx-icon {
    color: #28a745;
}

.tx-order .tx-icon {
    color: #dc3545;
}

.tx-refund .tx-icon {
    color: #17a2b8;
}

.tx-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tx-description {
    color: #333;
    font-size: 0.95rem;
}

.tx-date {
    color: #999;
    font-size: 0.8rem;
}

.tx-amount {
    font-weight: 700;
    font-size: 1rem;
}

.tx-amount.positive {
    color: #28a745;
}

.tx-amount.negative {
    color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .rental-features {
        grid-template-columns: 1fr;
    }

    .rental-actions {
        flex-direction: column;
    }

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

    .phone-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .inbox-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .inbox-header h2 {
        justify-content: center;
    }

    .extend-actions {
        flex-direction: column;
    }

    /* Quick SMS Responsive */
    .sms-quick-page .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wallet-input-group {
        flex-direction: column;
    }

    .btn-access-wallet {
        width: 100%;
        justify-content: center;
        padding: 0.875rem;
    }

    .balance-card {
        flex-direction: column;
        text-align: center;
    }

    .balance-actions {
        width: 100%;
    }

    .balance-actions button {
        flex: 1;
    }

    .deposit-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-main {
        flex-direction: column;
        gap: 0.5rem;
    }

    .wallet-balance-card {
        flex-direction: column;
        text-align: center;
    }

    .wallet-code-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================ */
/* SMS Unified Page - Tabs                      */
/* ============================================ */

.sms-unified-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.sms-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.sms-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.sms-hero .hero-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* SMS Value Props */
.sms-value-props {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
}

.value-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.value-text strong {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 700;
}

.value-text span {
    color: #64748b;
    font-size: 0.8rem;
}

/* SMS Tabs Container */
.sms-tabs-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sms-tabs-container .sms-tab {
    flex: 0 1 300px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sms-tabs-container .sms-tab:hover {
    border-color: #e8965a;
    background: #fffbf5;
}

.sms-tabs-container .sms-tab.active {
    border-color: #e8965a;
    background: linear-gradient(135deg, #fff8ed 0%, #fff4e6 100%);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

.sms-tabs-container .tab-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #64748b;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sms-tabs-container .sms-tab.active .tab-icon {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.35);
}

.sms-tabs-container .tab-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.sms-tabs-container .tab-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #334155;
    transition: color 0.2s ease;
}

.sms-tabs-container .sms-tab.active .tab-title {
    color: #4338ca;
}

.sms-tabs-container .tab-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.15rem;
}

/* Responsive */
@media (max-width: 600px) {
    .sms-value-props {
        gap: 1rem;
    }

    .value-prop {
        flex: 1 1 100%;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        background: white;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .sms-tabs-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .sms-tabs-container .sms-tab {
        padding: 1rem;
    }

    .sms-tabs-container .tab-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .sms-tabs-container .tab-title {
        font-size: 1rem;
    }

    .sms-tabs-container .tab-subtitle {
        font-size: 0.8rem;
    }
}

/* Request Refund Button */
.btn-request-refund {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.2s ease;
}

.btn-request-refund:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-1px);
}

.btn-request-refund:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   COMPARISON PAGE STYLES
   PikaSim vs Silent.Link comparison pages
   ============================================ */

/* Comparison Page CTA Button - Teal */
.comparison-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(56, 178, 172, 0.3);
}

.comparison-cta-btn:hover {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 178, 172, 0.4);
}

/* Secondary button on orange background */
.comparison-cta-btn-secondary {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: transform 0.2s, background 0.2s;
}

.comparison-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* CTA Section with orange background */
.comparison-cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.comparison-cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.comparison-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.comparison-cta-section .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Model Cards */
.pricing-model-card {
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e1e1e1;
}

.pricing-model-card.pikasim {
    border-color: #f5a623;
    background: linear-gradient(135deg, #fff8ed 0%, #fff4e6 100%);
}

.pricing-model-card.competitor {
    border-color: #e1e1e1;
    background: #fff;
}

.pricing-model-card h3 {
    margin-bottom: 1.5rem;
    color: #1e293b;
}

/* Price example box - clean white background */
.price-example-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e1e1e1;
}

.pricing-model-card.pikasim .price-example-box {
    border-color: #f5a623;
}

.price-example-box .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.pricing-model-card.pikasim .price-example-box .price-value {
    color: #d4824a;
}

.price-example-box .price-details {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Insight cards for pricing comparison */
.insight-card-clean {
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e1e1e1;
    background: #fff;
}

.insight-card-clean.pikasim {
    border-color: #f5a623;
    background: linear-gradient(135deg, #fff8ed 0%, #fff4e6 100%);
}

.insight-card-clean .example-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e1e1e1;
}

.insight-card-clean.pikasim .example-box {
    border-color: #f5a623;
}

.insight-card-clean .example-box .amount {
    color: #64748b;
    font-weight: 500;
}

.insight-card-clean .example-box .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
}

.insight-card-clean.pikasim .example-box .price {
    color: #d4824a;
}

/* Price highlight banner */
.price-highlight-banner {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.price-highlight-banner h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.price-highlight-banner .price-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.price-highlight-banner .price-example {
    background: rgba(255,255,255,0.15);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .comparison-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-cta-btn,
    .comparison-cta-btn-secondary {
        width: auto;
        max-width: 280px;
    }
    
    .price-highlight-banner .price-examples {
        flex-direction: column;
    }
}

/* Fix CTA section spacing and centering */
.comparison-cta-section {
    padding: 2rem !important;
    margin-bottom: 2rem;
}

.comparison-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Comparison link style for home page */
.comparison-promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f5a623;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.comparison-promo-link:hover {
    color: #d4824a;
    text-decoration: underline;
}

.comparison-promo-link i {
    font-size: 1rem;
}

.comparison-promo-container {
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .comparison-promo-container {
        text-align: center;
    }
    .comparison-promo-link {
        font-size: 0.85rem;
    }
}

/* Russia Notice Banner */
.russia-notice-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #90caf9;
    border-left: 4px solid #1565c0;
    color: #0d47a1;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 0.75rem auto 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.russia-notice-banner:hover {
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.15);
}

.russia-notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.russia-notice-content {
    flex: 1;
}

.russia-notice-content strong {
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
    color: #0d47a1;
}

.russia-notice-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
    color: #1565c0;
}

.russia-notice-content .learn-more {
    font-weight: 600;
    white-space: nowrap;
}

/* Russia notice links row */
.russia-notice-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.russia-notice-links a {
    color: #1565c0;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.russia-notice-links a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* Homepage-specific Russia banner styling */
.russia-notice-home {
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
}

@media (max-width: 480px) {
    .russia-notice-banner {
        padding: 0.85rem 1rem;
        gap: 0.6rem;
        margin-left: 15px;
        margin-right: 15px;
        max-width: calc(100% - 30px);
    }
    .russia-notice-icon {
        font-size: 1.25rem;
    }
    .russia-notice-content strong {
        font-size: 0.85rem;
    }
    .russia-notice-content p {
        font-size: 0.8rem;
    }
    .russia-notice-links {
        gap: 1rem;
    }
    .russia-notice-links a {
        font-size: 0.8rem;
    }
}

/* Generic Bypass Notice Banner (China, Hong Kong) */
.bypass-notice-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 0.75rem auto 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.bypass-notice-banner:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bypass-notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.bypass-notice-content {
    flex: 1;
}

.bypass-notice-content strong {
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
}

.bypass-notice-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.bypass-notice-content .learn-more {
    font-weight: 600;
    white-space: nowrap;
}

/* China notice - red/orange theme */
.bypass-notice-banner.china-notice {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 1px solid #fc8181;
    border-left: 4px solid #e53e3e;
    color: #c53030;
}

.bypass-notice-banner.china-notice strong {
    color: #c53030;
}

.bypass-notice-banner.china-notice p {
    color: #e53e3e;
}

/* Hong Kong notice - purple/privacy theme */
.bypass-notice-banner.hk-notice {
    background: linear-gradient(135deg, #faf5ff 0%, #e9d8fd 100%);
    border: 1px solid #b794f4;
    border-left: 4px solid #805ad5;
    color: #6b46c1;
}

.bypass-notice-banner.hk-notice strong {
    color: #6b46c1;
}

.bypass-notice-banner.hk-notice p {
    color: #805ad5;
}

.bypass-notice-banner.hk-notice a {
    color: #6b46c1;
    font-weight: 600;
    text-decoration: underline;
}

.bypass-notice-banner.hk-notice a:hover {
    color: #553c9a;
}

/* EU notice - blue/security theme */
.bypass-notice-banner.eu-notice {
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
    border: 1px solid #63b3ed;
    border-left: 4px solid #3182ce;
    color: #2b6cb0;
}

.bypass-notice-banner.eu-notice strong {
    color: #2b6cb0;
}

.bypass-notice-banner.eu-notice p {
    color: #3182ce;
}

@media (max-width: 480px) {
    .bypass-notice-banner {
        padding: 0.85rem 1rem;
        gap: 0.6rem;
        margin-left: 15px;
        margin-right: 15px;
        max-width: calc(100% - 30px);
    }
    .bypass-notice-icon {
        font-size: 1.25rem;
    }
    .bypass-notice-content strong {
        font-size: 0.85rem;
    }
    .bypass-notice-content p {
        font-size: 0.8rem;
    }
}

/* Quick Facts Section (Russia/China) */
.quick-facts-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin: 2rem 0;
}

.quick-facts-section h2 {
    font-size: 1.4rem;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-facts-section h2 i {
    color: #f59e0b;
}

.quick-facts-grid {
    display: grid;
    gap: 1rem;
}

.quick-fact-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
}

.quick-fact-item h3 {
    font-size: 0.95rem;
    color: #334155;
    margin: 0 0 0.5rem 0;
}

.quick-fact-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.quick-fact-item p strong {
    color: #1e293b;
}

.comparison-heading {
    font-size: 1.1rem;
    color: #334155;
    margin: 1.5rem 0 1rem 0;
    text-align: center;
}

.quick-facts-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.quick-facts-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.85rem;
    min-width: 500px;
}

.quick-facts-table th,
.quick-facts-table td {
    padding: 0.75rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.quick-facts-table th {
    background: #1e293b;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
}

.quick-facts-table td:first-child {
    text-align: left;
    padding-left: 1rem;
}

.quick-facts-table .status-good {
    color: #16a34a;
    font-weight: 600;
}

.quick-facts-table .status-bad {
    color: #dc2626;
}

.quick-facts-table .status-warning {
    color: #d97706;
}

@media (max-width: 600px) {
    .quick-facts-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    .quick-facts-section h2 {
        font-size: 1.2rem;
    }
    .quick-fact-item {
        padding: 0.875rem 1rem;
    }
    .quick-fact-item h3 {
        font-size: 0.9rem;
    }
    .quick-fact-item p {
        font-size: 0.8rem;
    }
    .quick-facts-table {
        font-size: 0.75rem;
    }
    .quick-facts-table th,
    .quick-facts-table td {
        padding: 0.6rem 0.4rem;
    }
}

/* ============================================ */
/* Reseller Landing Page                        */
/* ============================================ */

.reseller-landing-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.reseller-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.reseller-hero h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin: 1rem 0 0.5rem;
}

.reseller-value-props {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.reseller-landing-page .wallet-access-section {
    margin-bottom: 3rem;
}

.reseller-landing-page .wallet-access-card {
    background: linear-gradient(135deg, #faf8f4 0%, #f5f0e8 100%);
    border: 1px solid #d4c4a8;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.reseller-landing-page .wallet-access-card h2 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.reseller-landing-page .wallet-access-card h2 i {
    color: #f5a623;
    margin-right: 0.5rem;
}

.reseller-landing-page .wallet-access-card > p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.reseller-landing-page .wallet-input-group {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.reseller-landing-page .wallet-input-group input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid #d4c4a8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: monospace;
}

.reseller-landing-page .btn-access-wallet {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.reseller-landing-page .btn-access-wallet:hover {
    background: linear-gradient(135deg, #e8965a 0%, #d4824a 100%);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.reseller-landing-page .wallet-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #94a3b8;
}

.reseller-landing-page .wallet-divider::before,
.reseller-landing-page .wallet-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #d4c4a8;
}

.reseller-landing-page .wallet-divider span {
    padding: 0 1rem;
}

.reseller-landing-page .btn-create-wallet {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.reseller-landing-page .btn-create-wallet:hover {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    box-shadow: 0 4px 12px rgba(56, 178, 172, 0.4);
}

.reseller-landing-page .wallet-created-modal {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.reseller-landing-page .modal-icon {
    font-size: 3rem;
    color: #38b2ac;
    margin-bottom: 1rem;
}

.reseller-landing-page .wallet-created-modal h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.reseller-landing-page .warning-text {
    color: #e8965a;
    margin-bottom: 1.5rem;
}

.reseller-landing-page .wallet-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #1e293b;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.reseller-landing-page .wallet-code-display code {
    color: #38b2ac;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.reseller-landing-page .btn-copy-code {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.reseller-landing-page .btn-copy-code:hover {
    color: white;
}

.reseller-landing-page .btn-continue {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reseller-landing-page .how-it-works {
    margin-bottom: 3rem;
}

.reseller-landing-page .how-it-works h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
}

.reseller-landing-page .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.reseller-landing-page .step {
    text-align: center;
    padding: 1.5rem;
}

.reseller-landing-page .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.reseller-landing-page .step h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.reseller-landing-page .step p {
    color: #64748b;
    font-size: 0.9rem;
}

.reseller-landing-page .api-features {
    margin-bottom: 3rem;
}

.reseller-landing-page .api-features h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
}

.reseller-landing-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.reseller-landing-page .feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.reseller-landing-page .feature-card i {
    font-size: 2rem;
    color: #f5a623;
    margin-bottom: 1rem;
}

.reseller-landing-page .feature-card h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.reseller-landing-page .feature-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Reseller FAQ Section */
.reseller-landing-page .reseller-faq {
    margin-bottom: 3rem;
}

.reseller-landing-page .reseller-faq h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
}

.reseller-landing-page .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.reseller-landing-page .faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.reseller-landing-page .faq-item h3 {
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.reseller-landing-page .faq-item h3::before {
    content: "Q:";
    color: #f5a623;
    font-weight: 700;
    flex-shrink: 0;
}

.reseller-landing-page .faq-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .reseller-landing-page .faq-grid {
        grid-template-columns: 1fr;
    }
}

.reseller-landing-page .cta-section {
    text-align: center;
    background: linear-gradient(135deg, #fff8ed 0%, #fff4e6 100%);
    border: 1px solid #f5a623;
    border-radius: 16px;
    padding: 3rem 2rem;
}

.reseller-landing-page .cta-section h2 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.reseller-landing-page .cta-section > p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.reseller-landing-page .btn-cta {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
    transition: all 0.2s;
}

.reseller-landing-page .btn-cta:hover {
    background: linear-gradient(135deg, #e8965a 0%, #d4824a 100%);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.reseller-landing-page .btn-docs {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.reseller-landing-page .btn-docs:hover {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.4);
}

.reseller-landing-page .alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reseller-landing-page .alert-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.reseller-landing-page .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.reseller-landing-page .logo-img {
    width: 50px;
    height: 50px;
}

.reseller-landing-page .logo-text {
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
}

@media (max-width: 600px) {
    .reseller-landing-page .wallet-input-group {
        flex-direction: column;
    }

    .reseller-landing-page .btn-cta,
    .reseller-landing-page .btn-docs {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
    }

    .reseller-value-props {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================ */
/* Reseller Dashboard Page                      */
/* ============================================ */

.reseller-dashboard-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.reseller-dashboard-page .dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reseller-dashboard-page .header-left .logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.reseller-dashboard-page .header-left .logo-img {
    width: 40px;
    height: 40px;
}

.reseller-dashboard-page .header-left .logo-text {
    font-size: 1.5rem;
    color: #2d3748;
    font-weight: 600;
}

.reseller-dashboard-page .header-right {
    display: flex;
    gap: 0.75rem;
}

.reseller-dashboard-page .btn-docs-link,
.reseller-dashboard-page .btn-logout {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.reseller-dashboard-page .btn-docs-link {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
}

.reseller-dashboard-page .btn-docs-link:hover {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

.reseller-dashboard-page .btn-logout {
    background: #f1f5f9;
    color: #64748b;
}

.reseller-dashboard-page .btn-logout:hover {
    background: #e2e8f0;
    color: #475569;
}

.reseller-dashboard-page h1 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.reseller-dashboard-page h1 i {
    color: #f5a623;
    margin-right: 0.5rem;
}

.reseller-dashboard-page .company-name {
    color: #64748b;
    margin-bottom: 2rem;
}

/* Discount Banner */
.reseller-dashboard-page .discount-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.reseller-dashboard-page .discount-banner-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.95rem;
}

.reseller-dashboard-page .discount-banner-content i {
    font-size: 1.25rem;
}

/* Balance Section */
.reseller-dashboard-page .balance-section {
    margin-bottom: 2rem;
}

.reseller-dashboard-page .balance-card-main {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.reseller-dashboard-page .balance-card-main .balance-info {
    color: white;
}

.reseller-dashboard-page .balance-card-main .balance-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.reseller-dashboard-page .balance-card-main .balance-amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.reseller-dashboard-page .btn-add-funds {
    padding: 0.875rem 1.5rem;
    background: white;
    color: #f5a623;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.reseller-dashboard-page .btn-add-funds:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Stats Section */
.reseller-dashboard-page .stats-section {
    margin-bottom: 2rem;
}

.reseller-dashboard-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.reseller-dashboard-page .stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reseller-dashboard-page .stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.reseller-dashboard-page .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.reseller-dashboard-page .stat-label {
    color: #64748b;
    font-size: 0.85rem;
}

/* API Section */
.reseller-dashboard-page .api-section,
.reseller-dashboard-page .webhook-section {
    margin-bottom: 2rem;
}

.reseller-dashboard-page .section-header h2 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.reseller-dashboard-page .section-header h2 i {
    color: #f5a623;
    margin-right: 0.5rem;
}

.reseller-dashboard-page .api-card,
.reseller-dashboard-page .webhook-card {
    background: linear-gradient(135deg, #faf8f4 0%, #f5f0e8 100%);
    border: 1px solid #d4c4a8;
    border-radius: 12px;
    padding: 1.5rem;
}

.reseller-dashboard-page .api-key-display {
    background: #1e293b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.reseller-dashboard-page .api-key-display code {
    color: #38b2ac;
    font-size: 1rem;
}

.reseller-dashboard-page .api-key-note,
.reseller-dashboard-page .no-api-key {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.reseller-dashboard-page .btn-generate-key {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.reseller-dashboard-page .btn-generate-key:hover {
    background: linear-gradient(135deg, #e8965a 0%, #d4824a 100%);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.reseller-dashboard-page .new-api-key-display {
    margin-top: 1rem;
    background: white;
    border: 2px solid #f5a623;
    border-radius: 12px;
    padding: 1rem;
}

.reseller-dashboard-page .api-key-warning {
    background: #fef3cd;
    color: #856404;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reseller-dashboard-page .api-key-full {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1e293b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.reseller-dashboard-page .api-key-full code {
    color: #38b2ac;
    font-size: 0.85rem;
    flex: 1;
    word-break: break-all;
}

.reseller-dashboard-page .btn-copy {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.reseller-dashboard-page .btn-copy:hover {
    color: white;
}

/* Webhook Section */
.reseller-dashboard-page .form-group {
    margin-bottom: 1rem;
}

.reseller-dashboard-page .form-group label {
    display: block;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.reseller-dashboard-page .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d4c4a8;
    border-radius: 8px;
    font-size: 1rem;
}

.reseller-dashboard-page .form-group input:focus {
    outline: none;
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.reseller-dashboard-page .btn-save-webhook {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.reseller-dashboard-page .btn-save-webhook:hover {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
}

.reseller-dashboard-page .webhook-info {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.reseller-dashboard-page .webhook-info p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.reseller-dashboard-page .webhook-info i {
    color: #f5a623;
}

.reseller-dashboard-page .webhook-secret-label {
    margin-top: 0.75rem;
    font-weight: 500;
    color: #1e293b !important;
}

.reseller-dashboard-page .webhook-secret {
    display: block;
    background: #1e293b;
    color: #38b2ac;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    word-break: break-all;
    margin-top: 0.5rem;
}

/* Data Tabs */
.reseller-dashboard-page .data-section {
    margin-bottom: 2rem;
}

.reseller-dashboard-page .data-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.reseller-dashboard-page .data-tab {
    padding: 0.75rem 1.5rem;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.reseller-dashboard-page .data-tab:hover {
    background: #e2e8f0;
}

.reseller-dashboard-page .data-tab.active {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
}

.reseller-dashboard-page .data-table-container {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.reseller-dashboard-page .data-table {
    width: 100%;
    border-collapse: collapse;
}

.reseller-dashboard-page .data-table th {
    background: #f8fafc;
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #475569;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border-bottom: 1px solid #e2e8f0;
}

.reseller-dashboard-page .data-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 0.9rem;
}

.reseller-dashboard-page .data-table tr:last-child td {
    border-bottom: none;
}

.reseller-dashboard-page .data-table tr:hover {
    background: #f8fafc;
}

.reseller-dashboard-page .iccid {
    font-size: 0.8rem;
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.reseller-dashboard-page .status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.reseller-dashboard-page .status-pending {
    background: #fef3cd;
    color: #856404;
}

.reseller-dashboard-page .status-processing {
    background: #cce5ff;
    color: #004085;
}

.reseller-dashboard-page .status-completed {
    background: #d4edda;
    color: #155724;
}

.reseller-dashboard-page .status-failed {
    background: #f8d7da;
    color: #721c24;
}

.reseller-dashboard-page .tx-type {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.reseller-dashboard-page .tx-deposit {
    background: #d4edda;
    color: #155724;
}

.reseller-dashboard-page .tx-purchase {
    background: #cce5ff;
    color: #004085;
}

.reseller-dashboard-page .tx-refund {
    background: #fef3cd;
    color: #856404;
}

.reseller-dashboard-page .tx-adjustment {
    background: #e2e3e5;
    color: #383d41;
}

.reseller-dashboard-page .amount-positive {
    color: #155724;
    font-weight: 500;
}

.reseller-dashboard-page .amount-negative {
    color: #dc2626;
    font-weight: 500;
}

.reseller-dashboard-page .loading-data,
.reseller-dashboard-page .no-data {
    text-align: center;
    padding: 2rem;
    color: #64748b;
}

.reseller-dashboard-page .loading-data i,
.reseller-dashboard-page .no-data i {
    margin-right: 0.5rem;
}

/* Wallet Code Section */
.reseller-dashboard-page .wallet-code-section {
    margin-bottom: 2rem;
}

.reseller-dashboard-page .wallet-code-card {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
}

.reseller-dashboard-page .wallet-code-card h3 {
    margin-bottom: 0.5rem;
}

.reseller-dashboard-page .wallet-code-card h3 i {
    margin-right: 0.5rem;
}

.reseller-dashboard-page .wallet-code-card > p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.reseller-dashboard-page .wallet-code-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.3);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.reseller-dashboard-page .wallet-code-display code {
    color: #38b2ac;
    font-size: 0.95rem;
    flex: 1;
}

.reseller-dashboard-page .wallet-code-display .btn-copy {
    color: rgba(255,255,255,0.6);
}

.reseller-dashboard-page .wallet-code-display .btn-copy:hover {
    color: white;
}

/* Reseller Deposit Modal */
.reseller-dashboard-page .deposit-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.reseller-dashboard-page .deposit-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.reseller-dashboard-page .deposit-modal .modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.reseller-dashboard-page .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.25rem;
    cursor: pointer;
}

.reseller-dashboard-page .modal-close:hover {
    color: #1e293b;
}

.reseller-dashboard-page .deposit-modal h3 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.reseller-dashboard-page .deposit-modal h3 i {
    color: #f5a623;
    margin-right: 0.5rem;
}

.reseller-dashboard-page .deposit-modal > .modal-content > p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.reseller-dashboard-page .deposit-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.reseller-dashboard-page .deposit-amount-btn {
    padding: 0.75rem;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s;
}

.reseller-dashboard-page .deposit-amount-btn:hover {
    background: #e2e8f0;
}

.reseller-dashboard-page .deposit-amount-btn.selected {
    background: linear-gradient(135deg, #fff8ed 0%, #fff4e6 100%);
    border-color: #f5a623;
    color: #f5a623;
}

.reseller-dashboard-page .custom-amount-group {
    margin-bottom: 1.5rem;
}

.reseller-dashboard-page .custom-amount-group label {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.reseller-dashboard-page .custom-amount-input {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 0 1rem;
}

.reseller-dashboard-page .custom-amount-input span {
    color: #64748b;
    font-weight: 500;
}

.reseller-dashboard-page .custom-amount-input input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
}

.reseller-dashboard-page .custom-amount-input input:focus {
    outline: none;
}

.reseller-dashboard-page .deposit-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reseller-dashboard-page .btn-deposit-stripe,
.reseller-dashboard-page .btn-deposit-crypto {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.reseller-dashboard-page .btn-deposit-stripe {
    background: linear-gradient(135deg, #f5a623 0%, #e8965a 100%);
    color: white;
}

.reseller-dashboard-page .btn-deposit-stripe:hover {
    background: linear-gradient(135deg, #e8965a 0%, #d4824a 100%);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.reseller-dashboard-page .btn-deposit-crypto {
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
    color: white;
}

.reseller-dashboard-page .btn-deposit-crypto:hover {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    box-shadow: 0 4px 12px rgba(56, 178, 172, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .reseller-dashboard-page .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .reseller-dashboard-page .balance-card-main {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .reseller-dashboard-page .stats-grid {
        grid-template-columns: 1fr;
    }

    .reseller-dashboard-page .data-tabs {
        flex-direction: column;
    }

    .reseller-dashboard-page .data-table-container {
        overflow-x: auto;
    }

    .reseller-dashboard-page .data-table {
        min-width: 500px;
    }

    .reseller-dashboard-page .deposit-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Order Details Modal
   ============================================ */
.order-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-details-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.order-details-modal .modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.order-details-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
}

.order-details-modal .modal-close:hover {
    color: #333;
}

.order-details-modal h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.4rem;
    color: #333;
}

.order-details-modal h3 i {
    margin-right: 0.5rem;
    color: #ff9800;
}

.order-details-loading,
.order-details-error {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.order-details-error {
    color: #dc3545;
}

.order-details-error i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Detail Sections */
.detail-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.detail-section h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #666;
    font-size: 0.9rem;
}

.detail-value {
    color: #333;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
    word-break: break-all;
}

.detail-value a {
    color: #ff9800;
    text-decoration: none;
    word-break: break-all;
}

.detail-value a:hover {
    text-decoration: underline;
}

.detail-value code {
    background: #e9ecef;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    word-break: break-all;
}

.iccid-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-copy-small {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.85rem;
}

.btn-copy-small:hover {
    color: #ff9800;
}

/* Usage Bar */
.usage-bar-container {
    background: #e9ecef;
    border-radius: 6px;
    height: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.usage-bar {
    background: linear-gradient(90deg, #ff9800, #f57c00);
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.usage-stats {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.usage-percent {
    color: #999;
    margin-left: 0.5rem;
}

/* QR Code */
.qr-code-container {
    text-align: center;
    margin-bottom: 1rem;
}

.qr-code-container img {
    max-width: 150px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Activation Code */
.activation-code-row .detail-value {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activation-code {
    word-break: break-all;
    max-width: 300px;
    font-size: 0.8rem;
}

/* Cancel Section */
.cancel-section {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

.cancel-warning {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cancel-warning i {
    color: #856404;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cancel-warning p {
    margin: 0;
    font-size: 0.85rem;
    color: #856404;
    line-height: 1.5;
}

.cancel-eligible {
    text-align: center;
    padding-top: 0.5rem;
}

.cancel-eligible-text {
    color: #28a745;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cancel-eligible-text i {
    margin-right: 0.5rem;
}

.btn-cancel-esim {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cancel-esim:hover {
    background: #c82333;
}

.btn-cancel-esim:disabled {
    background: #999;
    cursor: not-allowed;
}

.btn-cancel-esim i {
    margin-right: 0.5rem;
}

.cancel-not-eligible {
    text-align: center;
    padding: 0.5rem 0;
}

.cancel-not-eligible p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

.cancel-not-eligible i {
    color: #dc3545;
    margin-right: 0.5rem;
}

/* Clickable order rows */
.order-row.clickable {
    cursor: pointer;
    transition: background 0.2s;
}

.order-row.clickable:hover {
    background: #f8f9fa;
}

/* View details button */
.actions-cell {
    text-align: center;
    width: 50px;
}

.btn-view-details {
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-view-details:hover {
    background: #ff9800;
    border-color: #ff9800;
    color: white;
}

.order-row.clickable:hover .btn-view-details {
    background: #ff9800;
    border-color: #ff9800;
    color: white;
}

/* Status badge colors */
.status-badge.status-got-resource {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-in-use {
    background: #cce5ff;
    color: #004085;
}

@media (max-width: 600px) {
    .order-details-modal .modal-content {
        padding: 1rem;
        max-height: 90vh;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .detail-value {
        text-align: left;
    }

    .activation-code {
        max-width: 100%;
    }
}

/* App Link / Deep Link Page Styles */
.app-link-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

.app-link-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.app-link-card .app-icon {
    margin-bottom: 1.5rem;
}

.app-link-card .app-icon img {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-link-card .app-icon-fallback {
    display: none;
    width: 100px;
    height: 100px;
    border-radius: 22px;
    background: linear-gradient(135deg, #FFD93D 0%, #F5A623 100%);
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-link-card .app-icon-fallback span {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
}

.app-link-card h1 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.app-link-card .subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
}

.app-link-card .iccid-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.app-link-card .iccid-label {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0 0 0.75rem 0;
}

.app-link-card .iccid-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.app-link-card .iccid-display code {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 0.875rem;
    color: #2c3e50;
    word-break: break-all;
}

.app-link-card .copy-btn {
    background: #F5A623;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
    color: #2c3e50;
}

.app-link-card .copy-btn:hover {
    background: #e69a1f;
}

.app-link-card .copy-status {
    font-size: 0.875rem;
    margin: 0.75rem 0 0 0;
    height: 1.25rem;
    color: #6c757d;
}

.app-link-card .copy-status.success {
    color: #28a745;
}

.app-link-card .download-section {
    margin-bottom: 2rem;
}

.app-link-card .download-text {
    color: #6c757d;
    margin-bottom: 1rem;
}

.app-link-card .store-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-link-card .store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.app-link-card .store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-link-card .store-btn i {
    font-size: 1.75rem;
}

.app-link-card .store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-link-card .store-btn-text .small {
    font-size: 0.7rem;
    opacity: 0.9;
}

.app-link-card .store-btn-text .large {
    font-size: 1.1rem;
    font-weight: 600;
}

.app-link-card .ios-btn {
    background: #000;
    color: #fff;
}

.app-link-card .android-btn {
    background: #3cba54;
    color: #fff;
}

.app-link-card .store-btn.highlighted {
    box-shadow: 0 0 0 3px #F5A623;
}

.app-link-card .instructions {
    text-align: left;
    background: #fff8e1;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.app-link-card .instructions h3 {
    font-size: 1rem;
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
}

.app-link-card .instructions ol {
    margin: 0;
    padding-left: 1.25rem;
    color: #5a5a5a;
}

.app-link-card .instructions li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.app-link-card .instructions li:last-child {
    margin-bottom: 0;
}

.app-link-card .back-link {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.app-link-card .back-link a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.app-link-card .back-link a:hover {
    color: #2c3e50;
}

@media (max-width: 480px) {
    .app-link-container {
        padding: 1rem;
    }

    .app-link-card {
        padding: 1.5rem;
    }

    .app-link-card h1 {
        font-size: 1.5rem;
    }
}

/* ========================================
   Invoice / YourESIMData Page - Clean Details Section
   ======================================== */

.provision-container .esim-details {
    background: #1e1e2e;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.provision-container .esim-details-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.provision-container .detail-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 1rem;
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.provision-container .detail-row:last-of-type {
    border-bottom: none;
}

.provision-container .detail-label {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: 120px;
    flex-shrink: 0;
}

.provision-container .detail-value {
    color: #fff;
    font-size: 0.9rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    text-align: right;
    word-break: break-all;
    flex: 1;
}

.provision-container .detail-value-small {
    font-size: 0.75rem;
}

/* ICCID Copy Container - improved layout */
.provision-container .iccid-copy-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex: 1;
}

.provision-container .iccid-copy-container .detail-value {
    text-align: right;
}

.provision-container .iccid-copy-container .copy-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.provision-container .iccid-copy-container .copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .provision-container .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .provision-container .detail-label {
        min-width: auto;
    }

    .provision-container .detail-value {
        text-align: left;
        width: 100%;
    }

    .provision-container .iccid-copy-container {
        align-items: flex-start;
        width: 100%;
    }

    .provision-container .iccid-copy-container .detail-value {
        text-align: left;
    }

    .provision-container .iccid-copy-container .copy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Copyable Field Component
   Clean card-style for ICCID, Activation Code, etc.
   ======================================== */

.copyable-field {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    margin: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 100%;
    overflow: hidden;
}

.copyable-field-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copyable-field-value {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 1rem;
    color: #212529;
    word-break: break-all;
    overflow-wrap: anywhere;
    line-height: 1.5;
    background: #fff;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    max-width: 100%;
    overflow: hidden;
}

.copyable-field-value-small {
    font-size: 0.8rem;
}

.copyable-field-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.copyable-field-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.copyable-field-btn:active {
    transform: translateY(0);
}

.copyable-field-btn.copied {
    background: #28a745;
}

/* Dark theme variant (for provision-container) */
.provision-container .copyable-field {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.provision-container .copyable-field-label {
    color: #a0a0a0;
}

.provision-container .copyable-field-value {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Desktop: Side by side layout */
@media (min-width: 768px) {
    .copyable-field {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .copyable-field-label {
        min-width: 130px;
        flex-shrink: 0;
    }

    .copyable-field-value {
        flex: 1;
    }

    .copyable-field-btn {
        width: auto;
        min-width: 100px;
        flex-shrink: 0;
    }
}

/* ===========================================
   App Store Buttons - Pure CSS
   Reusable buttons matching official badge styles
   =========================================== */

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid #a6a6a6;
    transition: opacity 0.2s, transform 0.2s;
    height: 44px;
    box-sizing: border-box;
}

.store-badge:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}

.store-badge.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

/* App Store (iOS) Badge */
.store-badge-ios .store-badge-icon {
    font-size: 24px;
}

.store-badge-ios .store-badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.store-badge-ios .store-badge-small {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.store-badge-ios .store-badge-large {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Google Play Badge */
.store-badge-android .store-badge-icon {
    width: 24px;
    height: 24px;
}

.store-badge-android .store-badge-icon svg {
    width: 100%;
    height: 100%;
}

.store-badge-android .store-badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.store-badge-android .store-badge-small {
    font-size: 8px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.store-badge-android .store-badge-large {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

/* Container for badge buttons */
.store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   Unlimited Daily Toggle
   ============================================ */
.daily-toggle-container {
    display: none; /* Hidden by default, shown via JS when daily packages exist */
    justify-content: center;
    padding: 0 1rem;
    margin-bottom: 0.8rem;
}

.daily-toggle-wrapper {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 0.6rem 1rem;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 2px 6px rgba(251, 191, 36, 0.15);
}

.daily-toggle-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.daily-toggle-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: #92400e;
}

.daily-toggle-buttons {
    display: flex;
    gap: 0.4rem;
    background: #fde68a;
    border-radius: 8px;
    padding: 3px;
}

.daily-toggle-buttons .daily-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.5rem 0.6rem;
    border: none;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    font-weight: 500;
    color: #92400e;
}

.daily-toggle-buttons .daily-tab:hover {
    background: rgba(255, 255, 255, 0.5);
}

.daily-toggle-buttons .daily-tab.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.daily-toggle-buttons .daily-tab i {
    font-size: 0.9rem;
}

/* Tooltip for daily toggle */
.daily-info-icon {
    color: #d97706;
    font-size: 0.75rem;
    cursor: help;
}

.daily-tooltip {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    line-height: 1.4;
    width: 240px;
    z-index: 100;
    margin-top: 0.4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.daily-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #1f2937;
}

.daily-tooltip-trigger:hover + .daily-tooltip,
.daily-tooltip:hover {
    display: block;
}

/* Mobile responsive for daily toggle */
@media (max-width: 480px) {
    .daily-toggle-wrapper {
        padding: 0.5rem 0.75rem;
    }

    .daily-toggle-buttons .daily-tab {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
    }

    .daily-toggle-title {
        font-size: 0.8rem;
    }
}

/* ============================================
   Unlimited Daily Duration Cards Grid
   ============================================ */
.unlimited-daily-section {
    padding: 1rem;
    margin-top: 0.5rem;
    /* Span full width when inside a grid container like .packages-grid */
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
}

.unlimited-daily-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.unlimited-daily-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.unlimited-daily-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.unlimited-coverage-info {
    font-size: 0.8rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 0.5rem;
    background: #f3f4f6;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.unlimited-coverage-info i {
    color: #6366f1;
    margin-right: 4px;
}

.coverage-countries-link {
    color: #6366f1;
    text-decoration: none;
    font-size: 0.75rem;
    margin-left: 8px;
}

.coverage-countries-link:hover {
    text-decoration: underline;
}

.coverage-countries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.coverage-country-item {
    background: #f3f4f6;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #374151;
}

.unlimited-info-link {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
}

.unlimited-info-link:hover {
    text-decoration: underline;
}

/* Unlimited Info Modal */
.unlimited-info-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.unlimited-info-modal {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.unlimited-info-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.unlimited-info-modal-close:hover {
    color: #333;
    background: #f3f4f6;
}

.unlimited-info-modal h3 {
    margin: 0 0 1rem 0;
    color: #1f2937;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.unlimited-info-content {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
}

.unlimited-info-content p {
    margin: 0 0 0.75rem 0;
}

.unlimited-info-content ul {
    margin: 0 0 1rem 0;
    padding-left: 1.25rem;
}

.unlimited-info-content li {
    margin-bottom: 0.4rem;
}

.unlimited-info-note {
    background: #fef3c7;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.8rem;
    color: #92400e;
    margin-top: 1rem;
}

.unlimited-info-note i {
    margin-right: 0.4rem;
}

.duration-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.duration-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.duration-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.duration-card.popular {
    border-color: #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.duration-card-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    white-space: nowrap;
}

.duration-card-days {
    font-size: 1.2rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.2rem;
}

.duration-card.popular .duration-card-days {
    color: #065f46;
}

.duration-card-data {
    font-size: 0.75rem;
    color: #b45309;
    margin-bottom: 0.4rem;
}

.duration-card.popular .duration-card-data {
    color: #047857;
}

.duration-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #047857;
}

.duration-card-per-day {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.duration-card-privacy {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.duration-card-privacy.max-privacy {
    background: #d1fae5;
    color: #065f46;
}

.duration-card-privacy.max-privacy i {
    color: #10b981;
}

.duration-card-privacy.hk-ip {
    background: #fef3c7;
    color: #92400e;
}

.duration-card-privacy.hk-ip i {
    color: #f59e0b;
}

/* Duration cards payment buttons */
.duration-card-buttons {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.duration-card-btn {
    flex: 1;
    padding: 0.5rem 0.25rem;
    border: none;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.duration-card-btn.stripe {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
}

.duration-card-btn.stripe:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
}

.duration-card-btn.crypto {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.duration-card-btn.crypto:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* Duration Discount Styles */
.duration-card-discount-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    z-index: 5;
}

.duration-card.popular .duration-card-discount-badge {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 2px 4px rgba(5, 150, 105, 0.3);
}

.duration-card-price .original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.85em;
    margin-right: 4px;
}

.duration-card-savings {
    font-size: 0.7rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 2px;
}

.duration-card-badge.best-value {
    background: #6366f1;
}

/* Mobile responsive for duration cards */
@media (max-width: 500px) {
    .duration-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .duration-card {
        padding: 0.8rem 0.5rem;
    }

    .duration-card-days {
        font-size: 1.1rem;
    }

    .duration-card-price {
        font-size: 1rem;
    }

    /* Stack buttons vertically on mobile */
    .duration-card-buttons {
        flex-direction: column;
        gap: 0.15rem;
    }

    .duration-card-btn {
        font-size: 0.85rem;
        padding: 0.7rem 0.5rem;
        width: 100%;
    }
}

/* ============================================
   Crypto Promo Code Modal
   ============================================ */
.crypto-promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.crypto-promo-modal {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 380px;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
}

.crypto-promo-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.crypto-promo-close:hover {
    color: #fff;
}

.crypto-promo-modal h3 {
    margin: 0 0 1rem 0;
    color: #fff;
    font-size: 1.25rem;
    text-align: center;
}

.crypto-promo-price {
    text-align: center;
    color: #aaa;
    margin-bottom: 1.25rem;
}

.crypto-promo-price strong {
    color: #fff;
    font-size: 1.5rem;
}

.crypto-promo-input-group {
    margin-bottom: 1rem;
}

.crypto-promo-input-group label {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.crypto-promo-input-row {
    display: flex;
    gap: 0.5rem;
}

.crypto-promo-input-row input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 8px;
    background: #0d0d1a;
    color: #fff;
    font-size: 1rem;
}

.crypto-promo-input-row input:focus {
    outline: none;
    border-color: #f7931a;
}

.crypto-promo-apply-btn {
    padding: 0.75rem 1rem;
    background: #333;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.crypto-promo-apply-btn:hover {
    background: #444;
}

.crypto-promo-message {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    min-height: 1.2em;
}

.crypto-promo-message.success {
    color: #4ade80;
}

.crypto-promo-message.error {
    color: #f87171;
}

.crypto-promo-discount {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.crypto-promo-discount .discount-label,
.crypto-promo-discount .final-label {
    color: #888;
    font-size: 0.85rem;
}

.crypto-promo-discount .discount-amount {
    color: #4ade80;
    font-weight: 600;
}

.crypto-promo-discount .final-amount {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.crypto-promo-continue-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #f7931a 0%, #e8850f 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.crypto-promo-continue-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247, 147, 26, 0.3);
}

.crypto-promo-continue-btn i {
    font-size: 1.1rem;
}

/* ============================================
   Network Coverage - Country Grouped Display
   ============================================ */

.network-coverage-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.country-network-group {
    /* No box styling - inline list */
}

.country-network-group .country-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    cursor: pointer;
    transition: background 0.2s;
}

.country-network-group .country-header:hover {
    background: #f3f4f6;
}

.country-network-group .country-flag {
    font-size: 1.5rem;
}

.country-network-group .country-name {
    font-weight: 600;
    color: #374151;
    flex: 1;
}

.country-network-group .operator-count {
    font-size: 0.85rem;
    color: #6b7280;
}

.country-network-group .expand-icon {
    color: #9ca3af;
    transition: transform 0.2s;
    font-size: 0.8rem;
}

.country-network-group.expanded .expand-icon {
    transform: rotate(180deg);
}

.country-network-group .country-operators {
    display: none;
    padding: 0.5rem 1rem 0.75rem;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.country-network-group.expanded .country-operators {
    display: block;
}

.country-network-group .operator-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.country-network-group .operator-item:last-child {
    border-bottom: none;
}

.country-network-group .operator-item .operator-name {
    font-weight: 500;
    color: #374151;
}

.country-network-group .network-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e5e7eb;
    color: #374151;
}

.country-network-group .network-badge.badge-5g {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}


/* ==========================================
   Help Tickets Page Styles
   ========================================== */

.help-tickets-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.help-tickets-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.help-tickets-hero h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.help-tickets-hero .hero-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.help-tickets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .help-tickets-grid {
        grid-template-columns: 1fr;
    }
}

.section-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.section-card h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-card h2 i {
    color: var(--secondary-color);
}

.section-intro {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 1.5rem;
}

.form-section h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* Collapsible Sections */
.form-section.collapsible .collapsible-content {
    display: none;
    padding-top: 0.5rem;
}

.form-section.collapsible.open .collapsible-content {
    display: block;
}

.collapsible-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
}

.collapsible-header:hover {
    color: var(--secondary-color);
}

.collapsible-header .toggle-icon {
    margin-left: auto;
    transition: transform 0.3s;
    font-size: 0.8rem;
    color: #999;
}

.form-section.collapsible.open .toggle-icon {
    transform: rotate(180deg);
}

.optional-badge {
    font-size: 0.7rem;
    background: #f0f0f0;
    color: #666;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: normal;
}

/* Form Elements */
.help-tickets-page .form-group {
    margin-bottom: 1rem;
}

.help-tickets-page .form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.help-tickets-page .form-group input,
.help-tickets-page .form-group select,
.help-tickets-page .form-group textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.help-tickets-page .form-group input:focus,
.help-tickets-page .form-group select:focus,
.help-tickets-page .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.help-tickets-page .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.field-hint {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.3rem;
}

.required {
    color: var(--error-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Privacy Notice */
.help-tickets-page .privacy-notice {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #666;
}

.help-tickets-page .privacy-notice i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Buttons */
.btn-submit,
.btn-check {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
}

.btn-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-check {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 1rem;
}

.btn-check:hover {
    background: var(--primary-color);
    color: white;
}

/* Status Display */
.status-display {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.status-pending {
    background: #fef3cd;
    color: #856404;
}

.status-badge.status-in_progress {
    background: #cce5ff;
    color: #004085;
}

.status-badge.status-waiting_customer {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-resolved {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-closed {
    background: #e2e3e5;
    color: #383d41;
}

.status-category {
    font-size: 0.9rem;
    color: #666;
}

.status-detail {
    margin-bottom: 1rem;
}

.status-detail h4 {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-detail p {
    color: #333;
    white-space: pre-wrap;
    word-break: break-word;
}

#admin-response-section {
    background: #e8f4fd;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color);
}

#admin-response-section h4 {
    color: var(--secondary-color);
}

.status-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

/* Help Card */
.help-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.help-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-links li {
    margin-bottom: 0.75rem;
}

.help-links a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.help-links a:hover {
    color: var(--secondary-color);
}

.help-links a i {
    width: 20px;
    text-align: center;
}

/* Ticket Modal */
.ticket-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.ticket-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.ticket-modal .modal-content {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ticket-modal .modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.ticket-modal .modal-icon.success {
    background: #d4edda;
    color: var(--success-color);
}

.ticket-modal h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ticket-modal .warning-text {
    color: #856404;
    background: #fff3cd;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.ticket-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.ticket-code-display code {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.85rem;
    word-break: break-all;
    color: var(--primary-color);
}

.btn-copy-code {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-copy-code:hover {
    background: #2980b9;
}

.modal-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-continue {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.btn-continue:hover {
    background: #218838;
}

/* Alert Styles */
.help-tickets-page .alert {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-tickets-page .alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Conversation Thread */
.conversation-thread {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.conversation-message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.conversation-message.message-customer {
    background: #f0f4f8;
    border-left: 3px solid #666;
}

.conversation-message.message-admin {
    background: #e8f4fd;
    border-left: 3px solid var(--secondary-color);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.message-sender {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.message-customer .message-sender {
    color: #555;
}

.message-admin .message-sender {
    color: var(--secondary-color);
}

.message-date {
    color: #888;
}

.message-content {
    color: #333;
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.5;
}

/* Reply Form */
#reply-section {
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    margin-top: 1rem;
}

#reply-section h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

#reply-form .form-group {
    margin-bottom: 0.75rem;
}

#reply-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
}

#reply-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.btn-reply {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.btn-reply:hover {
    background: #0056b3;
}

.btn-reply:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.upload-hint {
    margin-bottom: 0.75rem;
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    color: #888;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover {
    border-color: var(--secondary-color);
    background: #f8fbff;
}

.upload-zone.drag-over {
    border-color: var(--secondary-color);
    background: #e8f4fd;
}

.upload-zone i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #aaa;
}

.upload-zone p {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
}

.upload-zone small {
    font-size: 0.75rem;
    color: #aaa;
}

.upload-browse-link {
    color: var(--secondary-color);
    cursor: pointer;
    text-decoration: underline;
}

.upload-zone-small {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.upload-zone-small i {
    display: inline;
    font-size: 1rem;
    margin-bottom: 0;
    margin-right: 0.4rem;
}

.upload-zone-small span {
    font-size: 0.85rem;
}

/* Upload Thumbnails */
.upload-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.upload-thumbnails:empty {
    display: none;
}

.upload-thumb {
    position: relative;
    width: 80px;
    text-align: center;
}

.upload-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.upload-thumb-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    line-height: 1;
    padding: 0;
}

.upload-thumb-remove:hover {
    background: #c0392b;
}

.upload-thumb-name {
    display: block;
    font-size: 0.65rem;
    color: #888;
    margin-top: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Message Attachments (inline images in conversation) */
.message-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.message-attachment-link {
    display: block;
}

.message-attachment-img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 6px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.message-attachment-img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Page-level Currency Selector */
.page-currency-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem auto;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 10px;
    border: 1px solid #e9ecef;
    max-width: 280px;
}

.page-currency-selector label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

.page-currency-selector label i {
    color: #28a745;
    font-size: 0.95rem;
}

.page-currency-selector .currency-select {
    color: #333;
    background-color: #fff;
    border: 1px solid #28a745;
    font-size: 0.9rem;
    padding: 0.5rem 2.25rem 0.5rem 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-weight: 600;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2328a745' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    min-width: 110px;
}

.page-currency-selector .currency-select:hover {
    border-color: #218838;
    background-color: #f8fff8;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.15);
}

.page-currency-selector .currency-select:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

@media (max-width: 768px) {
    .page-currency-selector {
        justify-content: center;
        padding: 0.6rem 0.75rem;
    }

    .page-currency-selector label {
        font-size: 0.85rem;
    }

    .page-currency-selector .currency-select {
        font-size: 0.85rem;
        padding: 0.4rem 2rem 0.4rem 0.7rem;
        min-width: 100px;
    }
}
