/* ===== TAPANTA - Global Styles ===== */
:root {
  --primary: #4F46E5;
  --primary-dark: #3730A3;
  --primary-light: #EEF2FF;
  --accent: #F59E0B;
  --text: #1E293B;
  --text-light: #64748B;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --border: #E2E8F0;
  --success: #10B981;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER / NAV ===== */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  width: 100%;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo img {
  height: 55px;
  width: auto;
}

.nav__logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav__links { display: flex; gap: 28px; align-items: center; margin-left: auto; }

.nav__links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--primary); }

.nav__cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.nav__cta:hover { background: var(--primary-dark); color: #fff !important; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}


/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  color: #fff;
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 32px;
}

.search-bar {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  border-radius: 50px 0 0 50px;
}

.search-bar button {
  background: var(--accent);
  border: none;
  padding: 16px 28px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: 0 50px 50px 0;
}

.search-bar button:hover { background: #D97706; }

/* Search suggestions dropdown */
.search-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  margin-top: 6px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 999;
}
.sug-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text);
  transition: background var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.sug-item:hover { background: var(--primary-light); color: var(--text); }
.sug-icon { font-size: 1.4rem; flex-shrink: 0; width: 32px; text-align: center; }
.sug-name { display: block; font-weight: 600; font-size: 0.92rem; text-align: left; }
.sug-parent { display: block; font-size: 0.78rem; color: var(--text-light); text-align: left; }
.sug-empty { color: var(--text-light); font-size: 0.9rem; cursor: default; }
.sug-empty:hover { background: transparent; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }

.section__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section__subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.category-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.category-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== EXPERT CARDS ===== */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.expert-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.expert-card__img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.expert-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.expert-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.expert-card__specialty {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

.expert-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.expert-card__rating { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.expert-card__price { font-weight: 700; color: var(--primary); font-size: 0.95rem; }

.expert-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }

.tag {
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

.tag--online { background: #D1FAE5; color: #065F46; }

.expert-card__actions { display: flex; gap: 8px; margin-top: auto; }


/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); color: #fff; }

.btn--outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; }

.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #D97706; color: #fff; }

.btn--sm { padding: 8px 14px; font-size: 0.82rem; }
.btn--full { width: 100%; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.step__number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step__title { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.step__desc { color: var(--text-light); font-size: 0.92rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial__text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial__author { font-weight: 700; }
.testimonial__role { color: var(--text-light); font-size: 0.85rem; }

/* ===== FOOTER ===== */
.footer {
  background: #1E293B;
  color: #CBD5E1;
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer__desc { font-size: 0.9rem; line-height: 1.7; }

.footer h4 { color: #fff; margin-bottom: 16px; font-size: 0.95rem; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #94A3B8; font-size: 0.9rem; }
.footer ul a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748B;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}

.page-header h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.page-header p { opacity: 0.85; font-size: 1.05rem; }

/* ===== FILTERS ===== */
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.filters select, .filters input {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  flex: 1;
  min-width: 150px;
}

.filters select:focus, .filters input:focus { border-color: var(--primary); }


/* ===== EXPERT PROFILE PAGE ===== */
.profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 40px 0;
}

.profile__sidebar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.profile__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--primary);
}

.profile__name { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.profile__title { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }

.profile__stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.profile__stat-value { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.profile__stat-label { font-size: 0.78rem; color: var(--text-light); }

.profile__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.profile__price span { font-size: 0.85rem; font-weight: 400; color: var(--text-light); }

.profile__availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #D1FAE5;
  color: #065F46;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.profile__availability::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
}

.profile__main h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 28px;
}

.profile__main h2:first-child { margin-top: 0; }

.profile__bio { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }

.profile__qualifications { margin-bottom: 20px; }
.profile__qualifications li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.92rem;
}

.review {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.review__header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.review__author { font-weight: 600; }
.review__rating { color: var(--accent); }
.review__text { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* ===== BOOKING PAGE ===== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 40px 0;
}

.booking__options { display: flex; flex-direction: column; gap: 16px; }

.booking__option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
}

.booking__option:hover, .booking__option.active {
  border-color: var(--primary);
  background: var(--primary-light);
}

.booking__option-icon { font-size: 1.8rem; }
.booking__option-title { font-weight: 700; margin-bottom: 2px; }
.booking__option-desc { color: var(--text-light); font-size: 0.85rem; }

.booking__slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.slot {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}

.slot:hover, .slot.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.booking__summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.booking__summary h3 { font-size: 1.1rem; margin-bottom: 20px; }

.summary__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.summary__row:last-of-type { border-bottom: none; }
.summary__total { font-weight: 700; font-size: 1.1rem; color: var(--primary); }


/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img {
  height: 200px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card__body { padding: 20px; }
.blog-card__category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card__excerpt { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }
.blog-card__meta { color: var(--text-light); font-size: 0.8rem; }

/* ===== ABOUT PAGE ===== */
.about-content { max-width: 800px; margin: 0 auto; }

.about-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.value-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card__title { font-weight: 700; margin-bottom: 8px; }
.value-card__desc { color: var(--text-light); font-size: 0.9rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info__title { font-weight: 600; margin-bottom: 4px; }
.contact-info__text { color: var(--text-light); font-size: 0.9rem; }

.faq { margin-top: 40px; }

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__question {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
  transition: background var(--transition);
}

.faq__question:hover { background: var(--bg-alt); }

.faq__answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding: 0 20px 16px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: var(--radius);
  margin: 40px 0;
}

.cta-banner h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 10px 16px; }
  .nav__logo img { height: 42px; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .hero h1 { font-size: 2rem; }
  .hero { padding: 50px 0 70px; }

  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .profile { grid-template-columns: 1fr; }
  .profile__sidebar { position: static; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking__summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .experts-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .booking__slots { grid-template-columns: repeat(2, 1fr); }
}

/* Auth - Nav Profile */
.nav-profile { position: relative; display: flex; align-items: center; gap: 6px; cursor: pointer; padding: 2px 4px; border-radius: 8px; transition: background 0.2s; }
.nav-profile:hover { background: rgba(255,255,255,0.1); }
.nav-profile__img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.nav-profile__icon { font-size: 1.1rem; }
.nav-profile__name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.nav-profile__dropdown { display: none; position: absolute; top: 100%; right: 0; background: #fff; border-radius: 10px; box-shadow: 0 6px 20px rgba(0,0,0,0.12); min-width: 120px; z-index: 100; margin-top: 6px; overflow: hidden; }
.nav-profile__dropdown.show { display: block; }
.nav-profile__logout { display: block; text-align: center; padding: 10px 16px; color: #dc2626; font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.nav-profile__logout:hover { background: #fee2e2; }

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover { background: var(--bg-alt); }

/* ===== DARK THEME ===== */
body.dark-theme {
  --primary: #818CF8;
  --primary-dark: #6366F1;
  --primary-light: #1E1B4B;
  --text: #E2E8F0;
  --text-light: #94A3B8;
  --bg: #0F172A;
  --bg-alt: #1E293B;
  --border: #334155;
  --shadow: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.4);
}

body.dark-theme .header { background: #0F172A; }
body.dark-theme .hero { background: linear-gradient(135deg, #312E81 0%, #4C1D95 100%); }
body.dark-theme .search-bar { background: #1E293B; }
body.dark-theme .search-bar input { background: #1E293B; color: #E2E8F0; }
body.dark-theme .footer { background: #020617; }
body.dark-theme .nav-profile__dropdown { background: #1E293B; }
body.dark-theme .nav-profile__name { color: #E2E8F0; }
