/* Dashboard CSS */

/* Base Styles from style.css are inherited, adding specific dashboard overrides */

body {
    background: linear-gradient(135deg, #eef2f3 0%, #dbdee4 100%);
    /* Slightly different/cleaner bg for dashboard */
    min-height: 100vh;
}

/* Dashboard Navigation */
.dashboard-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dashboard-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.dashboard-links a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

.dashboard-links a:hover,
.dashboard-links a.active {
    background: rgba(31, 78, 140, 0.1);
    color: var(--primary-blue);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logout-btn {
    font-size: 0.9rem;
    color: #777;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.logout-btn:hover {
    color: var(--primary-orange);
}

/* Dashboard Layout */
.dashboard-container {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

.glass-card h2 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Welcome Section */
.welcome-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
}

.welcome-text h1 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.welcome-text p {
    color: #666;
}

.user-details {
    display: flex;
    gap: 2rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item .label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item .value {
    font-weight: 600;
    color: var(--text-dark);
}

/* Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Plan Card */
.plan-info {
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.plan-stat i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.plan-validity {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.plan-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

.plan-status.active {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
}

.upgrade-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Usage Card */
.usage-chart {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

/* CSS Circular Progress */
.progress-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--c) calc(var(--p)*1%), #eee 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.progress-inner {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.usage-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.usage-total {
    font-size: 0.8rem;
    color: #777;
}

.usage-note {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Payment Card */
.payment-details {
    margin-bottom: 1.5rem;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: #555;
}

.payment-row .amount {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    color: #888;
    font-size: 1.5rem;
}

/* Secondary Grid */
.dashboard-grid-secondary {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

/* Actions Grid */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.action-btn {
    background: white;
    border: none;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.action-btn .icon-box {
    margin: 0;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.action-btn span {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

/* Support Card */
.support-content {
    text-align: center;
}

.support-text {
    color: #666;
    margin-bottom: 1rem;
}

.support-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.support-buttons .btn-action {
    justify-content: center;
    width: 100%;
}

.btn-action.chat {
    background: linear-gradient(135deg, #1F4E8C, #14325c);
}

/* Footer */
.dashboard-footer {
    text-align: center;
    padding: 2rem 0;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-footer a {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

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

/* --- Plans Page Specific Styles --- */

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(240, 248, 255, 0.5));
}

.page-header h1 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Section Headers */
.plans-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0 1.5rem;
}

.plans-section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.glass-btn:hover {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
}

/* Plan Cards Enhancements */
.recommended {
    border: 2px solid rgba(242, 101, 34, 0.5);
    transform: scale(1.02);
    position: relative;
    background: rgba(255, 255, 255, 0.75);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-header h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.plan-header .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.plan-header .price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.plan-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.95rem;
}

.plan-features-list li i {
    color: #27ae60;
    font-size: 1.1rem;
}

/* OTT Grid */
.ott-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.ott-card {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ott-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ott-logo.netflix {
    background: #E50914;
}

.ott-logo.prime {
    background: #00A8E1;
}

.ott-logo.hotstar {
    background: #0c1c46;
    background: linear-gradient(135deg, #0f1c4e, #140526);
}

.ott-logo.zee5 {
    background: #6F2C91;
}

.ott-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.ott-card .price {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ott-card p {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
}

/* Combo Cards */
.combo-card {
    position: relative;
    overflow: hidden;
}

.combo-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ffcc00;
    color: #333;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.combo-desc {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.combo-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.icon-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: white;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.icon-dot.netflix {
    background: #E50914;
}

.icon-dot.prime {
    background: #00A8E1;
}

.icon-dot.hotstar {
    background: #1f3a8a;
}

.icon-dot.zee5 {
    background: #6F2C91;
}

.icon-dot.sonyliv {
    background: #f89e1b;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.glass-modal {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.wide-modal {
    max-width: 700px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--primary-orange);
}

/* Compare Table */
.table-responsive {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.compare-table th {
    background: rgba(31, 78, 140, 0.1);
    color: var(--primary-blue);
    padding: 12px;
    text-align: left;
}

.compare-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
}

.compare-table tr:last-child td {
    border-bottom: none;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Confirm Modal */
.highlight-text {
    color: var(--primary-blue);
    font-weight: 700;
}

.price-comparison {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.price-row.new-price {
    font-weight: 600;
    color: var(--text-dark);
}

.price-row.difference {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1rem;
}

.impact-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* --- Payments Page Styles --- */

/* Alert Banner */
.alert-banner {
    display: none;
    /* Hidden by default */
    align-items: center;
    gap: 15px;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #a71d2a;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 15px;
}

.alert-banner i {
    font-size: 1.5rem;
}

.alert-banner .alert-text span {
    font-weight: 700;
}

.close-alert {
    background: none;
    border: none;
    color: #a71d2a;
    font-size: 1.2rem;
    position: absolute;
    right: 15px;
    cursor: pointer;
}

/* Payment Layout Grid */
.payments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Billing Summary */
.billing-summary h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.95rem;
}

.summary-row .highlight {
    color: var(--text-dark);
    font-weight: 600;
}

.total-row {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.billing-dates {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.date-box {
    display: flex;
    flex-direction: column;
}

.date-box .label {
    font-size: 0.8rem;
    color: #888;
}

.date-box .value {
    font-weight: 600;
    color: var(--text-dark);
}

.date-box .value.overdue {
    color: #dc3545;
}

.account-status {
    margin-top: 1.5rem;
}

/* Pay Now Card */
.pay-now-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 248, 255, 0.8));
    border: 1px solid rgba(242, 101, 34, 0.3);
}

.pay-now-card h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.amount-display {
    text-align: center;
    margin: 1.5rem 0;
    color: var(--primary-blue);
}

.amount-display .currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 600;
}

.amount-display .amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.payment-method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 2rem;
}

.method-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.method-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.method-card.selected {
    border-color: var(--primary-orange);
    background: rgba(242, 101, 34, 0.1);
}

.method-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.method-card .icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.method-card .label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
}

.secure-badge {
    text-align: center;
    font-size: 0.8rem;
    color: #27ae60;
    margin: 1rem 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.gateway-logos {
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0.6;
}

.logo-box {
    font-size: 0.7rem;
    font-weight: 700;
    color: #888;
}

/* Auto Pay Toggle */
.auto-pay-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.auto-pay-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.auto-pay-content .icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(31, 78, 140, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.auto-pay-content .text-wrapper {
    flex: 1;
}

.auto-pay-content h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.auto-pay-content p {
    font-size: 0.8rem;
    color: #888;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary-orange);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary-orange);
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* History Table */
.history-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.glass-table {
    width: 100%;
    margin-top: 1rem;
}

.glass-table th {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.glass-table td {
    font-size: 0.95rem;
    padding: 15px 12px;
}

.download-btn {
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.download-btn:hover {
    color: var(--primary-orange);
}

/* Confirm Details */
.confirm-details {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.price-text {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.method-text {
    font-weight: 600;
    color: #555;
}

/* Loader */
.loader {
    border: 5px solid rgba(242, 101, 34, 0.2);
    border-top: 5px solid var(--primary-orange);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

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

    100% {
        transform: rotate(360deg);
    }
}

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

.success-icon-anim i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    animation: scaleUp 0.5s ease-out;
}

@keyframes scaleUp {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.text-success {
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.mono-font {
    font-family: monospace;
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.small-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

/* Responsive Payments */
/* --- Support Page Styles --- */

.support-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

/* Raise Ticket Card */
.raise-ticket-card h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

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

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

.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    pointer-events: none;
}

.glass-select,
.glass-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s;
    appearance: none;
}

.glass-select:focus,
.glass-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(242, 101, 34, 0.1);
}

.file-upload-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.file-upload-box:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.file-upload-box input {
    display: none;
}

.file-upload-box i {
    font-size: 1.2rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-icon.phone {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-icon.chat {
    background: linear-gradient(135deg, #f2994a, #f2c94c);
}

.contact-icon.email {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.contact-card h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 0.8rem;
    color: #888;
}

.tickets-card h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Status Badges */
.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.success {
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.status-badge.warning {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.status-badge.pending {
    background: rgba(41, 128, 185, 0.15);
    color: #2980b9;
}

.view-btn {
    background: none;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

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

/* Responsive Support */
@media (max-width: 900px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .payments-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid-secondary {
        grid-template-columns: 1fr;
    }

    .welcome-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .user-details {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-content {
        justify-content: space-between;
    }

    .dashboard-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 1rem;
    }

    .dashboard-links.active {
        display: flex;
    }

    .user-profile {
        display: none;
        /* Can be moved inside menu if needed */
    }

    .user-profile.active {
        display: flex;
        flex-direction: column;
        margin-top: 1rem;
        padding-left: 0;
        border-left: none;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--primary-blue);
        cursor: pointer;
    }
}