/* ============================================
   AuraCV - Premium vCard Resume Template
   Author: theme_crazy
   Version: 1.0.0
   ============================================ */

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  /* Dark mode (default) */
  --bg: hsl(220, 20%, 2%);
  --fg: hsl(0, 0%, 100%);
  --card-bg: hsl(220, 20%, 4%);
  --primary: hsl(187, 94%, 43%);
  --primary-fg: hsl(220, 20%, 2%);
  --secondary: hsl(263, 70%, 58%);
  --muted: hsl(220, 15%, 12%);
  --muted-fg: hsl(0, 0%, 70%);
  --surface: rgba(255,255,255,0.02);
  --surface-hover: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.06);
  --border-hi: rgba(255,255,255,0.15);
  --text-dim: rgba(255,255,255,0.4);
  --text-soft: rgba(255,255,255,0.6);
  --text-bright: rgba(255,255,255,0.9);
  --glass-shadow: 0 16px 48px rgba(0,0,0,0.6);
  --glass-inset: inset 0 1px 1px rgba(255,255,255,0.08);
  --orb-opacity: 0.15;
  --radius: 1rem;
}

.light {
  --bg: hsl(220, 20%, 96%);
  --fg: hsl(220, 20%, 10%);
  --card-bg: hsl(0, 0%, 100%);
  --primary: hsl(187, 94%, 35%);
  --primary-fg: hsl(0, 0%, 100%);
  --secondary: hsl(263, 60%, 50%);
  --muted: hsl(220, 15%, 92%);
  --muted-fg: hsl(220, 10%, 40%);
  --surface: rgba(0,0,0,0.03);
  --surface-hover: rgba(0,0,0,0.06);
  --border: rgba(0,0,0,0.08);
  --border-hi: rgba(0,0,0,0.18);
  --text-dim: rgba(0,0,0,0.4);
  --text-soft: rgba(0,0,0,0.55);
  --text-bright: rgba(0,0,0,0.85);
  --glass-shadow: 0 16px 48px rgba(0,0,0,0.08);
  --glass-inset: inset 0 1px 1px rgba(255,255,255,0.6);
  --orb-opacity: 0.12;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  min-height: 100dvh;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', sans-serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; background: none; border: none; color: inherit; }
input, textarea { font: inherit; }
::selection { background: var(--primary); color: var(--primary-fg); }

/* ============================================
   GLASS UTILITIES
   ============================================ */
.glass {
  background: var(--surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
}
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.glass-card:hover,
.glass-card-hover:hover {
  background: var(--surface-hover);
  border-color: var(--border-hi);
}

/* ============================================
   LAYOUT
   ============================================ */
.app-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.app-layout {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 1340px;
}

/* ============================================
   BACKGROUND ORBS
   ============================================ */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb--primary {
  width: 800px; height: 800px;
  top: -10%; left: 15%;
  background: hsl(187 94% 43% / var(--orb-opacity));
  filter: blur(140px);
  animation: orbit 18s ease-in-out infinite;
}
.orb--secondary {
  width: 900px; height: 900px;
  bottom: -10%; right: 10%;
  background: hsl(263 70% 58% / var(--orb-opacity));
  filter: blur(160px);
  animation: orbit 24s ease-in-out infinite reverse;
}
.orb-vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

@keyframes orbit {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(30px,-30px) scale(1.05); }
  100% { transform: translate(0,0) scale(1); }
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
  width: 320px;
  flex-shrink: 0;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: calc(100dvh - 4rem);
  position: sticky;
  top: 2rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }

.sidebar__avatar-wrap {
  border-radius: 1.5rem;
  padding: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.sidebar__avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.75rem;
  filter: grayscale(1);
  opacity: 0.8;
  mix-blend-mode: luminosity;
  transition: all 0.7s ease;
}
.sidebar__avatar:hover {
  filter: grayscale(0);
  opacity: 1;
}

.sidebar__name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0 0.5rem;
}
.sidebar__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.8;
  padding: 0 0.5rem;
}

.sidebar__socials {
  display: flex;
  gap: 0.75rem;
  padding: 0 0.5rem;
}
.sidebar__social-btn {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
  transition: color 0.3s;
}
.sidebar__social-btn:hover { color: var(--primary); }
.sidebar__social-btn svg { width: 16px; height: 16px; }

.sidebar__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 0.5rem;
  margin-top: auto;
}
.sidebar__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}
.sidebar__info-row:last-child { border-bottom: none; }
.sidebar__info-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  font-weight: 600;
}
.sidebar__info-value {
  color: var(--text-bright);
  font-size: 0.875rem;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: hsl(160, 84%, 39%);
  box-shadow: 0 0 8px rgba(16,185,129,0.8);
  display: inline-block;
  margin-right: 0.5rem;
}

