/* ============================================================
   VIXUS.IO — Main Stylesheet
   ============================================================ */

/* === CSS VARIABLES ========================================= */
:root {
  --bg:          #0a0c12;
  --bg-card:     #111827;
  --bg-glass:    rgba(255, 255, 255, 0.03);
  --primary:     #6C63FF;
  --primary-rgb: 108, 99, 255;
  --accent:      #00D4FF;
  --accent-rgb:  0, 212, 255;
  --text:        #e8eaf0;
  --text-muted:  #6b7280;
  --border:      rgba(108, 99, 255, 0.15);
  --border-hover:rgba(108, 99, 255, 0.4);
  --glow:        0 0 30px rgba(108, 99, 255, 0.3);
  --glow-accent: 0 0 30px rgba(0, 212, 255, 0.3);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === LIGHT THEME =========================================== */
[data-theme="light"] {
  --bg:          #f5f6fa;
  --bg-card:     #ffffff;
  --bg-glass:    rgba(0, 0, 0, 0.03);
  --text:        #1a1d2e;
  --text-muted:  #5a6278;
  --border:      rgba(108, 99, 255, 0.18);
  --border-hover:rgba(108, 99, 255, 0.45);
  --glow:        0 0 30px rgba(108, 99, 255, 0.2);
  --glow-accent: 0 0 30px rgba(0, 212, 255, 0.2);
}
[data-theme="light"] .navbar-vx.scrolled {
  background: rgba(245, 246, 250, 0.92);
}

/* === THEME TOGGLE ========================================== */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
}
.theme-toggle .bi-sun-fill   { display: none; }
.theme-toggle .bi-moon-stars-fill { display: block; }
[data-theme="light"] .theme-toggle .bi-sun-fill   { display: block; }
[data-theme="light"] .theme-toggle .bi-moon-stars-fill { display: none; }

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

html { scroll-behavior: smooth; }

html { overflow-x: hidden; } /* Must be on html, not body — body overflow-x:hidden breaks position:fixed on mobile Safari */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

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

img { max-width: 100%; height: auto; }

/* === TYPOGRAPHY ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === LAYOUT ================================================ */
.container { max-width: 1280px; }

section { padding: 6rem 0; }
section.section-sm { padding: 4rem 0; }

/* === BUTTONS =============================================== */
.btn-primary-vx {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary-vx::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8b5cf6, var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.btn-primary-vx:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--glow); }
.btn-primary-vx:hover::before { opacity: 1; }
.btn-primary-vx span { position: relative; z-index: 1; }

.btn-ghost-vx {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost-vx:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  transform: translateY(-2px);
}

.btn-accent-vx {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent), #0099ff);
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-accent-vx:hover { color: #000; transform: translateY(-2px); box-shadow: var(--glow-accent); }

/* Large button variant */
.btn-lg-vx { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* === BADGES & TAGS ========================================= */
.badge-vx {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag-vx {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
}
.tag-vx:hover { background: rgba(var(--primary-rgb), 0.15); color: var(--primary); border-color: var(--border-hover); }

/* === GLASS CARDS =========================================== */
.card-glass {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}
.card-glass:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.card-solid {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.card-solid:hover { border-color: var(--border-hover); box-shadow: var(--glow); transform: translateY(-4px); }

/* === SECTION LABELS ======================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-heading { margin-bottom: 1rem; }
.section-subtext { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; }
.section-subtext.centered { margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }

/* === NAVBAR ================================================ */
.navbar-vx {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.navbar-vx.scrolled {
  background: rgba(10, 12, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.navbar-brand-vx {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.brand-dot {
  width: 8px; height: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--primary);
}

.nav-link-vx {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link-vx:hover, .nav-link-vx.active {
  color: var(--text) !important;
  background: rgba(var(--primary-rgb), 0.08);
}
.nav-link-vx.active { color: var(--primary) !important; }

/* === HERO ================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108, 99, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    var(--bg);
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero-badge strong { color: var(--primary); }

.hero-title { margin-bottom: 1.5rem; }

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
}
.scroll-arrow { font-size: 1.2rem; }

/* === MARQUEE / LOGO STRIP ================================== */
.marquee-section { padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-label { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; margin-bottom: 1.5rem; }
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-wrapper::before, .marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 1;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.5;
  transition: var(--transition);
}
.marquee-logo:hover { opacity: 1; color: var(--text); }

/* === SERVICES GRID ========================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  padding: 2rem;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--accent-rgb), 0.1));
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.25), rgba(var(--accent-rgb), 0.2)); box-shadow: var(--glow); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.6; }
.service-link { color: var(--primary); font-size: 0.88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; }
.service-link:hover { color: var(--accent); gap: 0.6rem; }

/* === PROCESS STEPS ========================================= */
.process-wrapper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.process-connector {
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.3;
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: var(--glow);
}
.process-step h4 { margin-bottom: 0.4rem; }
.process-step p { color: var(--text-muted); font-size: 0.88rem; }

/* === PORTFOLIO GRID ======================================== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover { border-color: var(--border-hover); box-shadow: var(--glow); transform: translateY(-4px); }
.portfolio-img-wrap { position: relative; overflow: hidden; height: 200px; }
.portfolio-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.06); }
.portfolio-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--accent-rgb), 0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 18, 0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-body { padding: 1.5rem; }
.portfolio-cat { font-size: 0.78rem; font-weight: 600; color: var(--primary); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; }
.portfolio-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.portfolio-body p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1rem; }
.portfolio-result { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--accent); }

/* === STATS / COUNTERS ====================================== */
.stats-section { background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--accent-rgb), 0.04)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { color: var(--text-muted); font-size: 0.92rem; }

/* === TESTIMONIALS ========================================== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial-stars { color: #fbbf24; margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-quote { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.avatar-initials {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.1rem; }
.author-title { color: var(--text-muted); font-size: 0.8rem; }

/* === BLOG CARDS ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--border-hover); box-shadow: var(--glow); transform: translateY(-4px); }
.blog-card-featured { flex-direction: row; overflow: hidden; max-height: none; }
.blog-featured-img { min-width: 260px; width: 260px; height: auto; flex-shrink: 0; }
.blog-featured-img .blog-img-placeholder { height: 100%; min-height: 260px; }
.blog-card-featured .blog-body { padding: 2rem; }
.blog-img-wrap { height: 200px; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--accent-rgb), 0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--primary);
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.blog-cat { font-size: 0.75rem; font-weight: 600; color: var(--primary); letter-spacing: 0.06em; text-transform: uppercase; }
.blog-date, .blog-read { color: var(--text-muted); font-size: 0.78rem; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-body p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1rem; flex: 1; }
.blog-read-more { color: var(--primary); font-size: 0.88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: auto; }
.blog-read-more:hover { color: var(--accent); gap: 0.6rem; }

/* === CTA BANNER ============================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--accent-rgb), 0.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* === PAGE HEROES =========================================== */
.page-hero {
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(108, 99, 255, 0.1) 0%, transparent 70%),
    var(--bg);
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb-vx {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb-vx a { color: var(--text-muted); }
.breadcrumb-vx a:hover { color: var(--primary); }
.breadcrumb-vx span { color: var(--text); }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.4; }

/* === ABOUT PAGE ============================================ */
.timeline-item { position: relative; padding-left: 2.5rem; padding-bottom: 2.5rem; }
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px; top: 24px; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--primary), transparent);
}
.timeline-dot {
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.5);
}
.timeline-year { font-size: 0.8rem; font-weight: 600; color: var(--primary); margin-bottom: 0.3rem; letter-spacing: 0.06em; }
.timeline-item h4 { margin-bottom: 0.4rem; }
.timeline-item p { color: var(--text-muted); font-size: 0.9rem; }

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--border-hover); box-shadow: var(--glow); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 1rem;
}
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role { color: var(--primary); font-size: 0.85rem; margin-bottom: 0.75rem; }

.value-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--border-hover); box-shadow: var(--glow); }
.value-icon { font-size: 1.8rem; margin-bottom: 0.75rem; color: var(--primary); }
.value-card h4 { margin-bottom: 0.4rem; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; }

