/* =======================================================
   منصة مستر أدهم رشدي - Stylesheet
   Modern, Dark Luxury, Clean, High-Readability Theme
   ======================================================= */

:root {
  /* Color Palette */
  --bg-main: #070b12;
  --bg-card: #0d1524;
  --bg-card-hover: #121c30;
  --bg-surface: #101a2e;
  --bg-glass: rgba(13, 21, 36, 0.75);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(245, 158, 11, 0.4);
  
  /* Brand Accents (Gold / Warm Glow) */
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.25);
  
  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #fbbf24;
  
  /* Functional Colors */
  --whatsapp-green: #25d366;
  --whatsapp-hover: #20ba5a;
  --accent-blue: #38bdf8;
  --accent-purple: #a855f7;
  --success: #10b981;
  
  /* Typography */
  --font-heading: 'Alexandria', 'Cairo', sans-serif;
  --font-body: 'Cairo', sans-serif;
  
  /* Shadows & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(245, 158, 11, 0.25);
  
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ================= Global Container ================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ================= Typography Utilities ================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

.text-gold {
  color: var(--gold-light) !important;
}

.text-success {
  color: var(--success) !important;
}

.w-100 {
  width: 100%;
}

.mt-3 {
  margin-top: 1rem;
}

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #0b0f17;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #090e17;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gold-light);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp-subtle {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #4ade80;
}

.btn-whatsapp-subtle:hover {
  background: var(--whatsapp-green);
  color: #0b0f17;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 13px 28px;
  font-size: 1.05rem;
}

/* ================= Header / Navbar ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 18, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 500;
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ================= Hero Section ================= */
.hero-section {
  position: relative;
  padding: 60px 0 90px;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -150px;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(7, 11, 18, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 580px;
}

/* Key Pillars */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 10px 0;
}

.pillar-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.pillar-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.pillar-text {
  display: flex;
  flex-direction: column;
}

.pillar-text strong {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 700;
}

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

/* CTA Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 5px;
}

/* Quick Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(13, 21, 36, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-top: 15px;
  backdrop-filter: blur(10px);
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: var(--border-subtle);
}

/* ================= Teacher Image Frame ================= */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.image-ambient-ring {
  position: absolute;
  inset: -15px;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0) 70%);
  filter: blur(25px);
  z-index: 0;
}

.image-frame {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.2);
  background: #090e17;
  transition: var(--transition);
}

.image-frame:hover {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.35);
}

.teacher-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-frame:hover .teacher-image {
  transform: scale(1.02);
}

/* Floating Badges on Hero Image */
.floating-badge {
  position: absolute;
  z-index: 2;
  background: rgba(13, 21, 36, 0.92);
  border: 1px solid rgba(245, 158, 11, 0.3);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatUpDown 4s ease-in-out infinite;
}

.badge-top-right {
  top: 20px;
  right: -20px;
}

.badge-bottom-left {
  bottom: 25px;
  left: -20px;
  animation-delay: 2s;
}

.floating-badge i {
  font-size: 1.25rem;
}

.floating-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.floating-badge small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ================= General Section Styles ================= */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ================= Stages Section ================= */
.stages-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, #0a101d 100%);
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.stages-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.stage-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.stage-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stage-card-featured {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(180deg, #131c33 0%, #0d1527 100%);
  box-shadow: 0 10px 35px rgba(245, 158, 11, 0.2);
}

.stage-featured-ribbon {
  position: absolute;
  top: -14px;
  left: 28px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}

.stage-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  width: fit-content;
}

.stage-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.stage-title {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.stage-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  min-height: 42px;
}

.stage-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.stage-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.stage-features li i {
  color: var(--gold-light);
  margin-top: 4px;
  font-size: 0.85rem;
}

.stage-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.stage-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.stage-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-stage-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.btn-stage-select:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ================= Books & Study Guides Store ================= */
.books-section {
  background: linear-gradient(180deg, #0a101d 0%, var(--bg-main) 100%);
  position: relative;
  overflow: hidden;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto 50px;
}

.book-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition);
}

