/* ============================================
   TalentBrainy - Main Stylesheet
   Design: Dark Navy + Electric Cyan — Professional IT Company
   ============================================ */

:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1a2336;
  --navy-card: #141d2e;
  --cyan: #00d4ff;
  --cyan-dim: #00afd4;
  --cyan-glow: rgba(0, 212, 255, 0.15);
  --green: #00e676;
  --red: #ff4444;
  --yellow: #ffd600;
  --text-primary: #eaf0fb;
  --text-secondary: #c1defa;
  --text-muted: #c4e2f0;
  --border: rgba(0, 212, 255, 0.12);
  --border-solid: #1e2d42;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 24px rgba(0, 212, 255, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-main: 'Poppins', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* ==================== BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--navy);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--text-primary); line-height: 1.3; }

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }

p { color: var(--text-secondary); }

section { padding: 80px 0; }

.container { max-width: 1200px; }

img { max-width: 100%; }

/* ==================== TOPBAR ==================== */
.topbar {
  background: var(--navy-card);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.topbar i { color: var(--cyan); }

/* ==================== NAVBAR ==================== */
.main-nav {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all 0.3s;
}
.main-nav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain; /* keeps image proper */
}
.brand-name { display: block; font-size: 1.15rem; font-weight: 800; color: #fff; line-height: 1.1; }
.brand-accent { color: var(--cyan); }
.brand-sub { display: block; font-size: 0.62rem; color: var(--text-muted,aliceblue); font-weight: 400; letter-spacing: 0.04em; }

.main-nav .nav-link {
  color: var(--text-secondary) !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: all 0.2s;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--cyan) !important;
  background: var(--cyan-glow);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar-toggler-icon {
  filter: invert(1); /* turns icon white */
}

/* ==================== BUTTONS ==================== */
.btn-primary-cta {
  background: linear-gradient(135deg, var(--cyan), #0088cc);
  color: #fff !important;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}
.btn-primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.45);
}

.btn-ghost {
  color: var(--text-secondary) !important;
  border: 1px solid var(--border-solid);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  background: transparent;
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--cyan) !important; border-color: var(--cyan); }

.btn-outline-accent {
  color: var(--cyan) !important;
  border: 1px solid var(--cyan);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  background: transparent;
  transition: all 0.2s;
}
.btn-outline-accent:hover { background: var(--cyan-glow); }

.btn-accent {
  background: var(--cyan);
  color: var(--navy) !important;
  border: none;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-accent:hover { background: #00b8d9; transform: translateY(-1px); }

.btn-cta-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--cyan), #0088cc);
  color: #fff !important;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
}
.btn-cta-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 212, 255, 0.45); }

.btn-outline-lg {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-solid);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  transition: all 0.25s;
}
.btn-outline-lg:hover { border-color: var(--cyan); color: var(--cyan) !important; }

/* ==================== SECTION LABELS ==================== */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cyan-glow);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--cyan);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-title .accent { color: var(--cyan); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0, 212, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 68, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--cyan), #6644ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-stats {
  display: flex; gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
  font-family: var(--font-mono);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted,aliceblue);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-card-main {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.project-card-mini {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.2s;
}
.project-card-mini:hover { border-color: var(--cyan); }
.project-card-mini:last-child { margin-bottom: 0; }

.status-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.floating-badge {
  position: absolute;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.floating-badge.free { top: -20px; right: -10px; border-color: var(--green); color: var(--green); animation-delay: 0s; }
.floating-badge.students { bottom: 20px; left: -20px; border-color: var(--cyan); color: var(--cyan); animation-delay: 1s; }

/* ==================== CARDS ==================== */
.card-dark {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}
.card-dark:hover {
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--shadow-glow);
}

/* ==================== PROJECT CARDS ==================== */
.project-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex; flex-direction: column;
}
.project-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px rgba(0, 212, 255, 0.12);
}

.project-card-header {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start;
}

.project-category {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.project-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.project-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  line-height: 1.4;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex: 1;
}

.tech-stack-wrap { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }

.tech-badge {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--cyan);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.73rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.project-meta {
  display: flex; gap: 16px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted,aliceblue);
}
.project-meta i { color: var(--cyan); }

.project-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}