.sidebar__cv-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}
.sidebar__cv-btn span { color: var(--primary); font-size: 1.125rem; }

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  flex: 1;
  border-radius: 1rem;
  overflow-y: auto;
  height: calc(100dvh - 4rem);
  scrollbar-width: none;
}
.main-content::-webkit-scrollbar { display: none; }

.section { padding: 3rem 4rem; }

/* ============================================
   HERO / HOME
   ============================================ */
.hero {
  min-height: calc(100dvh - 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__label {
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero__heading {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 1.125rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 45ch;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section__heading {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section__icon { color: var(--secondary); opacity: 0.7; font-size: 1.25rem; }

/* ============================================
   ABOUT
   ============================================ */
.about__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 55ch;
  margin-bottom: 3rem;
}
.about__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
  margin-bottom: 3rem;
}
.about__info-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.about__info-label { color: var(--text-dim); font-weight: 500; }
.about__info-value { color: var(--text-bright); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.service-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card__icon {
  width: 40px; height: 40px;
  border-radius: 0.5rem;
  background: hsl(187 94% 43% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.service-card__icon svg { width: 20px; height: 20px; fill: var(--primary); }
.service-card__title { font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.service-card__desc { font-size: 0.875rem; color: var(--text-soft); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card { padding: 2rem 2.5rem; border-radius: 0.75rem; position: relative; overflow: hidden; }
.testimonial-card__glow {
  position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: hsl(187 94% 43% / 0.05);
  filter: blur(80px);
  pointer-events: none;
}
.testimonial-slide { display: none; flex-direction: column; gap: 1.5rem; }
.testimonial-slide.active { display: flex; }

.stars { display: flex; gap: 0.25rem; }
.star { color: var(--primary); }
.star svg { width: 16px; height: 16px; fill: currentColor; }

.testimonial__quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-bright);
  font-weight: 300;
  font-style: italic;
  max-width: 55ch;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.8;
  border: 1px solid var(--border);
}
.testimonial__name { font-size: 0.875rem; font-weight: 600; }
.testimonial__role { font-size: 0.75rem; color: var(--text-dim); }

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.testimonial-nav__btn {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
  border-radius: 0.5rem;
  transition: color 0.3s;
}
.testimonial-nav__btn:hover { color: var(--fg); }
.testimonial-nav__btn svg { width: 16px; height: 16px; }

.testimonial-dots { display: flex; gap: 0.375rem; }
.testimonial-dot {
  height: 6px;
  border-radius: 3px;
  transition: all 0.3s;
  background: var(--muted-fg);
  opacity: 0.3;
  width: 6px;
}
.testimonial-dot.active {
  width: 24px;
  background: var(--primary);
  opacity: 1;
}

/* ============================================
   RESUME / TIMELINE
   ============================================ */
.resume__sub-heading {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 2rem;
}
.timeline { display: flex; flex-direction: column; margin-bottom: 3rem; }
.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2.5rem;
  border-left: 1px solid var(--border);
}
.timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -5px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg);
}
.timeline-dot--active {
  border: 1px solid var(--primary);
  box-shadow: 0 0 12px hsl(187 94% 43% / 0.6);
}
.timeline-dot--inactive { border: 1px solid var(--text-dim); }
.timeline-item__period {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.timeline-item__period--active { color: hsl(187 94% 43% / 0.8); }
.timeline-item__period--inactive { color: var(--text-dim); }
.timeline-item__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.timeline-item__company { color: var(--muted-fg); }
.timeline-item__desc {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 55ch;
  margin-top: 0.5rem;
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.skill__header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.skill__name { color: var(--text-bright); font-weight: 500; }
.skill__pct { color: var(--text-dim); font-variant-numeric: tabular-nums; }
.skill__bar {
  height: 6px;
  border-radius: 3px;
  background: var(--muted);
  overflow: hidden;
}
.skill__fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0;
  transition: width 1s ease;
}
.comment-form-cookies-consent {
  display: flex;
  justify-content: flex-start;
  gap:  10px;
}
.comment-form-cookies-consent input{
  width: 18px !important;
}
#comments h3 {
    margin: 0 0 12px;
}
div#comments li {
    list-style: none;
}
.comment-body{
  flex-direction: column;
}
.comment-author.vcard img {
    float: left;
    margin: 0 10px;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.portfolio-filter {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: all 0.3s;
  border: 1px solid transparent;
}
.portfolio-filter.active,
.portfolio-filter:hover {
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border-hi);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.portfolio-card { border-radius: 0.75rem; overflow: hidden; }
.portfolio-card__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.portfolio-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.7s ease;
}
.portfolio-card:hover .portfolio-card__img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  justify-content: center;
  align-items: center;
}
.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }
.portfolio-card__link {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: var(--surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--fg);
  width: 40px;
  text-align: center;
}
.portfolio-card__link svg { width: 16px; height: 16px; }
.portfolio-card__body { padding: 1.25rem; }
.portfolio-card__cat {
  font-size: 0.6875rem;
  color: hsl(187 94% 43% / 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.portfolio-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  transition: color 0.3s;
}
.portfolio-card:hover .portfolio-card__title { color: var(--primary); }

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

.blog-card__img-wrap {
  overflow: hidden;
  border-radius: 12px;
}

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 1rem;
}