.book-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.book-card-popular {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(180deg, #121c32 0%, #0d1525 100%);
}

.book-popular-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.book-cover-wrap {
  display: flex;
  justify-content: center;
  perspective: 1000px;
  padding: 10px 0;
}

.book-cover-3d {
  position: relative;
  width: 200px;
  height: 270px;
  border-radius: 12px;
  box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.15);
  transform: rotateY(-12deg) rotateX(4deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.book-card:hover .book-cover-3d {
  transform: rotateY(0deg) rotateX(0deg) scale(1.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.3);
}

.book-cover-grade1 {
  background: linear-gradient(135deg, #1e293b 0%, #090f1b 100%);
}

.book-cover-grade2 {
  background: linear-gradient(135deg, #2a1f42 0%, #0e1222 100%);
}

.book-spine {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(255,255,255,0.1), rgba(0,0,0,0.4));
  z-index: 2;
}

.book-front {
  padding: 24px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.book-badge-mini {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.book-icon-symbol {
  font-size: 2.2rem;
  color: var(--gold-light);
  margin: 8px 0;
}

.book-front h4 {
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 2px;
}

.book-front p {
  font-size: 0.75rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.book-author {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 6px;
  width: 100%;
}

.book-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.book-grade-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.book-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
}

.book-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0 12px;
}

.book-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.book-features li i {
  margin-top: 4px;
}

.book-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
  gap: 14px;
}

.book-price-wrap {
  display: flex;
  flex-direction: column;
}

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

.book-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
}

.book-price small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Perks Strip */
.books-perks-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.perk-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.perk-text {
  display: flex;
  flex-direction: column;
}

.perk-text strong {
  font-size: 0.92rem;
  color: var(--text-primary);
}

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

.perk-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

@media (max-width: 1024px) {
  .books-grid {
    grid-template-columns: 1fr;
  }
  .books-perks-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .perk-divider {
    display: none;
  }
}

/* ================= Features Grid ================= */
.features-section {
  background: var(--bg-main);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.03));
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================= Interactive Quiz Box ================= */
.quiz-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, #0a1220 100%);
}

.quiz-box {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.1);
}

.quiz-header {
  text-align: center;
  margin-bottom: 30px;
}

.quiz-title {
  font-size: 1.8rem;
  margin: 12px 0 6px;
}

.quiz-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.quiz-body {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.quiz-question-box h4 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  line-height: 1.5;
  color: var(--text-primary);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.quiz-option:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
}

.quiz-option.correct {
  background: rgba(16, 185, 129, 0.15) !important;
  border-color: var(--success) !important;
  color: #34d399 !important;
}

.quiz-option.incorrect {
  background: rgba(239, 68, 68, 0.15) !important;
  border-color: #ef4444 !important;
  color: #f87171 !important;
}

.quiz-feedback {
  margin-top: 15px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  line-height: 1.6;
  display: none;
}

.quiz-feedback.show {
  display: block;
}

.quiz-feedback.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #a7f3d0;
}

.quiz-feedback.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fecaca;
}

.quiz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

/* ================= Testimonials ================= */
.testimonials-section {
  background: var(--bg-main);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-4px);
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  display: flex;
  gap: 4px;
}

.testi-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
  font-style: italic;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

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

/* ================= FAQ ================= */
.faq-container {
  max-width: 840px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.35);
  background: var(--bg-surface);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: right;
}

.faq-arrow {
  font-size: 0.85rem;
  color: var(--gold-light);
  transition: transform 0.3s ease;
}

