/* ==========================================================================
   KIRA TECH - WORLD-CLASS CYBER LUXURY DESIGN SYSTEM & STYLESHEET
   Jordanian Market Focus • Web & App Development & Comprehensive Portfolio
   Neuro-Marketing & High-Converting Psychological Architecture
   ========================================================================== */

/* --- CSS Variables & Theme Tokens --- */
:root {
  --bg-dark: #06070e;
  --bg-card: rgba(15, 17, 30, 0.78);
  --bg-card-hover: rgba(24, 27, 48, 0.95);
  --bg-card-glass: rgba(14, 16, 29, 0.65);
  --bg-secondary: #0c0e1a;
  
  --gold-primary: #f5d77f;
  --gold-light: #fff0b3;
  --gold-dark: #b8860b;
  --gold-gradient: linear-gradient(135deg, #fff2a8 0%, #e5c158 50%, #a47d23 100%);
  --gold-border: rgba(229, 193, 88, 0.35);
  --gold-glow: 0 0 25px rgba(229, 193, 88, 0.35);

  --purple-neon: #a855f7;
  --purple-glow: 0 0 25px rgba(168, 85, 247, 0.45);
  --purple-gradient: linear-gradient(135deg, #c084fc 0%, #9333ea 50%, #6b21a8 100%);
  --purple-border: rgba(168, 85, 247, 0.3);

  --cyan-neon: #38bdf8;
  --cyan-glow: 0 0 20px rgba(56, 189, 248, 0.4);

  --green-whatsapp: #25D366;
  --green-whatsapp-hover: #1eb956;
  --whatsapp-glow: 0 0 20px rgba(37, 211, 102, 0.45);

  --danger-red: #ef4444;
  --warning-amber: #f59e0b;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(168, 85, 247, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-fast);
}

.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Typography Helpers --- */
.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #ffe57f, #e5b93d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.purple-gradient-text {
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold { color: var(--gold-primary); }
.text-purple { color: var(--purple-neon); }
.text-cyan { color: var(--cyan-neon); }
.text-green { color: var(--green-whatsapp); }
.text-center { text-align: center; }

/* --- Ambient Glow Circles --- */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #7e22ce, transparent 70%);
  top: -100px;
  right: -100px;
  animation: floatAmbient 12s infinite alternate ease-in-out;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #b45309, transparent 70%);
  bottom: 20%;
  left: -150px;
  animation: floatAmbient 15s infinite alternate-reverse ease-in-out;
}

.glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #0284c7, transparent 70%);
  top: 50%;
  right: 15%;
  opacity: 0.2;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.15); }
}

/* --- Top Announcement Bar (Psychological Scarcity & Availability) --- */
.top-announcement-bar {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(229, 193, 88, 0.25), rgba(37, 211, 102, 0.2));
  border-bottom: 1px solid rgba(229, 193, 88, 0.3);
  padding: 8px 0;
  font-size: 0.88rem;
  position: relative;
  z-index: 1001;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-dot-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px #25D366;
  animation: pulseGreen 1.5s infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.announcement-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #07080f;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(229, 193, 88, 0.35);
  transition: var(--transition-fast);
}

.announcement-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(229, 193, 88, 0.6);
}

/* --- Main Header & Nav --- */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 8, 15, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4%;
  max-width: 1400px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle-mini {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 15px rgba(229, 193, 88, 0.4);
}

.logo-circle-mini img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand-title {
  font-family: 'Outfit', 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 1px;
}

.brand-tagline {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: -3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link i {
  font-size: 0.82rem;
  color: var(--gold-primary);
}

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

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.35);
  direction: ltr;
}

.btn-whatsapp-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.mobile-toggle {
  display: none;
  font-size: 1.3rem;
  color: #fff;
  padding: 6px 10px;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  padding: 60px 0 65px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid var(--purple-border);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-whatsapp);
  box-shadow: 0 0 10px var(--green-whatsapp);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.hero-title {
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.hero-trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 28px;
}

.trust-bullet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #07080f;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--gold-glow);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(229, 193, 88, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--purple-neon);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.25);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: var(--transition-fast);
}

.stat-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- Hero Visual & 3D Holographic Card --- */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.visual-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
}

.cyber-glow-ring {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #e5c158, #a855f7, #38bdf8, #25D366, #e5c158);
  filter: blur(25px);
  opacity: 0.45;
  animation: rotateRing 15s linear infinite;
}

