/**
 * Dichvusocks.net - Premium Socks5 Proxy Service
 * Clean & Professional UI
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --primary: #3498db;
    --primary-dark: #2980b9;
    --primary-light: #5dade2;
    --secondary: #2c3e50;
    --secondary-light: #34495e;
    --accent: #3498db;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray-600: #555;
    --gray-500: #777;
    --gray-400: #999;
    --gray-300: #bbb;
    --gray-200: #ddd;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
}

/* ============================================
   Base Styles
   ============================================ */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   Utilities
   ============================================ */
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.font-bold { font-weight: 600; }
.gap-5px { gap: 5px; }
.gap-10px { gap: 10px; }

/* ============================================
   Alert Banner
   ============================================ */
.alert {
    font-size: 14px !important;
}
.alert-danger {
    background: var(--danger);
    border: none;
    color: var(--white);
    font-size: 13px;
    padding: 10px 40px;
    border-radius: 0;
}

.alert-danger a {
    color: #ffeb3b;
    font-weight: 600;
}

.alert-danger a:hover {
    color: var(--white);
}

.alert-danger .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* ============================================
   Header
   ============================================ */
.header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1030;
    padding: 0;
}

.header .container {
    max-width: 1200px;
}

.header__logo {
    height: 60px;
    width: auto;
}

@media (min-width: 992px) {
    .header__logo {
        height: 70px;
    }
}

.header__nav {
    gap: 5px;
}

.header__nav__li > a,
.header .navbar-nav > li > a {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--secondary) !important;
    position: relative;
    text-decoration: none;
}

.header__nav__a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: all 0.2s ease;
    transform: translateX(-50%);
}

.header__nav__li.active > .header__nav__a::after,
.header__nav__a:hover::after,
.nav-link.active.header__nav__a::after {
    width: 80%;
}

.header__nav__a:hover {
    color: var(--primary) !important;
    text-decoration: none;
}

/* ============================================
   Offcanvas Mobile Menu
   ============================================ */
.offcanvas {
    background: var(--secondary);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-title {
    color: var(--white);
}

.offcanvas .btn-close {
    filter: brightness(0) invert(1);
}

.offcanvas .nav-link {
    color: rgba(255,255,255,0.8) !important;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
    color: var(--white) !important;
}

/* ============================================
   Home Section 1 - Feature Bar
   ============================================ */
.home__section1 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow-x: auto;
}

.home__section1::-webkit-scrollbar {
    display: none;
}

