/* ─── Header ──────────────────────────────────────────────────────────── */
.header {
  position: relative;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  padding: 28px 40px;
}

.logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 42px;
  color: var(--color-black);
  text-decoration: none;
  margin-inline-start: 0;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin: 0 auto;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-green);
}

.login-btn {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-white);
  background: var(--color-black);
  border: none;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-inline-end: 0;
  white-space: nowrap;
}

.login-btn:hover {
  background: #ffcf00;
  color: var(--color-black);
}

/* ─── Chat Bubble ─────────────────────────────────────────────────────── */
.chat-bubble {
  position: absolute;
  top: 37%;
  z-index: var(--z-content);
}

/* RTL: bubble appears to the RIGHT of Fahad visually (which is inline-start in RTL) */
.chat-bubble {
  inset-inline-start: 22%;
}

.bubble-body {
  background: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2rem;
  padding: 16px 28px;
  border-radius: 50% 50% 10% 50%;
  position: relative;
  display: inline-block;
}

.bubble-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255,107,122,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}

/* ─── CS Box ──────────────────────────────────────────────────────────── */
.cs-box {
  position: absolute;
  bottom: 12%;
  inset-inline-start: 3%;
  width: 200px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  padding: 20px;
  z-index: var(--z-content);
  text-align: center;
}

.cs-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: -56px auto 8px;
}

.cs-location {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-gray);
  margin: 4px 0;
}

.cs-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark);
  margin: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cs-name::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.cs-role {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-gray);
  margin: 2px 0 12px;
}

.cs-cta {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-green);
  background: var(--color-white);
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius-btn);
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.cs-cta:hover {
  background: #f5f5f5;
}

.cs-cta svg {
  width: 18px;
  height: 18px;
}

/* ─── Comment Card ────────────────────────────────────────────────────── */
.comment-card {
  position: absolute;
  bottom: 10%;
  inset-inline-end: 5%;
  width: 280px;
  background: var(--color-glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: var(--z-content);
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-yellow);
}

.comment-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skel-line {
  height: 12px;
  border-radius: 6px;
  background: rgba(200, 200, 200, 0.45);
}

.skel-line--full { width: 100%; }
.skel-line--short { width: 60%; }

/* ─── Decorative Hand-drawn Lines ─────────────────────────────────────── */
.deco-lines {
  position: absolute;
  top: 14%;
  inset-inline-start: 10%;
  z-index: var(--z-decorative);
  width: 80px;
  height: 80px;
  pointer-events: none;
}

/* ─── Decorative Dots ─────────────────────────────────────────────────── */
.dots {
  position: absolute;
  inset: 0;
  z-index: var(--z-decorative);
  pointer-events: none;
}

.dot {
  position: absolute;
  border-radius: 50%;
}

.dot--green { background: var(--color-green); }
.dot--white { background: rgba(255, 255, 255, 0.7); }

/* ─── Arrow SVGs ──────────────────────────────────────────────────────── */
.arrows {
  position: absolute;
  inset: 0;
  z-index: var(--z-decorative);
  pointer-events: none;
}

.arrow-r {
  position: absolute;
  bottom: 30%;
  inset-inline-end: 8%;
  width: 120px;
}

.arrow-l {
  position: absolute;
  top: 30%;
  inset-inline-start: 18%;
  width: 60px;
}