@keyframes rotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hologram-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, #15182e 0%, #080913 80%);
  border: 2px solid rgba(229, 193, 88, 0.4);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), inset 0 0 40px rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.logo-hero-center {
  position: relative;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(229, 193, 88, 0.5);
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 12, 24, 0.9);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: badgeFloat 5s infinite alternate ease-in-out;
}

.badge-top-right {
  top: 15px;
  right: -20px;
  border-color: var(--gold-border);
  animation-delay: 0.2s;
}

.badge-bottom-left {
  bottom: 25px;
  left: -20px;
  border-color: var(--purple-border);
  animation-delay: 0.7s;
}

.badge-bottom-right {
  bottom: -15px;
  right: 15px;
  border-color: rgba(37, 211, 102, 0.4);
  direction: ltr;
  animation-delay: 1.2s;
}

@keyframes badgeFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ==========================================================================
   ★ ZERO-RISK INTERACTIVE BLUEPRINT OFFER (The Ultimate Psychological Converter)
   ========================================================================== */
.blueprint-section {
  padding: 20px 0 60px;
  position: relative;
  z-index: 2;
}

.blueprint-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(28, 22, 42, 0.95), rgba(12, 14, 28, 0.98));
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 50px rgba(229, 193, 88, 0.25), 0 25px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.blueprint-inner {
  padding: 40px;
  position: relative;
  z-index: 1;
}

.blueprint-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--green-whatsapp);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 20px;
}

.blueprint-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 35px;
  align-items: center;
}

.blueprint-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 14px;
}

.blueprint-desc {
  font-size: 1.02rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 25px;
}

.blueprint-steps-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(7, 8, 15, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  flex-wrap: wrap;
}

.b-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.b-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #07080f;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b-step-text strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.b-step-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.b-step-arrow {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.blueprint-cta-box {
  background: rgba(7, 8, 15, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.b-sparkle-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(229, 193, 88, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px;
}

.b-cta-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.b-scarcity-hint {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 20px;
}

.btn-blueprint-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 16px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.45);
  margin-bottom: 14px;
}

.btn-blueprint-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.65);
}

.b-guarantee-note {
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   SECTION HEADER (Reusable)
   ========================================================================== */
.section-header {
  margin-bottom: 55px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==========================================================================
   1. PSYCHOLOGICAL COMPARISON SECTION (KIRA TECH VS ALTERNATIVES)
   ========================================================================== */
.comparison-section {
  padding: 85px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.04), transparent);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  backdrop-filter: blur(16px);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.card-danger {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(18, 12, 16, 0.6);
}

.card-warning {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(18, 15, 12, 0.6);
}

.card-featured-kira {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(180deg, rgba(26, 22, 14, 0.9) 0%, rgba(14, 16, 30, 0.95) 100%);
  box-shadow: 0 0 45px rgba(229, 193, 88, 0.25), 0 20px 40px rgba(0, 0, 0, 0.8);
  transform: translateY(-8px);
  z-index: 2;
}

.popular-ribbon-kira {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--gold-gradient);
  color: #07080f;
  font-weight: 900;
  font-size: 0.82rem;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(229, 193, 88, 0.5);
  white-space: nowrap;
}

.comparison-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.comp-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.05);
}

