/* Custom Google Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #0b071e;
    --card-bg: rgba(22, 16, 49, 0.7);
    --card-border: rgba(168, 85, 247, 0.15);
    --card-hover-border: rgba(236, 72, 153, 0.4);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --primary-gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --secondary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(236, 72, 153, 0.15) 0px, transparent 50%);
    color: var(--text-main);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #473a7c;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6350ab;
}

/* Header & Nav */
header {
    background: rgba(11, 7, 30, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 201;
}

.logo i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn {
    background: var(--primary-gradient);
    color: var(--text-main) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    cursor: pointer;
    gap: 5px;
    position: relative;
    z-index: 201;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(168, 85, 247, 0.18);
    border-color: rgba(168, 85, 247, 0.45);
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 3, 20, 0.75);
    backdrop-filter: blur(8px);
    z-index: 198;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
}

/* ===== MOBILE SIDE MENU ===== */
.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(160deg, #0d0921 0%, #12073a 50%, #0a0620 100%);
    border-left: 1px solid rgba(168, 85, 247, 0.15);
    z-index: 200;
    padding: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.6);
}

.mobile-nav-menu.open {
    right: 0;
}

.mobile-nav-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-header .logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #94a3b8;
    font-size: 1rem;
    transition: all 0.2s;
}

.mobile-nav-close:hover {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

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

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.07), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.25s;
    border-radius: 12px;
}

.mobile-nav-links a:hover::before,
.mobile-nav-links a.active::before {
    opacity: 1;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #fff;
    border-color: rgba(168, 85, 247, 0.18);
    transform: translateX(4px);
}

.mobile-nav-links a .nav-icon {
    width: 36px;
    height: 36px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #a855f7;
    flex-shrink: 0;
    transition: all 0.25s;
}

.mobile-nav-links a:hover .nav-icon,
.mobile-nav-links a.active .nav-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(236, 72, 153, 0.2));
    color: #fff;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.25);
}

.mobile-nav-links a .nav-label {
    flex: 1;
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.5rem 1rem;
}

.mobile-nav-admin-btn {
    margin: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem;
    background: var(--primary-gradient);
    color: #fff !important;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
    transition: all 0.3s;
    border: none;
}

.mobile-nav-admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
    text-align: center;
    color: #475569;
    font-size: 0.78rem;
}

/* Staggered animation for mobile nav items */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.mobile-nav-menu.open .mobile-nav-links a {
    animation: slideInRight 0.3s ease-out both;
}
.mobile-nav-menu.open .mobile-nav-links a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav-menu.open .mobile-nav-links a:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav-menu.open .mobile-nav-links a:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav-menu.open .mobile-nav-links a:nth-child(4) { animation-delay: 0.2s; }
.mobile-nav-menu.open .mobile-nav-links a:nth-child(5) { animation-delay: 0.25s; }
.mobile-nav-menu.open .mobile-nav-links a:nth-child(6) { animation-delay: 0.3s; }

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--card-hover-border);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.15);
}

/* Pricing/Package Cards */
.pricing-section {
    margin-bottom: 5rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.pricing-card.premium {
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
}

.pricing-card.premium::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.pricing-features li i {
    color: var(--success);
}

/* Tutorials & Videos */
.tutorials-section {
    margin-bottom: 5rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.video-card {
    overflow: hidden;
    padding: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* FAQ & Testimonials Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.accordion-item {
    background: rgba(22, 16, 49, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.accordion-content {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
    padding: 1.2rem;
    max-height: 200px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Testimonial Section */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    position: relative;
}

.testimonial-card i.quote {
    font-size: 2.5rem;
    color: rgba(168, 85, 247, 0.1);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    padding: 2px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h5 {
    font-weight: 600;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Forms general */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.input-helper {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.input-helper a {
    color: #a855f7;
    text-decoration: none;
}

.input-helper a:hover {
    text-decoration: underline;
}

/* Page content configurations */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-muted);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
}

/* Payment Section */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method-btn img {
    height: 30px;
    object-fit: contain;
}

.payment-method-btn.active {
    border-color: #ec4899;
    background: rgba(236, 72, 153, 0.05);
}

/* Order Summary Box */
.order-summary {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.summary-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.coupon-section {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Payment Instructions UI */
.payment-details {
    text-align: center;
}

.qr-code-box {
    background: #fff;
    padding: 1rem;
    border-radius: 16px;
    display: inline-block;
    margin: 1.5rem 0;
}

.qr-code-box img {
    max-width: 220px;
    display: block;
}

.bank-info-grid {
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    align-items: center;
}

.info-item .value {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border: none;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Status Timeline tracker */
.status-tracker {
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.status-tracker::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.tracker-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.tracker-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1e193c;
    border: 3px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.tracker-label {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.tracker-step.active .tracker-node {
    border-color: #a855f7;
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.tracker-step.active .tracker-label {
    color: #fff;
}

.tracker-step.completed .tracker-node {
    border-color: var(--success);
    background: var(--success);
    color: #fff;
}

/* Certificate Download Dashboard */
.cert-dashboard {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

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

.cert-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
}

.cert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

.cert-btn.provision {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.cert-btn.provision:hover {
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

.signing-section {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

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

.install-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.install-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-2px);
}

/* UDID Show Box */
.udid-result-box {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.udid-string {
    font-family: monospace;
    font-size: 1.3rem;
    color: #e2e8f0;
    background: #000;
    padding: 1rem;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
    word-break: break-all;
}

/* Notification popups */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1e1b4b;
    border-left: 4px solid #a855f7;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--error); }

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Admin Dashboard CSS */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

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

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.5rem;
}

.stat-card h4 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-card .value {
    font-size: 1.8rem;
    font-weight: 700;
}

.admin-content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .admin-content-grid {
        grid-template-columns: 1fr;
    }
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table th {
    color: var(--text-muted);
    font-weight: 600;
}

.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-pending { background: rgba(245, 158, 11, 0.2); color: var(--warning); }
.badge-processing { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.badge-completed { background: rgba(16, 185, 129, 0.2); color: var(--success); }
.badge-cancelled { background: rgba(239, 68, 68, 0.2); color: var(--error); }

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    border-radius: 8px;
}

.tab-btn.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .nav-links {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-nav-overlay,
    .mobile-nav-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .glass-card {
        padding: 1.5rem 1.2rem;
        border-radius: 18px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    /* Tables on mobile */
    .admin-table th, .admin-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (min-width: 769px) {
    .hamburger-btn,
    .mobile-nav-overlay,
    .mobile-nav-menu {
        display: none !important;
    }
}