/* === CONTACT PAGE ========================================== */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-label-vx { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.4rem; display: block; }
.form-control-vx {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-control-vx:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); background: rgba(255,255,255,0.06); }
.form-control-vx::placeholder { color: var(--text-muted); }
.form-control-vx option { background: var(--bg-card); }
textarea.form-control-vx { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--border-hover); }
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--accent-rgb), 0.1));
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-card h5 { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.contact-info-card p { font-size: 0.95rem; margin: 0; }

/* === FAQ ACCORDION ========================================= */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.2rem; color: var(--primary); flex-shrink: 0; transition: var(--transition); }
.faq-answer { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; padding-bottom: 1.25rem; display: none; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { display: block; }

/* === BLOG DETAIL =========================================== */
.article-content { color: var(--text); line-height: 1.9; }
.article-content h2, .article-content h3 { margin: 2rem 0 0.75rem; }
.article-content p { margin-bottom: 1.25rem; color: var(--text); opacity: 0.85; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content li { margin-bottom: 0.4rem; color: var(--text); opacity: 0.85; }
.article-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 1rem 1.5rem;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-muted);
}

.author-bio-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }

/* === PORTFOLIO DETAIL ====================================== */
.result-box {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--accent-rgb), 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.result-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.result-label { color: var(--text-muted); font-size: 0.85rem; }

/* === FILTER TABS =========================================== */
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.filter-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(var(--primary-rgb), 0.12);
  border-color: var(--primary);
  color: var(--primary);
}

/* === TECH STACK LOGOS ====================================== */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}
.tech-badge:hover { border-color: var(--primary); color: var(--text); background: rgba(var(--primary-rgb), 0.06); }

.tech-category {
  margin-bottom: 2rem;
}
.tech-category-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.tech-category-label i {
  font-size: 0.85rem;
}

/* === 404 PAGE ============================================== */
.error-code {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 15vw, 10rem);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* === FLASH MESSAGES ======================================== */
.flash-msg { border-radius: 8px; margin-bottom: 1.5rem; }
.alert-success { background: rgba(0, 200, 100, 0.1); border-color: rgba(0, 200, 100, 0.3); color: #4ade80; }
.alert-error   { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: #f87171; }

/* === FEATURE LIST ========================================== */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--accent-rgb), 0.1));
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--primary);
  margin-top: 2px;
}

/* === WHY CHOOSE VIXUS ====================================== */
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon { font-size: 1.3rem; color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.why-item h5 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.why-item p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* === DIVIDERS ============================================== */
.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0.3;
  margin: 0;
}

/* === GLOW ORBS (decorative) ================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}
.orb-primary { background: var(--primary); }
.orb-accent  { background: var(--accent); }