.card-danger .comp-icon { color: var(--danger-red); background: rgba(239, 68, 68, 0.15); }
.card-warning .comp-icon { color: var(--warning-amber); background: rgba(245, 158, 11, 0.15); }
.kira-icon { color: #07080f; background: var(--gold-gradient); box-shadow: 0 0 20px rgba(229, 193, 88, 0.4); }

.comparison-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.comp-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.danger-tag { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.warning-tag { background: rgba(245, 158, 11, 0.2); color: #fde68a; }
.comp-tag-kira { background: rgba(229, 193, 88, 0.2); color: var(--gold-primary); font-weight: 700; font-size: 0.82rem; }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
  margin-bottom: 24px;
}

.comp-list li {
  font-size: 0.92rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comp-list li.negative {
  color: #94a3b8;
}

.comp-list li.negative i {
  color: var(--danger-red);
  margin-top: 3px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.comp-list li.positive {
  color: #f1f5f9;
}

.comp-list li.positive i {
  color: #10b981;
  margin-top: 3px;
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-kira-select {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #07080f;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 20px rgba(229, 193, 88, 0.4);
  margin-top: auto;
}

.btn-kira-select:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(229, 193, 88, 0.6);
}

/* ==========================================================================
   2. FLAGSHIP APPS SECTION (Kiraz Taxi & Tabibi App)
   ========================================================================== */
.flagship-section {
  padding: 85px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.05), transparent);
}

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

.flagship-hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.card-kiraz {
  border-color: rgba(255, 0, 127, 0.35);
  box-shadow: 0 0 30px rgba(255, 0, 127, 0.15);
}

.card-tabibi {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.flagship-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.flagship-badge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(7, 8, 15, 0.7);
  border-bottom: 1px solid var(--border-light);
}

.role-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-status {
  font-size: 0.78rem;
  color: #10b981;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flagship-preview-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080914;
  overflow: hidden;
}

.flagship-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.flagship-hero-card:hover .flagship-img {
  transform: scale(1.04);
}

.flagship-info-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.app-icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.app-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.icon-pink { background: rgba(255, 0, 127, 0.2); color: #ff007f; border: 1px solid rgba(255, 0, 127, 0.4); }
.icon-cyan { background: rgba(56, 189, 248, 0.2); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.4); }

.app-icon-title h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.app-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.flagship-text {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.flagship-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(7, 8, 15, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.f-metric strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--gold-primary);
}

.f-metric span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.flagship-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.btn-google-play {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: var(--radius-full);
}

.btn-google-play:hover {
  background: #10b981;
  color: #07080f;
  border-color: #10b981;
}

.btn-details-modal {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--purple-neon);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: var(--radius-full);
}

.btn-details-modal:hover {
  background: var(--purple-gradient);
}

/* ==========================================================================
   3. 4-STEP TRANSFORMATION PROCESS SECTION (Frictionless Roadmap)
   ========================================================================== */
.process-section {
  padding: 85px 0;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 30px 20px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.process-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.process-step-num {
  position: absolute;
  top: 15px;
  left: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.process-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}

.step-meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(7, 8, 15, 0.6);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   4. BANNER & AD CREATOR STUDIO (Live Editing & Canvas HD Export)
   ========================================================================== */
.studio-section {
  padding: 85px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(7, 8, 15, 0.9), rgba(12, 14, 26, 0.9));
}

.studio-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.mode-tabs {
  display: flex;
  gap: 10px;
  background: rgba(14, 16, 29, 0.8);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.tab-btn.active {
  background: var(--purple-gradient);
  color: #fff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.quick-export-actions {
  display: flex;
  gap: 12px;
}

.btn-gold-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #07080f;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: var(--gold-glow);
}

.btn-gold-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(229, 193, 88, 0.6);
}

.btn-purple-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--purple-neon);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
}

.btn-purple-action:hover {
  background: var(--purple-gradient);
}

.studio-workspace {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.preview-stage-container {
  background: rgba(4, 5, 10, 0.9);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.design-artboard {
  position: relative;
  background: #06070e;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(229, 193, 88, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.design-artboard.format-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.design-artboard.format-square {
  width: 85%;
  aspect-ratio: 1 / 1;
}

.design-artboard.format-story {
  width: 58%;
  aspect-ratio: 9 / 16;
}

.artboard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.design-artboard.format-square .artboard-inner,
.design-artboard.format-story .artboard-inner {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 15px;
}

.artboard-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.artboard-glow-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.18), transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(229, 193, 88, 0.15), transparent 60%);
  pointer-events: none;
}

.artboard-logo-col {
  position: relative;
  z-index: 2;
}

.logo-frame-glow {
  width: clamp(90px, 16vw, 190px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 4px;
  background: var(--gold-gradient);
  box-shadow: 0 0 35px rgba(229, 193, 88, 0.5);
  position: relative;
}

.artboard-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.artboard-content-col {
  position: relative;
  z-index: 2;
  flex: 1;
  margin-right: clamp(15px, 3vw, 35px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.design-artboard.format-square .artboard-content-col,
.design-artboard.format-story .artboard-content-col {
  margin-right: 0;
  align-items: center;
}

.banner-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 1.6vw, 1.25rem);
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 2px;
}

.banner-main-title {
  font-size: clamp(1rem, 2.2vw, 1.75rem);
  font-weight: 900;
  color: #ffffff;
  margin: 6px 0 10px;
  line-height: 1.3;
}

.banner-bullet-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.bullet-pill {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 600;
  color: #f1f5f9;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.banner-location-tag {
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.banner-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--green-whatsapp);
  border-radius: var(--radius-full);
  padding: 5px 16px 5px 8px;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
  direction: ltr;
}

.whatsapp-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-weight: 800;
  color: #ffffff;
}