.blog-card__meta {
  font-size: 0.8rem;
  opacity: 0.7;
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  opacity: 0.8;
}

.blog-card__readmore {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 500;
}

/* ===== Blog Pagination ===== */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 10px;
}

/* container */
.blog-pagination .page-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* buttons */
.blog-pagination .page-numbers,
.blog-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 500;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;

  transition: all 0.3s ease;
  cursor: pointer;
}

/* hover */
.blog-pagination .page-numbers:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* active page */
.blog-pagination span.page-numbers {
  background: linear-gradient(135deg, #6c63ff, #8b5cf6);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

/* prev / next */
.blog-pagination .prev,
.blog-pagination .next {
  font-size: 16px;
}

/* disabled */
.blog-pagination .dots {
  pointer-events: none;
  opacity: 0.5;
}

/* ===== Blog Single Page ===== */
.blog-single {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem;
}

/* Title */
.blog-single__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Meta (date + author) */
.blog-single__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.blog-single__meta i {
  margin-right: 6px;
}

/* Featured Image */
.blog-single__image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.blog-single__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content Typography */
.blog-single__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
}

/* Headings */
.blog-single__content h2,
.blog-single__content h3,
.blog-single__content h4 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* Paragraph */
.blog-single__content p {
  margin-bottom: 1rem;
}

/* Lists */
.blog-single__content ul,
.blog-single__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Blockquote */
.blog-single__content blockquote {
  border-left: 3px solid #6c63ff;
  padding-left: 1rem;
  font-style: italic;
  opacity: 0.85;
  margin: 1.5rem 0;
}

/* Links */
.blog-single__content a {
  color: #8b5cf6;
  text-decoration: none;
}

.blog-single__content a:hover {
  text-decoration: underline;
}

/* Code block */
.blog-single__content pre {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 10px;
  overflow-x: auto;
}

/* Author Box */
.blog-author {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.blog-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.blog-author__name {
  font-weight: 600;
}

/* Tags */
.blog-tags {
  margin-top: 2rem;
}

.blog-tags a {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.8rem;
}

/* Navigation (Prev / Next) */
.blog-nav {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.blog-nav a {
  flex: 1;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.blog-nav a:hover {
  background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-single {
    padding: 1rem;
  }

  .blog-single__title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 782px) {
    .mobile-header {
        top: 46px !important;
    }
    .sidebar-mobile{
      top: 46px !important;
    }
}

/* ===== Comments Section ===== */
.blog-comments {
  margin-top: 3rem;
  padding: 0rem;
  border-radius: 0px;
}
.blog-card__body > a {
    font-size: 14px;
}
p.comment-form-comment label {
    margin: 0 0 7px;
    display: block;
}

/* Title */
.blog-comments .comments-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* RESET WP DEFAULT SPACING */
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-list li {
  margin: 0;
  padding: 0;
}

/* =========================
   SINGLE COMMENT CARD
========================= */
.comment-body {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 14px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Avatar */
.comment-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* CONTENT WRAP */
.comment-content {
  flex: 1;
  margin: 0;
}

/* AUTHOR + META INLINE */
.comment-author {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.comment-meta {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-bottom: 6px;
}

/* TEXT */
.comment-text,
.comment-content p {
  margin: 0;
  line-height: 1.6;
}

/* =========================
   REPLY LINK
========================= */
.reply {
  margin-top: 8px;
}

.reply a {
  font-size: 0.8rem;
  color: #8b5cf6;
  text-decoration: none;
}

/* =========================
   NESTED COMMENTS FIX
========================= */
.children {
  margin-left: 2rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(255,255,255,0.08);
}

/* REMOVE EXTRA GAP INSIDE CHILD */
.children .comment-body {
  margin-bottom: 10px;
}

/* =========================
   COMMENT FORM FIX
========================= */
.comment-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #fff;
  outline: none;
  margin: 0; /* IMPORTANT: removes gap issue */
}

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

/* Submit button */
.comment-form .submit {
  background: linear-gradient(135deg,#6c63ff,#8b5cf6);
  border: none;
  padding: 10px 18px;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  width: fit-content;
}

/* REMOVE WP DEFAULT MARGINS THAT CAUSE GAP */
.comment-form p {
  margin: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__row { display: flex;}
.contact-form__row p{
  display: flex;
    gap: 15px;
    justify-content: space-between;
    width: 100%;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted-fg); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--border-hi); }
.contact-form textarea { resize: none; }

.contact-form input.contact-form__submit,
.contact-form .contact-form__submit {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-fg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.03em;
  transition: box-shadow 0.3s;
  align-self: flex-start;
}
.contact-form__submit:hover {
  box-shadow: 0 0 30px hsl(187 94% 43% / 0.3);
}
.contact-form__submit svg { width: 16px; height: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-card__icon {
  width: 36px; height: 36px;
  border-radius: 0.5rem;
  background: hsl(187 94% 43% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-card__icon svg { width: 16px; height: 16px; fill: var(--primary); }
.contact-info-card__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}
.contact-info-card__value { font-size: 0.875rem; color: var(--text-bright); }

/* ============================================
   NAVIGATION (RIGHT SIDE)
   ============================================ */
.side-nav {
  width: 72px;
  flex-shrink: 0;
  border-radius: 1rem;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: calc(100dvh - 4rem);
  position: sticky;
  top: 2rem;
  justify-content: center;
}
.side-nav__btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
  transition: all 0.3s;
  border: 1px solid transparent;
}
.side-nav__btn:hover { color: var(--fg); background: var(--surface-hover); }
.side-nav__btn.active {
  color: var(--primary);
  background: var(--surface);
  border-color: var(--border-hi);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
}
.side-nav__btn svg { width: 18px; height: 18px; }
.side-nav__tooltip {
  position: absolute;
  right: 120%;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.side-nav__btn:hover .side-nav__tooltip { opacity: 1; }

/* ============================================
   BOTTOM NAV (MOBILE)
   ============================================ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 30;
  border-top: 1px solid var(--border);
}
.bottom-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
}
.bottom-nav__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.375rem 0.5rem;
  border-radius: 0.5rem;
  color: var(--muted-fg);
  transition: color 0.2s;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.bottom-nav__btn.active { color: var(--primary); }
.bottom-nav__btn svg { width: 18px; height: 18px; }

/* ============================================
   MOBILE HEADER
   ============================================ */
.mobile-header {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
}
.mobile-header__menu-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  color: var(--muted-fg);
  transition: color 0.3s;
}
.mobile-header__menu-btn:hover { color: var(--fg); }
.mobile-header__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ============================================
   MOBILE SIDEBAR OVERLAY
   ============================================ */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.sidebar-overlay.open { opacity: 1; pointer-events: auto; }

.sidebar-mobile {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 300px;
  z-index: 50;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
  scrollbar-width: none;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-mobile::-webkit-scrollbar { display: none; }
.sidebar-mobile.open { transform: translateX(0); }

.sidebar-mobile__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: var(--muted-fg);
  z-index: 9;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

/* Available */
.status-dot--online {
    background-color: #22c55e; /* green */
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

/* Busy */
.status-dot--busy {
    background-color: #f59e0b; /* orange */
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

/* Offline */
.status-dot--offline {
    background-color: #ef4444; /* red */
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

/* ============================================
   THEME SWITCHER
   ============================================ */
.theme-switcher {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.theme-switcher__toggle {
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
  transition: color 0.3s;
}
.theme-switcher__toggle:hover { color: var(--fg); }
.theme-switcher__toggle svg { width: 20px; height: 20px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .sidebar { display: none; }
  .side-nav { display: none; }
  .bottom-nav { display: block; }
  .mobile-header { display: flex; }
  .app-wrapper { padding: 0.75rem; }
  .app-layout { margin-top: 3.5rem; }
  .main-content { height: calc(100dvh - 8rem); padding-bottom: 4rem; border-radius: 1rem; }
  .section { padding: 2rem 1.5rem; }
  .hero { min-height: calc(100dvh - 8rem); }
  .hero__heading { font-size: 2rem; }
  .about__info-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .theme-switcher { bottom: 5rem; right: 1rem; }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .hero__heading { font-size: 2.5rem; }
  .section { padding: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}
