/* Visual Identity Studio - Recreated Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600&display=swap');

:root {
  --bg-dark: #000000;
  --bg-card-dark: #0d0d0d;
  --bg-card-hover: #161616;
  --bg-light: #e8e8e8;
  --bg-white: #ffffff;
  --text-dark: #000000;
  --text-light: #ffffff;
  --text-muted: #808080;
  --accent-lime: #d5f74c;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: rgba(0, 0, 0, 0.1);
  --font-heading: 'Inter Tight', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

#preloader-logo {
  width: 180px;
  height: 180px;
  animation: spin 1.2s linear infinite;
  will-change: transform;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Awwwards Badge ── */
#awwwards {
  position: fixed;
  z-index: 999;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  transition: transform 0.3s ease;
}
#awwwards:hover {
  transform: translateY(-50%) translateX(5px);
}
#awwwards svg {
  display: block;
  width: 50px;
  height: auto;
}

/* ── Header & Navigation ── */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.header-brand-title {
  font-family: 'Inter Tight', var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

nav.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
  position: relative;
  transition: color 0.3s ease;
}

nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-lime);
  transition: width 0.3s ease;
}

nav.main-nav a:hover::after {
  width: 100%;
}

.btn-proposal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background-color: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-proposal:hover {
  background-color: var(--accent-lime);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(213, 247, 76, 0.3);
}

.elementor-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.elementor-menu-toggle svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.elementor-nav-menu--dropdown {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: #0d0d0d;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.elementor-nav-menu--dropdown.active {
  display: block;
}
.elementor-nav-menu--dropdown ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Hero Section (WebGL Canvas Scene) ── */
#scene {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

#c {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hint {
  position: absolute;
  top: 80%;
  left: 18.6%;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: var(--accent-lime);
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
  z-index: 2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hint:hover {
  opacity: 0.8;
  transform: translateY(3px);
}

/* ── Global Section Base ── */
.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 100px 40px;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 100px 40px;
}

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

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.star-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}

/* ── Section: Our Clients (Logo Marquee) ── */
.logo-marquee-track {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  padding: 15px 0;
}

.logo-marquee-wrapper {
  display: flex;
  width: max-content;
  animation: logo-scroll 35s linear infinite;
}

.logo-marquee-wrapper:hover {
  animation-play-state: paused;
}

.logo-marquee-item {
  flex-shrink: 0;
  width: 400px;
  margin-right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 24px 32px;
  min-height: 180px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.logo-marquee-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent-lime);
}

.logo-marquee-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-marquee-item img {
  max-width: 95%;
  max-height: 130px;
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-marquee-item img.logo-invert {
  filter: invert(1) brightness(2);
}

.logo-marquee-item:hover img {
  transform: scale(1.08);
}

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section: Our Portfolio (Projects Grid) ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.project-card {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  cursor: pointer;
  animation: continuousFloat 4.2s ease-in-out infinite alternate;
}

/* Staggered Floating Delays */
.projects-grid .project-card:nth-child(1) { animation-delay: 0s; }
.projects-grid .project-card:nth-child(2) { animation-delay: 0.7s; }
.projects-grid .project-card:nth-child(3) { animation-delay: 1.4s; }
.projects-grid .project-card:nth-child(4) { animation-delay: 2.1s; }
.projects-grid .project-card:nth-child(5) { animation-delay: 2.8s; }
.projects-grid .project-card:nth-child(6) { animation-delay: 3.5s; }

/* Continuous Sheen Light Sweep */
.project-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  animation: continuousSheen 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

.projects-grid .project-card:nth-child(1)::after { animation-delay: 0.2s; }
.projects-grid .project-card:nth-child(2)::after { animation-delay: 1.2s; }
.projects-grid .project-card:nth-child(3)::after { animation-delay: 2.2s; }
.projects-grid .project-card:nth-child(4)::after { animation-delay: 3.2s; }
.projects-grid .project-card:nth-child(5)::after { animation-delay: 4.2s; }
.projects-grid .project-card:nth-child(6)::after { animation-delay: 5.2s; }

@keyframes continuousFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

@keyframes continuousSheen {
  0% { left: -150%; }
  45% { left: 150%; }
  100% { left: 150%; }
}

.project-card:hover {
  animation-play-state: paused;
  transform: translateY(-16px) scale(1.03) !important;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12), 0 0 20px rgba(213, 247, 76, 0.4) !important;
  border-color: rgba(213, 247, 76, 0.8) !important;
}