.studio-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: blur(16px);
}

.sidebar-header {
  margin-bottom: 20px;
}

.sidebar-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.control-group {
  margin-bottom: 16px;
}

.control-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: rgba(7, 8, 15, 0.8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--purple-neon);
}

.studio-action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-outline-sm {
  flex: 1;
  padding: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.btn-outline-sm:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.btn-whatsapp-sm {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: #128C7E;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   5. PORTFOLIO SHOWCASE (All 17 Real Projects)
   ========================================================================== */
.portfolio-section {
  padding: 85px 0;
  position: relative;
}

.portfolio-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(14, 16, 29, 0.8);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gold-gradient);
  color: #07080f;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(229, 193, 88, 0.35);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  border-color: var(--purple-neon);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.portfolio-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #090a16;
  position: relative;
  overflow: hidden;
}

.portfolio-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-thumb-img {
  transform: scale(1.06);
}

.category-tag-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(7, 8, 15, 0.85);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.portfolio-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.4;
}

.portfolio-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.p-tag {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  color: #cbd5e1;
}

.btn-open-case {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--purple-border);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.btn-open-case:hover {
  background: var(--purple-gradient);
}

/* ==========================================================================
   6. CAREER TIMELINE & SKILLS SECTION
   ========================================================================== */
.timeline-skills-section {
  padding: 85px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.03), transparent);
}

.about-experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.col-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 2px solid rgba(229, 193, 88, 0.3);
  padding-right: 20px;
}

.timeline-item {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

.time-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(229, 193, 88, 0.15);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
}

.company-name {
  font-size: 0.85rem;
  color: var(--purple-neon);
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.education-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}

.edu-badge {
  font-size: 0.82rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 6px;
}

.education-card h4 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 6px;
}

.education-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.skills-matrix h4 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.skill-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #f1f5f9;
}

.skill-tag-pill.gold-pill {
  border-color: rgba(229, 193, 88, 0.35);
  color: var(--gold-light);
  background: rgba(229, 193, 88, 0.1);
}

/* ==========================================================================
   7. SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 85px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.service-box:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.service-box.featured-service {
  border-color: var(--purple-neon);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.popular-ribbon {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--purple-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 20px;
}

.icon-gold { background: rgba(229, 193, 88, 0.12); color: var(--gold-primary); }
.icon-purple { background: rgba(168, 85, 247, 0.12); color: var(--purple-neon); }
.icon-cyan { background: rgba(56, 189, 248, 0.12); color: var(--cyan-neon); }
.icon-magenta { background: rgba(255, 0, 127, 0.12); color: #ff007f; }
.icon-green { background: rgba(37, 211, 102, 0.12); color: var(--green-whatsapp); }

.service-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.service-features li {
  font-size: 0.82rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: var(--gold-primary);
  font-size: 0.78rem;
}

/* ==========================================================================
   8. RISK-FREE GUARANTEES & PENALTY CHALLENGE SECTION
   ========================================================================== */
.guarantees-section {
  padding: 85px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(229, 193, 88, 0.03), transparent);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 30px 22px;
  text-align: center;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.guarantee-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.g-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.guarantee-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.guarantee-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Delivery Penalty Challenge Banner --- */
.penalty-challenge-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(12, 14, 28, 0.95));
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
}