/* Status Badges */
.badge-status {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-status.open { background: rgba(0, 230, 118, 0.12); color: var(--green); border: 1px solid rgba(0, 230, 118, 0.3); }
.badge-status.closed { background: rgba(255, 68, 68, 0.1); color: var(--red); border: 1px solid rgba(255, 68, 68, 0.3); }
.badge-status.completed { background: rgba(0, 212, 255, 0.1); color: var(--cyan); border: 1px solid rgba(0, 212, 255, 0.3); }
.badge-status.pending { background: rgba(255, 214, 0, 0.1); color: var(--yellow); border: 1px solid rgba(255, 214, 0, 0.3); }
.badge-status.approved { background: rgba(0, 230, 118, 0.12); color: var(--green); border: 1px solid rgba(0, 230, 118, 0.3); }
.badge-status.rejected { background: rgba(255, 68, 68, 0.1); color: var(--red); border: 1px solid rgba(255, 68, 68, 0.3); }

/* Seats bar */
.seats-bar {
  height: 4px;
  background: var(--navy-light);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
}
.seats-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), #0044ff);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* ==================== STEPS / PROCESS ==================== */
.step-item {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px; top: 52px;
  width: 1px; height: calc(100% - 12px);
  background: var(--border);
}
.step-num {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--cyan-glow);
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--cyan); font-size: 0.85rem;
  font-family: var(--font-mono);
  position: relative; z-index: 1;
}

/* ==================== PRICING ==================== */
.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), var(--shadow-glow);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px; right: -28px;
  background: var(--cyan); color: var(--navy);
  padding: 4px 36px;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em;
  transform: rotate(45deg);
}
.pricing-card:hover { transform: translateY(-6px); }

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
  line-height: 1;
}
.pricing-price .currency { font-size: 1.2rem; vertical-align: super; color: var(--cyan); }
.pricing-price .period { font-size: 0.9rem; color: var(--text-muted,aliceblue); font-family: var(--font-main); font-weight: 400; }

.pricing-features { list-style: none; text-align: left; margin: 24px 0; }
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li:last-child { border: none; }
.pricing-features li .check { color: var(--green); font-weight: 700; }
.pricing-features li .cross { color: var(--text-muted,aliceblue); }

/* ==================== BLOG CARDS ==================== */
.blog-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.blog-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative; overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--navy-card));
}
.blog-card-body { padding: 24px; }
.blog-category-tag {
  display: inline-block;
  background: var(--cyan-glow);
  color: var(--cyan);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* ==================== FORMS ==================== */
.form-dark {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-control, .form-select {
  background: var(--navy-light) !important;
  border: 1px solid var(--border-solid) !important;
  color: var(--text-primary) !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
  font-family: var(--font-main);
  transition: all 0.2s;
}
.form-control::placeholder { color: var(--text-muted,aliceblue) !important; }
.form-control:focus, .form-select:focus {
  border-color: var(--cyan) !important;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15) !important;
  outline: none !important;
}
.form-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-select option { background: var(--navy-mid); color: var(--text-primary); }

/* ==================== AUTH PAGES ==================== */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  padding: 100px 0 60px;
  position: relative;
}
.auth-page::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 30%, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.auth-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
}
.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

/* ==================== DASHBOARD ==================== */
.dash-sidebar {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 0;
  position: sticky;
  top: 80px;
}
.dash-user {
  text-align: center;
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.dash-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--cyan), #0044ff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff; font-weight: 700;
  margin: 0 auto 12px;
}
.dash-nav { list-style: none; }
.dash-nav li a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px;
  color: var(--text-secondary);
  font-size: 0.88rem; font-weight: 500;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.dash-nav li a:hover,
.dash-nav li a.active {
  color: var(--cyan);
  background: var(--cyan-glow);
  border-left-color: var(--cyan);
}
.dash-nav li a i { font-size: 1rem; }

.stat-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.2s;
}
.stat-card:hover { border-color: var(--cyan); }
.stat-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.stat-icon.cyan { background: rgba(0, 212, 255, 0.12); color: var(--cyan); }
.stat-icon.green { background: rgba(0, 230, 118, 0.12); color: var(--green); }
.stat-icon.yellow { background: rgba(255, 214, 0, 0.1); color: var(--yellow); }
.stat-icon.red { background: rgba(255, 68, 68, 0.1); color: var(--red); }
.stat-num { font-size: 1.6rem; font-weight: 800; font-family: var(--font-mono); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-muted,aliceblue); }