.project-image-wrapper {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #ffffff !important;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: continuousImagePulse 8s ease-in-out infinite alternate;
  transition: transform 0.6s ease;
}

.projects-grid .project-card:nth-child(1) .project-image-wrapper img { animation-delay: 0s; }
.projects-grid .project-card:nth-child(2) .project-image-wrapper img { animation-delay: 1.3s; }
.projects-grid .project-card:nth-child(3) .project-image-wrapper img { animation-delay: 2.6s; }
.projects-grid .project-card:nth-child(4) .project-image-wrapper img { animation-delay: 3.9s; }
.projects-grid .project-card:nth-child(5) .project-image-wrapper img { animation-delay: 5.2s; }
.projects-grid .project-card:nth-child(6) .project-image-wrapper img { animation-delay: 6.5s; }

@keyframes continuousImagePulse {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(-3px, -2px); }
  100% { transform: scale(1.02) translate(2px, 3px); }
}

.project-card:hover .project-image-wrapper img {
  animation-play-state: paused;
  transform: scale(1.08);
}

.project-info {
  padding: 22px 26px;
  position: relative;
  z-index: 4;
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #111111 !important;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.project-card:hover .project-title {
  color: #000000 !important;
}

.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-load-more {
  padding: 12px 32px;
  background-color: var(--text-dark);
  color: var(--text-light);
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

/* ── Section: Why Choose Us (Statistics) ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  perspective: 1000px;
}

.stat-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 44px 30px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  overflow: hidden;
  cursor: pointer;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(213, 247, 76, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12), 0 0 25px rgba(213, 247, 76, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: transform 0.3s ease, color 0.3s ease;
  transform: translateZ(20px);
}

.stat-card:hover .stat-number {
  transform: translateZ(30px) scale(1.05);
  color: #000000;
}

.stat-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: #444444;
  line-height: 1.45;
  transform: translateZ(15px);
  position: relative;
  z-index: 1;
}

/* ── Section: Services Accordion ── */
.services-accordion {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.e-n-accordion-item {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.e-n-accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.18);
}

.e-n-accordion-item[open] {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--accent-lime);
}

.e-n-accordion-item-title {
  padding: 28px 36px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.e-n-accordion-item-title:hover {
  color: #000000;
}

.e-n-accordion-item-title-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease;
}

.e-n-accordion-item:hover .e-n-accordion-item-title-icon {
  background: var(--text-dark);
  color: var(--accent-lime);
}

.e-n-accordion-item[open] .e-n-accordion-item-title-icon {
  transform: rotate(180deg);
  background: var(--text-dark);
  color: var(--accent-lime);
}

.e-opened { display: none; }
.e-closed { display: block; }

.e-n-accordion-item[open] .e-opened { display: block; }
.e-n-accordion-item[open] .e-closed { display: none; }