.penalty-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  color: var(--danger-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.penalty-content {
  flex: 1;
}

.penalty-title-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.penalty-title-row h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.penalty-badge {
  background: var(--danger-red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.penalty-content p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
}

/* ==========================================================================
   9. INTERACTIVE COST CALCULATOR & LOST REVENUE ENGINE (JOD)
   ========================================================================== */
.calculator-section {
  padding: 85px 0;
  position: relative;
}

.calc-mode-switcher {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.calc-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 16, 29, 0.85);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.calc-tab-btn.active {
  background: var(--gold-gradient);
  color: #07080f;
  border-color: var(--gold-primary);
  box-shadow: 0 0 25px rgba(229, 193, 88, 0.4);
}

.calculator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(16px);
}

.calc-step {
  margin-bottom: 30px;
}

.calc-label {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.calc-option {
  background: rgba(7, 8, 15, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-option:hover {
  border-color: var(--purple-border);
}

.calc-option.active {
  background: rgba(168, 85, 247, 0.15);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 20px rgba(229, 193, 88, 0.3);
}

.calc-option i {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.calc-option h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.price-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.calc-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.addon-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(7, 8, 15, 0.6);
  border: 1px solid var(--border-light);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.addon-checkbox input {
  display: none;
}

.custom-chk {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-checkbox input:checked + .custom-chk {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
}

.addon-checkbox input:checked + .custom-chk::after {
  content: '✔';
  font-size: 0.75rem;
  color: #07080f;
  font-weight: 900;
}

.addon-text {
  font-size: 0.88rem;
  color: #e2e8f0;
  font-weight: 600;
}

.calc-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(7, 8, 15, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 30px;
}

.result-title {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.total-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
}

.currency {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.jod-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  background: rgba(229, 193, 88, 0.2);
  color: var(--gold-primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
}

.estimate-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.6);
}

/* --- Lost Revenue Calculator Styles --- */
.lost-rev-intro {
  margin-bottom: 25px;
}

.danger-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.lost-rev-intro h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.lost-rev-intro p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.lost-rev-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.lost-input-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.lost-rev-result-card {
  background: linear-gradient(135deg, rgba(26, 16, 20, 0.9), rgba(12, 14, 28, 0.95));
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lost-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fca5a5;
  margin-bottom: 6px;
}

.lost-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.lost-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #ef4444;
  line-height: 1;
  text-shadow: 0 0 25px rgba(239, 68, 68, 0.5);
}

.lost-currency {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.danger-pill {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.lost-analysis-note {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.btn-stop-loss {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.5);
  white-space: nowrap;
}

.btn-stop-loss:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(239, 68, 68, 0.75);
}

/* ==========================================================================
   10. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 85px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.03), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.testi-stars {
  color: #e5c158;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(229, 193, 88, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--gold-border);
}

.testi-author strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   11. INTERACTIVE FAQ SECTION (Objection Killer)
   ========================================================================== */
.faq-section {
  padding: 85px 0;
  position: relative;
}

.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-border);
  box-shadow: 0 0 20px rgba(229, 193, 88, 0.15);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  text-align: right;
}

.faq-question span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-arrow {
  color: var(--gold-primary);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

/* ==========================================================================
   12. CONTACT & CTA SECTION
   ========================================================================== */
.cta-contact-section {
  padding: 85px 0;
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, rgba(24, 20, 36, 0.95), rgba(10, 12, 24, 0.98));
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(229, 193, 88, 0.2);
}

.cta-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-logo-wrap {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 20px;
  padding: 3px;
  background: var(--gold-gradient);
  box-shadow: var(--gold-glow);
}

.cta-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.cta-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--green-whatsapp);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 20px;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 35px;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.contact-pill-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(7, 8, 15, 0.8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  transition: var(--transition-fast);
}

.contact-pill-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
}

.contact-pill-item.item-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.25));
  border-color: var(--green-whatsapp);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.25);
}

.contact-pill-item i {
  font-size: 1.8rem;
  color: var(--gold-primary);
}

.contact-pill-item.item-whatsapp i {
  color: var(--green-whatsapp);
}

.pill-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pill-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  direction: ltr;
  display: inline-block;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.main-footer {
  background: #04050a;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 25px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-right: 5px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 25px;
}

.bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 15px;
}

.bottom-links {
  display: flex;
  gap: 20px;
}

/* --- Floating WhatsApp Button (Anchored Bottom Left) --- */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  left: 26px;
  right: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
  z-index: 9990;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(37, 211, 102, 0.85);
}

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseGreen 2s infinite;
}

.whatsapp-tooltip {
  position: absolute;
  left: 68px;
  right: auto;
  background: #0f1220;
  border: 1px solid var(--gold-border);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(6px);
}

/* --- Modal Styles --- */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.project-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 10, 0.88);
  backdrop-filter: blur(14px);
}

.modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.3);
  color: var(--danger-red);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-grid, .about-experience-grid, .studio-workspace, .blueprint-grid {
    grid-template-columns: 1fr;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-featured-kira {
    transform: none;
  }
  .process-grid, .guarantees-grid, .services-grid, .calc-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .lost-rev-result-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 65px;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 65px);
    background: #090b16;
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    padding: 30px 20px;
    align-items: flex-start;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  .nav-menu.active { right: 0; }
  .mobile-toggle { display: block; }
  
  .hero-title { font-size: 2.1rem; }
  .section-title, .blueprint-title { font-size: 1.8rem; }
  
  .flagship-grid, .process-grid, .guarantees-grid, .services-grid, 
  .portfolio-grid, .testimonials-grid, .calc-options-grid, .calc-addons-grid,
  .footer-content, .contact-methods-grid, .lost-rev-inputs-grid {
    grid-template-columns: 1fr;
  }

  .calc-result-bar, .penalty-challenge-banner {
    flex-direction: column;
    text-align: center;
  }

  .announcement-content {
    flex-direction: column;
    text-align: center;
  }
  .announcement-left {
    justify-content: center;
  }
}