.home__section1__nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home__section1__nav__li {
    min-width: 130px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.home__section1__nav__li:first-child {
    border-left: 1px solid rgba(255,255,255,0.2);
}

.home__section1__nav__li:hover {
    background: rgba(0,0,0,0.01);
}

.home__section1__nav__a {
    display: block;
    padding: 12px 15px;
    color: var(--white) !important;
    text-decoration: none !important;
}

.home__section1__nav i.fa,
.home__section1__nav i.fas {
    font-size: 20px;
    margin-bottom: 5px;
    display: block;
}

.home__section1__nav p {
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
}

.home__section1__nav__span {
    display: inline;
}

@media (min-width: 992px) {
    .home__section1__nav__span {
        display: none;
    }
    .home__section1__nav__li:hover .home__section1__nav__span {
        display: inline;
    }
}

.digital {
    color: var(--white);
    font-size: 13px;
}

/* ============================================
   Home Cards
   ============================================ */
.home__card {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.home__card__header {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 15px;
}

.home__card__header__title {
    font-size: 14px;
    font-weight: 500;
    padding-left: 28px;
    background: url("../images/icon_globe2.png") no-repeat left center;
    background-size: 20px;
}

.home__card__body__item {
    padding: 8px 12px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.home__card__body__item:nth-child(odd) {
    background: var(--white);
}

.home__card__body__txt {
    font-size: 14px;
    color: #333;
}

.home__card__body__count {
    font-weight: 500;
    color: var(--accent);
    font-size: 13px;
}

/* ============================================
   Home Info Box
   ============================================ */
.home__item__box1 {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    font-size: 14px;
}

.home__item__box1::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 30px;
    border: 8px solid transparent;
    border-top-color: var(--gray-200);
}

.home__item__box1::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 31px;
    border: 7px solid transparent;
    border-top-color: var(--white);
}

.home__item__box1__label {
    display: inline-block;
    padding: 5px 12px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.home__item__table {
    border-radius: 6px;
    overflow: hidden;
    margin-top: 10px;
}

.home__item__table th {
    background: var(--secondary);
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 12px;
    text-align: center;
    border: none;
}

.home__item__table td {
    padding: 2px 4px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.home__item__table tbody tr:hover td {
    background: var(--gray-100);
}

/* ============================================
   Home Section 2 - Payment Methods
   ============================================ */
.home__section2 {
    background: var(--gray-100);
    padding: 25px 0;
    border-top: 1px solid var(--gray-200);
}

.home__section2__title {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.home__section2__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.home__section2__boxCover {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
}

.home__section2__img {
    height: 35px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    padding: 5px 10px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ============================================
   Login / Register Page
   ============================================ */
.background__custom {
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
}

.login__card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .login__card {
        padding: 25px;
        margin: 10px;
    }
}

.login__card__title {
    color: var(--secondary);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.login__card .form-label {
    color: #555;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;
}

.login__card__txt {
    color: #666;
    font-size: 14px;
}

.login__card__link {
    color: var(--accent) !important;
    font-weight: 500;
}

.login__card__link:hover {
    color: #2980b9 !important;
}

.login__card__btn {
    background: var(--accent);
    border: none;
    color: var(--white);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.login__card__btn:hover {
    background: #2980b9;
    color: var(--white);
    transform: translateY(-1px);
}

/* Login form controls */
.login__card .form-control {
    background: #f8f9fa;
    border: 1px solid #ddd;
    color: #333;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
}

.login__card .form-control:focus {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
    color: #333;
}

.login__card .form-control::placeholder {
    color: #aaa;
}

.login__card .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* ============================================
   Form Controls Dark
   ============================================ */
.form-control-dark {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 15px;
}

.form-control-dark:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    color: var(--white);
}

.form-control-dark::placeholder {
    color: rgba(255,255,255,0.4);
}

/* ============================================
   Socks List Page - Light Theme
   ============================================ */
.sockslist-page {
    background: #f0f2f5;
    min-height: 100vh;
}

.sockslist__card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: none;
    overflow: hidden;
}

.sockslist__card__header {
    background: #f8f9fa;
    color: #555;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.sockslist__card__body {
    padding: 12px 14px;
    background: var(--white);
}

.sockslist__label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 15px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #e0e0e0;
}

.sockslist__dropdown {
    background: var(--white);
    border: 1px solid #ddd;
    color: #333;
    padding: 6px 30px 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
    transition: border-color 0.15s ease;
    min-width: 130px;
}

.sockslist__dropdown:hover {
    border-color: #bbb;
}

.sockslist__dropdown:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
    outline: none;
}

.sockslist__dropdown option {
    background: var(--white);
    color: #333;
}

.sockslist__card__btnP--c1 {
    background: var(--accent);
    border: none;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s ease;
}

.sockslist__card__btnP--c1:hover {
    background: #2980b9;
    color: var(--white);
}

/* Socks Table - Light */
.sockslist__table {
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e0e0e0;
}

.sockslist__table th {
    background: #f8f9fa;
    color: #555;
    font-weight: 600;
    font-size: 12px;
    padding: 10px 8px;
    text-align: center;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sockslist__table td {
    background: var(--white);
    color: #555;
    font-size: 13px;
    padding: 8px 6px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    vertical-align: middle;
}

.sockslist__table tbody tr:nth-child(odd) td {
    background: #fafbfc;
}

.sockslist__table tbody tr:hover td {
    background: #f0f7ff;
}

.sockslist__table td a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
}

.sockslist__table td a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Form control for sockslist */
.sockslist-page .form-control {
    border: 1px solid #ddd;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
}

.sockslist-page .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.sockslist-page .form-control::placeholder {
    color: #aaa;
}

/* ============================================
   Buy Socks Page - Modern Card Design
   ============================================ */

/* Tab Switcher */
.plan-tabs {
    display: inline-flex;
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.plan-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-tab:hover {
    color: var(--primary);
}

.plan-tab.active {
    background: var(--primary);
    color: var(--white);
}

.plan-tab i {
    font-size: 14px;
}

/* Plan Content */
.plan-content {
    display: none;
}

.plan-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Plan Columns (Daily Plans) */
.plan-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.plan-column {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.plan-column__header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.plan-column__header i {
    font-size: 24px;
    opacity: 0.9;
}

.plan-column__header span:first-of-type {
    font-size: 18px;
    font-weight: 600;
}

.plan-column__header--popular {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.plan-column__header--yearly {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.plan-column__badge {
    background: rgba(255,255,255,0.25);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-column__badge--save {
    background: #f39c12;
}

.plan-column__badge--cheap {
    background: #f312d5;
}

.plan-column__badge--popular {
    background: #27ae60;
}
.plan-column__body {
    padding: 10px;
}

.plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin: 5px 0;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.plan-item:hover {
    background: #e3f2fd;
    border-color: var(--primary);
    transform: translateX(5px);
}

.plan-item__limit {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.plan-item__limit::after {
    content: ' socks';
    font-size: 11px;
    font-weight: 400;
    color: var(--gray-500);
}

.plan-item__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--success);
}

/* Credit Tiers (Game-style) */
.credit-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.credit-tier {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.credit-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.credit-tier__header {
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

/* Starter - Bronze */
.credit-tier--starter .credit-tier__header {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: var(--white);
}

/* Standard - Silver */
.credit-tier--standard .credit-tier__header {
    background: linear-gradient(135deg, #a8a9ad 0%, #71797E 100%);
    color: var(--white);
}

/* Premium - Gold */
.credit-tier--premium .credit-tier__header {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    color: #333;
}

.credit-tier__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.credit-tier--premium .credit-tier__icon {
    background: rgba(0,0,0,0.1);
}

.credit-tier__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px;
}

.credit-tier__desc {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.credit-tier__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.credit-tier--premium .credit-tier__badge {
    background: #e74c3c;
    color: var(--white);
}

.credit-tier__body {
    padding: 15px;
}

.credit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin: 8px 0;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.credit-item:hover {
    border-color: var(--primary);
    background: #fff;
    transform: scale(1.02);
}

.credit-tier--starter .credit-item:hover {
    border-color: #cd7f32;
}

.credit-tier--standard .credit-item:hover {
    border-color: #71797E;
}

.credit-tier--premium .credit-item:hover {
    border-color: #daa520;
}

.credit-item__info {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.credit-item__amount {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.credit-item__label {
    font-size: 12px;
    color: var(--gray-500);
}

.credit-item__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--success);
}

/* Plan Grid (fallback) */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Plan Card */
.plan-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.plan-card__header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 20px 15px;
    color: var(--white);
}

.plan-card--credit .plan-card__header {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.plan-card__limit {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.plan-card__label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card__body {
    padding: 20px 15px;
}

.plan-card__price {
    font-size: 28px;
    font-weight: 700;
    color: var(--success);
}

.plan-card__duration {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 5px;
}

.plan-card__footer {
    padding: 0 15px 20px;
}

.plan-card__btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan-card__btn:hover {
    background: var(--primary-dark);
}

.plan-card--credit .plan-card__btn {
    background: #9b59b6;
}

.plan-card--credit .plan-card__btn:hover {
    background: #8e44ad;
}

/* Payment Modal */
.payment-modal .modal-header {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.payment-modal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.payment-modal .modal-body {
    padding: 0;
}

.payment-summary {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.payment-methods {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.payment-method:hover {
    border-color: var(--primary);
    background: #f8fbff;
    transform: translateX(5px);
}

.payment-method__btn {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.payment-method__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    background: #f7931a;
    flex-shrink: 0;
}

.payment-method__icon.ltc { background: #345d9d; }
.payment-method__icon.dash { background: #008de4; }
.payment-method__icon.bch { background: #8dc351; }
.payment-method__icon.usdt { background: #26a17b; }
.payment-method__icon.usdt-bsc { background: #f3ba2f; }
.payment-method__icon.wmz { background: #036cb5; }

.payment-method__info {
    flex: 1;
}

.payment-method__name {
    display: block;
    font-weight: 600;
    color: #333;
}

.payment-method__fee {
    font-size: 12px;
    color: var(--gray-500);
}

/* Responsive */
@media (max-width: 768px) {
    .plan-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .plan-column__header {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        padding: 12px;
    }
    
    .plan-column__header i {
        font-size: 18px;
    }
    
    .plan-column__header span:first-of-type {
        font-size: 16px;
    }
    
    .plan-item {
        padding: 10px 12px;
    }
    
    .plan-item__limit {
        font-size: 16px;
    }
    
    .plan-item__price {
        font-size: 14px;
    }
    
    /* Credit Tiers Responsive */
    .credit-tiers {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .credit-tier__header {
        padding: 20px 15px;
    }
    
    .credit-tier__icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .credit-tier__title {
        font-size: 18px;
    }
    
    .credit-item {
        padding: 10px 12px;
    }
    
    .credit-item__amount {
        font-size: 18px;
    }
    
    .credit-item__price {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .plan-tabs {
        width: 100%;
    }
    
    .plan-tab {
        flex: 1;
        justify-content: center;
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .plan-tab span {
        display: none;
    }
    
    .plan-tab i {
        font-size: 18px;
    }
    
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .plan-card__header {
        padding: 15px 10px;
    }
    
    .plan-card__limit {
        font-size: 28px;
    }
    
    .plan-card__body {
        padding: 15px 10px;
    }
    
    .plan-card__price {
        font-size: 22px;
    }
    
    .plan-card__footer {
        padding: 0 10px 15px;
    }
    
    .plan-card__btn {
        padding: 10px;
        font-size: 13px;
    }
    
    .payment-method {
        padding: 10px 12px;
    }
    
    .payment-method__icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* ============================================
   Profile Page
   ============================================ */
.profile__card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.profile__card__header {
    background: linear-gradient(135deg, var(--accent) 0%, #2980b9 100%);
    padding: 15px 20px;
}

.profile__card__title {
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.profile__card__body {
    background: var(--white);
    padding: 20px;
}

/* ============================================
   Page Dark Theme (TOS, FAQ)
   ============================================ */
.page {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ddd;
    padding: 30px 0;
}

.page h1, .page h2, .page h3 {
    color: var(--white);
}

.page h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.page p {
    line-height: 1.7;
    font-size: 15px;
}

.page li > a {
    color: #f39c12;
}

/* ============================================
   Pagination - Light Theme
   ============================================ */
.pagination {
    gap: 3px;
}

.pagination .page-link {
    background: var(--white);
    border: 1px solid #ddd;
    color: #555;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.pagination .page-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #aaa;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
    padding: 15px 0;
    font-size: 14px;
}

.footer a {
    color: #3498db;
}

.footer a:hover {
    color: var(--white);
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 70px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top img {
    width: 50px;
    height: 50px;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ============================================
   Support Widget
   ============================================ */
.support {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: -280px;
    padding-left: 40px;
    background: url("../images/fb.png") no-repeat left center;
    z-index: 1000;
    transition: right 0.3s ease;
    cursor: pointer;
}

.support:hover,
.support.open {
    right: 0;
}

.support__card {
    min-width: 250px;
    background: var(--white);
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.support__list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.support__list li span {
    color: var(--gray-600);
    font-size: 13px;
}

/* ============================================
   Section Utilities
   ============================================ */
.section-small {
    padding: 20px 0;
}

.section-xsmall {
    padding: 10px 0;
}

.vh-offset {
    min-height: calc(100vh - 180px);
}

/* ============================================
   Payment Page
   ============================================ */
.pay__txt {
    color: #ddd;
    font-size: 15px;
    line-height: 1.7;
}

.pay__txt span {
    background: var(--white);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* ============================================
   OTP Page
   ============================================ */
.heading-verify-code {
    color: var(--white);
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
}

#inputs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 25px 0;
}

#inputs input {
    width: 45px;
    height: 55px;
    background: #333;
    border: 2px solid #555;
    border-radius: 6px;
    color: var(--white);
    font-size: 22px;
    text-align: center;
}

#inputs input:focus {
    border-color: var(--accent);
    outline: none;
}

.f2a-verify-message {
    color: var(--danger);
    font-size: 14px;
    text-align: center;
}