.accordion-content {
  padding: 0 36px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: accordionFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes accordionFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-description {
  font-size: 17px;
  color: #444444;
  max-width: 800px;
  line-height: 1.65;
}

.included-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.tag-btn {
  padding: 10px 20px;
  background: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.tag-btn:hover {
  background: var(--text-dark);
  color: var(--accent-lime);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
}

/* ── Section: Our Work Process (Circular Wheel) ── */
.process-wheel-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 40px;
}

.process-wheel-ring {
  position: relative;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.process-wheel-center {
  width: 290px;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.process-wheel-center p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: #333333;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.wheel-node {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: pointer;
  line-height: 1.25;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  z-index: 3;
}

.wheel-node span {
  pointer-events: none;
}

.wheel-node:hover,
.wheel-node.active {
  background: var(--accent-lime) !important;
  color: #000000 !important;
  font-weight: 700;
  transform: translate(-50%, -50%) scale(1.12) !important;
  box-shadow: 0 0 35px rgba(210, 255, 0, 0.75) !important;
}

/* Trigonometric Positioning around 480px circle ring */
/* Pos 1: 12 o'clock (0deg) */
.wheel-node.pos-1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.wheel-node.pos-1.active, .wheel-node.pos-1:hover { transform: translate(-50%, -50%) scale(1.12); }

/* Pos 2: 2 o'clock (60deg) */
.wheel-node.pos-2 { top: 25%; left: 93.3%; transform: translate(-50%, -50%); }
.wheel-node.pos-2.active, .wheel-node.pos-2:hover { transform: translate(-50%, -50%) scale(1.12); }

/* Pos 3: 4 o'clock (120deg) */
.wheel-node.pos-3 { top: 75%; left: 93.3%; transform: translate(-50%, -50%); }
.wheel-node.pos-3.active, .wheel-node.pos-3:hover { transform: translate(-50%, -50%) scale(1.12); }

/* Pos 4: 6 o'clock (180deg) */
.wheel-node.pos-4 { top: 100%; left: 50%; transform: translate(-50%, -50%); }
.wheel-node.pos-4.active, .wheel-node.pos-4:hover { transform: translate(-50%, -50%) scale(1.12); }

/* Pos 5: 8 o'clock (240deg) */
.wheel-node.pos-5 { top: 75%; left: 6.7%; transform: translate(-50%, -50%); }
.wheel-node.pos-5.active, .wheel-node.pos-5:hover { transform: translate(-50%, -50%) scale(1.12); }

/* Pos 6: 10 o'clock (300deg) */
.wheel-node.pos-6 { top: 25%; left: 6.7%; transform: translate(-50%, -50%); }
.wheel-node.pos-6.active, .wheel-node.pos-6:hover { transform: translate(-50%, -50%) scale(1.12); }

@media (max-width: 768px) {
  .process-wheel-ring {
    width: 320px;
    height: 320px;
  }
  .wheel-node {
    width: 90px;
    height: 90px;
    font-size: 11px;
    padding: 10px;
  }
  .process-wheel-center {
    width: 190px;
  }
  .process-wheel-center p {
    font-size: 12px;
  }
}

.process-content-card {
  background: var(--bg-card-dark);
  border-radius: 24px;
  padding: 50px 40px;
  border: 1px solid var(--border-dark);
  min-height: 280px;
  display: flex;
  align-items: center;
}

.eael-circle-btn-content {
  display: none;
}
.eael-circle-btn-content.active {
  display: block;
}
.eael-circle-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #cccccc;
}

/* ── Section: Testimonials Continuous Marquee Track ── */
.testimonials-marquee-track {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  margin-top: 30px;
}

.testimonials-marquee-wrapper {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: testimonials-scroll 24s linear infinite;
}

.testimonials-marquee-wrapper:hover {
  animation-play-state: paused;
}

@keyframes testimonials-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-user-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user {
  font-weight: 700;
  font-size: 16px;
}

.testimonial-company {
  font-size: 13px;
  color: var(--text-muted);
}

.star-rating {
  color: #ffb800;
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cccccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--text-dark);
}

/* ── Section: About Us ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #dddddd;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team-card {
  background: var(--bg-card-dark);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(210, 255, 0, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(210, 255, 0, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 25px rgba(210, 255, 0, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.team-avatar-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #181818;
  border: 2px solid var(--accent-lime);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 0 15px rgba(210, 255, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover .team-avatar-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 22px rgba(210, 255, 0, 0.6);
}

.team-role-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-lime);
  background: rgba(210, 255, 0, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(210, 255, 0, 0.2);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.team-card:hover .team-name {
  color: var(--accent-lime);
}

.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Section: Blog Timeline ── */
.timeline-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-top: 40px;
  scroll-snap-type: x mandatory;
}

.timeline-card {
  flex-shrink: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.timeline-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.35;
}

.timeline-link {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}