/* ==========================================================================
   FLOATING SOUND CONTROLLER
   ========================================================================== */
.floating-sound-control {
  position: fixed;
  bottom: 120px;
  left: 30px;
  z-index: 998;
}

.sound-toggle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 16, 29, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 193, 88, 0.4);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(229, 193, 88, 0.2);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.sound-toggle-btn:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(229, 193, 88, 0.45);
  color: #fff;
}

.sound-toggle-btn.muted {
  border-color: rgba(239, 68, 68, 0.5);
  color: #ef4444;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(239, 68, 68, 0.2);
}

.sound-wave-rings {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  pointer-events: none;
}

.sound-wave-rings .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(229, 193, 88, 0.4);
  opacity: 0;
  animation: soundRingPulse 2.5s infinite;
}

.sound-wave-rings .ring-2 {
  animation-delay: 1.25s;
}

.sound-toggle-btn.muted .sound-wave-rings .ring {
  display: none;
}

@keyframes soundRingPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.sound-tooltip {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background: rgba(8, 10, 20, 0.95);
  border: 1px solid rgba(229, 193, 88, 0.4);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.sound-toggle-btn:hover .sound-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   FIXED CORNER 3D FAIRY INTERACTIVE ASSISTANT (الجنيّة كيرا - الركن التفاعلي الذكي)
   Fixed Bottom-Right Mascot with 3D Mouse Parallax, Floating Physics & Cartoon Bubble
   ========================================================================== */
.floating-fairy-guide {
  position: fixed;
  bottom: 22px;
  right: 22px;
  left: auto;
  width: auto;
  height: auto;
  z-index: 9999;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  perspective: 1000px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

/* Entrance Fly-in Animation */
.floating-fairy-guide.fairy-entering {
  animation: fairyFlyInEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fairyFlyInEntrance {
  0% {
    opacity: 0;
    transform: translateY(120px) scale(0.4) rotate(15deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-15px) scale(1.08) rotate(-4deg);
  }
  80% {
    transform: translateY(5px) scale(0.98) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* Quick Control Toggle Pill (Minimize/Restore) */
.fairy-quick-controls {
  position: relative;
  margin-bottom: 8px;
  pointer-events: auto;
  z-index: 12;
}

.fairy-control-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 12, 24, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 193, 88, 0.5);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 12px rgba(168, 85, 247, 0.3);
  transition: all 0.25s ease;
}

.fairy-control-pill:hover {
  background: rgba(229, 193, 88, 0.25);
  border-color: var(--gold-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 193, 88, 0.45);
}

.fairy-control-pill .pill-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

/* Minimized State */
.floating-fairy-guide.minimized .fairy-flying-avatar-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(15, 17, 34, 0.95) !important;
  border: 2px solid var(--gold-primary) !important;
  box-shadow: 0 0 20px rgba(229, 193, 88, 0.6), 0 0 35px rgba(56, 189, 248, 0.4) !important;
  overflow: hidden;
  animation: fairyMinPulse 2.5s infinite alternate !important;
}

.floating-fairy-guide.minimized .fairy-fullbody-img {
  width: 140%;
  height: 140%;
  object-fit: cover;
  object-position: top center;
  transform: translateY(-5px);
}

.floating-fairy-guide.minimized .fairy-speech-bubble {
  display: none !important;
}

.floating-fairy-guide.minimized .fairy-control-pill .pill-arrow {
  transform: rotate(180deg);
}

@keyframes fairyMinPulse {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(229, 193, 88, 0.5); }
  100% { transform: scale(1.08); box-shadow: 0 0 30px rgba(56, 189, 248, 0.8), 0 0 45px rgba(168, 85, 247, 0.5); }
}

/* --- Full Body Fairy Wrapper (3D Floating Mascot) --- */
.fairy-flying-avatar-wrapper {
  position: relative;
  width: 180px;
  height: 255px;
  cursor: pointer;
  pointer-events: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  will-change: transform;
  z-index: 9999;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  transition: filter 0.3s ease;
}

.fairy-flying-avatar-wrapper:hover {
  filter: drop-shadow(0 0 35px rgba(56, 189, 248, 0.95)) drop-shadow(0 0 55px rgba(168, 85, 247, 0.9)) drop-shadow(0 0 75px rgba(245, 215, 127, 0.85));
}

.fairy-flying-avatar-wrapper:active {
  transform: scale(0.96);
}

/* Excited 360 Spin Animation on Button Click / CASTING State */
.fairy-flying-avatar-wrapper.excited,
.fairy-flying-avatar-wrapper[data-state="CASTING"] {
  animation: fairyMagicSpin 0.95s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Cheerful Speaking Bounce Animation */
.fairy-flying-avatar-wrapper.speaking-bounce {
  animation: fairySpeakingBounce 0.65s ease-in-out infinite alternate !important;
}

/* Active GUIDING State Aura */
.fairy-flying-avatar-wrapper.guiding,
.fairy-flying-avatar-wrapper[data-state="GUIDING"] {
  filter: drop-shadow(0 0 45px rgba(56, 189, 248, 1)) drop-shadow(0 0 65px rgba(168, 85, 247, 0.95)) drop-shadow(0 0 85px rgba(245, 215, 127, 0.9));
}

.fairy-flying-avatar-wrapper.guiding .fairy-magic-wand-flare {
  transform: scale(1.6);
  box-shadow: 0 0 25px #38bdf8, 0 0 45px #f5d77f, 0 0 65px #a855f7;
}

@keyframes fairyMagicSpin {
  0% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.18) rotate(-14deg) translateY(-22px); }
  70% { transform: scale(1.12) rotate(374deg) translateY(-10px); }
  100% { transform: scale(1) rotate(360deg) translateY(0); }
}