.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 {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ================= CTA Banner ================= */
.cta-banner {
  padding: 40px 0 80px;
}

.cta-card {
  background: linear-gradient(135deg, #15223c 0%, #0d172a 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  padding: 45px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-content h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ================= FOOTER (MATCHING USER SCREENSHOT) ================= */
.site-footer {
  background: #090e18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 0;
  color: #cbd5e1;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.heading-line {
  width: 44px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.line-gold {
  background: #f59e0b;
}

.line-amber {
  background: #f59e0b;
}

.line-blue {
  background: #3b82f6;
}

/* Contact Info Items */
.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.contact-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-label {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 2px;
}

.contact-value {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.contact-value:hover {
  color: var(--gold-light);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #141c2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* WhatsApp Footer Button - Exactly matching green button in screenshot */
.footer-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #10b981;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transition: var(--transition);
  max-width: 290px;
}

.footer-whatsapp-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
  color: #ffffff;
}

.footer-whatsapp-btn i {
  font-size: 1.3rem;
}

/* Footer Links Lists */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list li a {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: #ffffff;
  transform: translateX(-4px);
}

/* Bottom Copyright Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* ================= MODALS ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0d1525;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 34px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 20px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  color: #ffffff;
}

.auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.auth-tab.active {
  background: var(--bg-surface);
  color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group input, .form-group select {
  background: #090e17;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-help {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
}

.form-help a {
  color: var(--gold-light);
}

/* Video Modal */
.modal-video-card {
  max-width: 720px;
  padding: 24px;
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f1c35 0%, #060b13 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-play-huge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.video-play-huge:hover {
  transform: scale(1.1);
  background: var(--gold-light);
}

.video-info-overlay {
  margin-top: 20px;
  text-align: center;
}

.video-info-overlay h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.video-info-overlay p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.modal-video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.modal-video-footer p {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* ================= Responsive Queries ================= */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    width: 100%;
    justify-content: space-around;
  }

  .stages-grid, .features-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col-contact {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #090e18;
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px;
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .floating-badge {
    position: static;
    margin-top: 12px;
  }

  .stages-grid, .features-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-col-contact {
    grid-column: span 1;
  }

  .hero-stats {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .stat-divider {
    display: none;
  }

  .modal-video-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ================= Custom Popup Alert Modal ================= */
.custom-alert-card {
  max-width: 440px;
  text-align: center;
  padding: 36px 28px 28px;
}

.alert-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
  animation: bounceIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alert-icon-wrapper.success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}

.alert-icon-wrapper.warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  border-color: rgba(245, 158, 11, 0.3);
}

.alert-icon-wrapper.error {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.3);
}

.custom-alert-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.custom-alert-message {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  white-space: pre-line;
}

.custom-alert-actions {
  display: flex;
  gap: 12px;
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Toast Container */
.toast-container {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-item {
  background: #0d1525;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  color: #ffffff;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  animation: slideInLeft 0.3s ease;
  min-width: 280px;
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ================= Floating Live Support Chat Widget ================= */
.chat-widget-wrapper {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 900;
  direction: rtl;
}

.chat-widget-toggle {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #000;
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.chat-widget-toggle:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

.chat-toggle-icon {
  font-size: 1.25rem;
}

.chat-pulse-ring {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #000;
}

.chat-window {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 360px;
  height: 480px;
  background: #0b1120;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  background: #111a2e;
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.agent-avatar {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-primary);
}

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

.agent-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border: 2px solid #111a2e;
  border-radius: 50%;
}

.chat-agent-info strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
}

.chat-agent-info small {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
}

.chat-close-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.4rem;
  cursor: pointer;
}

.chat-messages-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

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

.chat-msg-bot .msg-bubble {
  background: #162238;
  color: #f1f5f9;
  border-radius: 16px 16px 16px 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.chat-msg-user .msg-bubble {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000;
  font-weight: 600;
  border-radius: 16px 16px 4px 16px;
}

.msg-bubble {
  padding: 10px 14px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.msg-bubble p {
  margin-bottom: 4px;
}

.msg-bubble p:last-child {
  margin-bottom: 0;
}

.msg-time {
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 4px;
  padding: 0 4px;
}

.chat-quick-suggestions {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.quick-btn {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold-light);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s;
}

.quick-btn:hover {
  background: var(--gold-light);
  color: #000;
}

.chat-input-form {
  padding: 10px 14px;
  background: #111a2e;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-input-form input {
  flex: 1;
  background: #080d17;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}

.chat-input-form input:focus {
  border-color: var(--gold-primary);
}

.btn-send-msg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.btn-send-msg:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .chat-window {
    width: calc(100vw - 32px);
    left: -10px;
  }
}