/* ── Section: Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #cccccc;
}

.form-card {
  background: var(--bg-card-dark);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-dark);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

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

.form-select option {
  background-color: #181818;
  color: #ffffff;
  padding: 12px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #dddddd;
  cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
  accent-color: var(--accent-lime);
  width: 16px;
  height: 16px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background-color: var(--accent-lime);
  color: #000000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213, 247, 76, 0.4);
}

.form-status-alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
  background: rgba(213, 247, 76, 0.15);
  color: var(--accent-lime);
  border: 1px solid rgba(213, 247, 76, 0.4);
  animation: fadeInDown 0.4s ease;
}

/* ── Footer ── */
footer.site-footer {
  background-color: #050505;
  border-top: 1px solid var(--border-dark);
  padding: 80px 40px 40px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-subheading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: var(--accent-lime);
  color: #000;
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.copyright-bar {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Responsive Breakpoints ── */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .swiper-slide { width: 50%; }
}

@media (max-width: 768px) {
  header.site-header { padding: 0 20px; }
  nav.main-nav { display: none; }
  .elementor-menu-toggle { display: block; }
  .section-light, .section-dark { padding: 60px 20px; }
  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .process-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .swiper-slide { width: 100%; }
  .checkbox-group { grid-template-columns: 1fr; }
}

/* ── Section: Client Voices Card Deck ── */
.client-voices-section {
  position: relative;
  background: #f6f6f5;
  padding: 100px 0 80px 0;
  overflow: hidden;
}

.laser-lines-bg {
  position: absolute;
  top: 48%;
  left: 0;
  width: 100%;
  height: 60px;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 4px,
    rgba(255, 60, 60, 0.25) 4px,
    rgba(255, 60, 60, 0.25) 5px
  );
  pointer-events: none;
  z-index: 1;
}

.client-voices-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #333333;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.client-voices-section .container-inner {
  text-align: center;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3c3c;
  box-shadow: 0 0 8px #ff3c3c;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.client-voices-headline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 500;
  color: #111111;
  line-height: 1.15;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.cards-deck-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 70px;
  perspective: 1200px;
}

.deck-card {
  position: relative;
  width: 360px;
  min-height: 540px;
  background: #111111;
  border-radius: 28px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

.deck-card.card-left {
  transform: rotate(-6deg) translateY(16px);
}

.deck-card.card-center {
  transform: rotate(0deg) translateY(-10px) scale(1.04);
  border-color: #ffffff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.deck-card.card-right {
  transform: rotate(6deg) translateY(16px);
}

.deck-card:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.08) !important;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
  z-index: 10;
}

.card-bg-blur {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.42) saturate(1.4);
  transform: scale(1.15);
  pointer-events: none;
  z-index: 1;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.deck-card:hover .card-bg-blur {
  filter: blur(28px) brightness(0.52) saturate(1.6);
  transform: scale(1.25);
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 44px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 100%;
  width: 100%;
}

.deck-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
  z-index: 10;
}

.card-avatar-wrapper {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.card-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-quote {
  font-family: 'Instrument Serif', 'Playfair Display', 'Georgia', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.22;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  padding: 0 4px;
}

.card-author {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
  text-align: center;
}

.author-name {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.author-title {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}

.deck-metrics-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 20px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.metric-item:hover {
  transform: translateY(-6px) scale(1.06);
}

.metric-val {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 52px;
  font-weight: 600;
  color: #111111;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.metric-plus, .metric-percent {
  color: #ff3c3c;
  font-weight: 400;
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 2px rgba(255, 60, 60, 0.3));
}

.metric-item:hover .metric-plus, 
.metric-item:hover .metric-percent {
  transform: scale(1.2) rotate(6deg);
  filter: drop-shadow(0 0 8px rgba(255, 60, 60, 0.8));
}

.metric-lbl {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666666;
  font-weight: 500;
}

.metric-divider {
  width: 1px;
  height: 45px;
  background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .cards-deck-container {
    flex-direction: column;
    gap: 30px;
  }
  .deck-card.card-left, .deck-card.card-right, .deck-card.card-center {
    transform: none !important;
    width: 100%;
    max-width: 360px;
  }
}

/* ── Interactive Blog & Modal Styling ── */
.timeline-card {
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
}

.timeline-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.blog-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(213, 247, 76, 0.25);
  color: #111111;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.timeline-excerpt {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-read-blog {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.timeline-card:hover .btn-read-blog {
  color: #000000;
  transform: translateX(4px);
}