@keyframes fairySpeakingBounce {
  0% { transform: translateY(-4px) scale(1); }
  100% { transform: translateY(-16px) scale(1.05) rotate(2deg); }
}

/* --- Transparent Full Body Character Cutout --- */
.fairy-figure-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  pointer-events: auto;
  transform-style: preserve-3d;
}

.fairy-fullbody-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  pointer-events: auto;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.85)) drop-shadow(0 0 35px rgba(168, 85, 247, 0.65)) drop-shadow(0 0 50px rgba(245, 215, 127, 0.45));
  animation: fairyBreathingGlow 3.5s ease-in-out infinite alternate;
}

@keyframes fairyBreathingGlow {
  0% {
    filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.75)) drop-shadow(0 0 28px rgba(168, 85, 247, 0.55));
  }
  100% {
    filter: drop-shadow(0 0 28px rgba(56, 189, 248, 0.98)) drop-shadow(0 0 48px rgba(168, 85, 247, 0.9)) drop-shadow(0 0 65px rgba(245, 215, 127, 0.65));
  }
}

/* --- Glowing Hand Stardust Flares --- */
.fairy-magic-wand-flare {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 18px #d946ef, 0 0 32px #38bdf8, 0 0 45px #f5d77f;
  animation: wandFlarePulse 2s ease-in-out infinite alternate;
  pointer-events: none;
}

.fairy-magic-wand-flare.flare-hand-left {
  top: 31%;
  left: 20%;
  animation-delay: 0s;
}

.fairy-magic-wand-flare.flare-hand-right {
  top: 52%;
  right: 18%;
  animation-delay: 0.7s;
  background: #e879f9;
  box-shadow: 0 0 18px #e879f9, 0 0 32px #38bdf8, 0 0 45px #a855f7;
}

@keyframes wandFlarePulse {
  0% { transform: scale(0.7); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 1; }
}

/* --- Floating Fairy Ambient Aura Glow --- */
.fairy-floating-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28) 0%, rgba(168, 85, 247, 0.2) 45%, rgba(245, 215, 127, 0.12) 70%, transparent 85%);
  filter: blur(22px);
  z-index: 2;
  pointer-events: none;
}

/* Shimmering Wing Light Layer */
.fairy-wing-shimmer-glow {
  position: absolute;
  top: 10%;
  left: 5%;
  right: 5%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.35) 0%, rgba(168, 85, 247, 0.25) 50%, transparent 75%);
  filter: blur(16px);
  animation: wingShimmerPulse 2.8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes wingShimmerPulse {
  0% { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1.18); opacity: 0.95; }
}

/* --- Continuous Magic Sparkle Particles Trail --- */
.fairy-stardust-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