/* Table */
.table-dark-custom {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(0, 212, 255, 0.03);
  color: var(--text-primary);
  font-size: 0.88rem;
}
.table-dark-custom thead th {
  color: var(--text-muted,aliceblue);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
}
.table-dark-custom tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.table-dark-custom tbody tr:hover td { background: rgba(0, 212, 255, 0.03); }

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
}
.quote-icon { color: var(--cyan); font-size: 2rem; opacity: 0.4; line-height: 1; }
.testimonial-text { font-size: 0.9rem; color: var(--text-secondary); font-style: italic; margin: 12px 0 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0044ff);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
}
.stars { color: var(--yellow); font-size: 0.8rem; }

/* ==================== VERIFY PAGE ==================== */
.verify-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.verify-result-valid {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--navy-card), rgba(0, 230, 118, 0.04));
}
.verify-result-invalid {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--navy-card), rgba(255, 68, 68, 0.04));
}
.verify-icon { font-size: 3.5rem; margin-bottom: 16px; }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--navy-mid); border-top: 1px solid var(--border); margin-top: 80px; }
.footer-top { padding: 64px 0 48px; }
.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted,aliceblue);
}
.footer-bottom a { color: var(--text-muted,aliceblue); }
.footer-bottom a:hover { color: var(--cyan); }
.footer-tagline { color: var(--text-muted,aliceblue); font-size: 0.88rem; max-width: 320px; }
.footer-heading { color: var(--text-primary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { color: var(--text-muted,aliceblue); font-size: 0.88rem; transition: all 0.2s; }
.footer-links li a:hover { color: var(--cyan); padding-left: 4px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-solid);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted,aliceblue);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--cyan); color: var(--cyan); }
.contact-info p { font-size: 0.85rem; color: var(--text-muted,aliceblue); margin-bottom: 6px; }
.contact-info i { color: var(--cyan); width: 16px; }
.newsletter-form .form-control { border-right: none !important; border-radius: 8px 0 0 8px !important; }
.newsletter-form .btn-accent { border-radius: 0 8px 8px 0; padding: 10px 20px; }

/* ==================== ALERTS ==================== */
.alert { border-radius: var(--radius); font-size: 0.9rem; }
.alert-success { background: rgba(0, 230, 118, 0.1); border: 1px solid rgba(0, 230, 118, 0.3); color: var(--green); }
.alert-danger { background: rgba(255, 68, 68, 0.1); border: 1px solid rgba(255, 68, 68, 0.3); color: var(--red); }
.alert-info { background: rgba(0, 212, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.3); color: var(--cyan); }
.btn-close { filter: invert(1); }

/* ==================== MISC ==================== */
.divider-line {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(0, 68, 255, 0.04));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.free-tag {
  display: inline-block;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--green);
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-hero {
  padding: 120px 0 60px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Breadcrumb */
.breadcrumb { background: none; padding: 0; margin-bottom: 12px; }
.breadcrumb-item { font-size: 0.8rem; }
.breadcrumb-item a { color: var(--text-muted,aliceblue); }
.breadcrumb-item.active { color: var(--cyan); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted,aliceblue); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--border-solid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ==================== PAYMENT PLAN CARDS ==================== */
.pricing-plan-card {
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  user-select: none;
}
.pricing-plan-card:hover {
  border-color: rgba(0, 212, 255, 0.5) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15) !important;
}
.plan-featured {
  border-color: var(--cyan) !important;
  box-shadow: 0 0 0 1px var(--cyan), var(--shadow-glow) !important;
}
.plan-popular {
  border-color: rgba(0, 230, 118, 0.5) !important;
}

/* PayU trust badges */
.payu-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.payu-badge i { color: var(--green); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .topbar { display: none; }
  section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .auth-card { padding: 28px 20px; }
  .form-dark { padding: 24px 20px; }
  .hero { padding-top: 100px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.4rem; }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s 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; }

/* Counter animation */
.counter { display: inline-block; }

/* Admin specific */
.admin-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 8px;
  color: var(--text-secondary); font-size: 0.88rem; font-weight: 500;
  transition: all 0.2s; margin-bottom: 2px;
}
.admin-nav-link:hover,
.admin-nav-link.active {
  background: var(--cyan-glow);
  color: var(--cyan);
}
.admin-nav-link i { font-size: 1rem; width: 20px; }