/* Modal Overlay */
.blog-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.blog-modal-backdrop.active {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

.blog-modal-dialog {
  background: #ffffff;
  color: #111111;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-modal-backdrop.active .blog-modal-dialog {
  transform: scale(1) translateY(0);
}

.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #f0f0f0;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.blog-modal-close:hover {
  background: #e0e0e0;
  transform: scale(1.1);
}

.blog-modal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-modal-date {
  font-size: 13px;
  color: #777777;
}

.blog-modal-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
  margin-bottom: 16px;
}

.blog-modal-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #666666;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.blog-modal-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 30px;
}

.blog-modal-body p {
  margin-bottom: 16px;
}

.blog-modal-footer {
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
}

/* ── Ask BitDev AI Chatbot Floating Widget ── */
#bitdev-chatbot-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999999 !important;
  font-family: var(--font-body);
  animation: chatBounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes chatBounceIn {
  0% { transform: scale(0) translateY(50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

#bitdev-chat-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.chat-trigger-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0d0d0d;
  border: 2.5px solid var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(210, 255, 0, 0.45);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

#bitdev-chat-trigger:hover .chat-trigger-icon-wrap {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7), 0 0 35px rgba(210, 255, 0, 0.7);
}

.chat-trigger-icon {
  width: 32px;
  height: 32px;
  fill: var(--accent-lime);
}

.chat-online-pulse {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #00ff66;
  border: 2.5px solid #0d0d0d;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff66;
}

.chat-trigger-label {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  color: #000000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-lime);
  padding: 5px 12px;
  border-radius: 14px;
  border: 1px solid #000000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Chatbot Window Popup */
#bitdev-chat-window {
  position: absolute !important;
  bottom: 84px !important;
  right: 0 !important;
  width: 380px !important;
  max-width: calc(100vw - 32px) !important;
  height: 520px !important;
  max-height: calc(100vh - 120px) !important;
  background: #0d0d0d !important;
  border: 1.5px solid #d2ff00 !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(210, 255, 0, 0.25) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease !important;
  transform-origin: bottom right !important;
  z-index: 2147483647 !important;
  pointer-events: auto !important;
}

#bitdev-chat-window.chat-window-hidden {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Header */
.chat-header {
  padding: 16px 20px;
  background: #141414;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1f1f1f;
  border: 1px solid var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.chat-status {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-status-dot {
  width: 7px;
  height: 7px;
  background: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff66;
}

#bitdev-chat-close {
  background: transparent;
  border: none;
  color: #808080;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

#bitdev-chat-close:hover {
  color: #ffffff;
}

/* Chat Messages Area */
.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #0d0d0d;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.bot-msg {
  align-self: flex-start;
}

.user-msg {
  align-self: flex-end;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
}

.bot-msg .chat-bubble {
  background: #1a1a1a;
  color: #e5e5e5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 4px;
}

.user-msg .chat-bubble {
  background: var(--accent-lime);
  color: #000000;
  font-weight: 600;
  border-top-right-radius: 4px;
}

.chat-timestamp {
  font-size: 10px;
  color: #666666;
  margin-top: 4px;
  padding: 0 4px;
}

.user-msg .chat-timestamp {
  text-align: right;
}

/* FAQ Chips */
.chat-faq-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.faq-chip {
  background: #161616;
  color: #d0d0d0;
  border: 1px solid rgba(210, 255, 0, 0.2);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-chip:hover {
  background: rgba(210, 255, 0, 0.12);
  border-color: var(--accent-lime);
  color: #ffffff;
  transform: translateX(4px);
}

/* Footer / Input Form */
.chat-footer {
  padding: 14px 16px;
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#chat-input-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

#chat-user-input {
  flex: 1;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
}

#chat-user-input:focus {
  border-color: var(--accent-lime);
}

#chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-lime);
  color: #000000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

#chat-send-btn:hover {
  transform: scale(1.08);
  background: #e2ff40;
}