.fairy-trail-particle {
  position: fixed;
  pointer-events: none;
  font-size: 1.15rem;
  color: #f5d77f;
  animation: fadeFlySparkle 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  filter: drop-shadow(0 0 6px #f5d77f) drop-shadow(0 0 14px #38bdf8);
}

@keyframes fadeFlySparkle {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(0.6) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(var(--x, -35px), var(--y, 45px)) scale(1.6) rotate(240deg);
  }
}

/* ==========================================================================
   INTELLIGENT CARTOON SPEECH BUBBLE WITH ARABIC TTS & SPRING POP-IN
   ========================================================================== */
.fairy-speech-bubble {
  position: absolute;
  bottom: 25px;
  right: 195px;
  left: auto;
  width: 340px;
  max-width: calc(100vw - 50px);
  background: rgba(10, 12, 26, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 2px solid #8b5cf6;
  border-radius: 22px 22px 6px 22px;
  padding: 16px 18px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.95),
    0 0 30px rgba(139, 92, 246, 0.35),
    0 0 15px rgba(56, 189, 248, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.85);
  transform-origin: bottom right;
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              visibility 0.35s;
  z-index: 10;
  pointer-events: auto;
  direction: rtl;
}

.fairy-speech-bubble.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Bubble Top Navigation Bar */
.bubble-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  border-bottom: 1px dashed rgba(139, 92, 246, 0.4);
  padding-bottom: 8px;
}

.bubble-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bubble-fairy-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 12px rgba(229, 193, 88, 0.6);
  flex-shrink: 0;
  overflow: hidden;
  background: #0d0f1f;
}

.fairy-mini-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bubble-author {
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

/* Bubble Header Action Tools (TTS, Mute, Close) */
.bubble-header-tools {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bubble-tool-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(229, 193, 88, 0.3);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bubble-tool-btn:hover {
  background: rgba(229, 193, 88, 0.25);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: scale(1.1);
}

.bubble-tool-btn.tts-btn {
  color: var(--cyan-neon);
  border-color: rgba(56, 189, 248, 0.4);
}

.bubble-tool-btn.tts-btn.speaking {
  background: rgba(56, 189, 248, 0.3);
  color: #fff;
  border-color: var(--cyan-neon);
  animation: ttsPulse 1s infinite alternate;
}

@keyframes ttsPulse {
  0% { transform: scale(1); box-shadow: 0 0 5px var(--cyan-neon); }
  100% { transform: scale(1.15); box-shadow: 0 0 15px var(--cyan-neon); }
}

.bubble-close-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bubble-close-btn:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  border-color: #ef4444;
  transform: scale(1.1);
}

/* Context Badge Pill */
.bubble-context-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.45);
  color: #d8b4fe;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

/* Bubble Content Text */
.bubble-text {
  font-size: 0.88rem;
  color: #f1f5f9;
  line-height: 1.65;
  margin-bottom: 12px;
}

.bubble-text strong {
  color: var(--gold-light);
}

/* Bubble Actions & CTA */
.bubble-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bubble-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(229, 193, 88, 0.25), rgba(168, 85, 247, 0.35));
  border: 1px solid var(--gold-border);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  text-decoration: none;
}

.bubble-action-btn:hover {
  background: var(--gold-gradient);
  color: #07080f;
  transform: translateX(-3px);
  box-shadow: 0 0 15px rgba(229, 193, 88, 0.5);
}

/* Cartoon Bubble Tail (Pointing Right toward Kira) */
.bubble-tail {
  position: absolute;
  bottom: 28px;
  right: -12px;
  left: auto;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #8b5cf6;
}

.bubble-tail::after {
  content: '';
  position: absolute;
  top: -8px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid rgba(10, 12, 26, 0.97);
}

/* ==========================================================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
  .floating-fairy-guide {
    position: fixed;
    bottom: 15px;
    right: 12px;
    left: auto;
    width: auto;
    height: auto;
  }
  .fairy-flying-avatar-wrapper {
    width: 110px;
    height: 165px;
  }
  .fairy-speech-bubble {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    left: auto;
    width: calc(100vw - 28px);
    max-width: 320px;
    padding: 14px;
    border-radius: 20px 20px 4px 20px;
    transform-origin: bottom right;
  }
  .bubble-tail {
    bottom: -11px;
    right: 35px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #8b5cf6;
    border-bottom: none;
  }
  .bubble-tail::after {
    top: -14px;
    right: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid rgba(10, 12, 26, 0.97);
    border-bottom: none;
  }
  .floating-whatsapp {
    bottom: 15px;
    left: 12px;
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }
}
