/* ═══════════════════════════════════════════════════════════════════════════
   THEME: LUXURY ROYAL PURPLE & RADIANT SUNSET GOLD
   AUTHORITY: شركة فيصل عمر بانواس للخدمات العامة
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Cairo:wght@600;700;800;900&display=swap');

:root {
  /* Royal Imperial Purple */
  --purple-950: #120524;
  --purple-900: #190a32;
  --purple-850: #240e46;
  --purple-800: #351364;
  --purple-700: #581c87;
  --purple-600: #7e22ce;
  --purple-500: #9333ea;
  --purple-400: #a855f7;
  --purple-100: #f3e8ff;
  --purple-50:  #faf5ff;

  /* Radiant Sunset Amber & Gold */
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-400: #fbbf24;
  --gold-300: #fde047;
  --gold-100: #fef3c7;
  --gold-50:  #fffbeb;

  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  --purple-gradient: linear-gradient(135deg, #240e46 0%, #4c1d95 60%, #6b21a8 100%);
  
  /* Backgrounds & Text */
  --bg-page: #f8f6fc;
  --bg-white: #ffffff;
  --bg-section-alt: #f1ecf9;
  --bg-hero: linear-gradient(145deg, #150629 0%, #260c49 50%, #3d146e 100%);

  --text-primary: #190a32;
  --text-secondary: #4a3e63;
  --text-muted: #786894;
  --text-light: #f5eaff;

  /* Borders & Shadows */
  --border-light: rgba(126, 34, 206, 0.12);
  --border-gold: rgba(245, 158, 11, 0.35);
  --shadow-sm: 0 2px 8px rgba(25, 10, 50, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(25, 10, 50, 0.08), 0 8px 10px -6px rgba(25, 10, 50, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(25, 10, 50, 0.12);
  --shadow-gold: 0 8px 20px -4px rgba(245, 158, 11, 0.4);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

body {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-page);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  min-width: 320px;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

a {
  color: var(--purple-700);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--gold-600);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS (ROYAL GOLD & PURPLE OUTLINES)
   ═══════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.92rem;
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient) !important;
  color: #190a32 !important;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(245, 158, 11, 0.6);
  color: #000 !important;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fde047;
  border: 1px solid rgba(251, 191, 36, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: #fbbf24;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--purple-gradient);
  color: #fff;
  box-shadow: 0 6px 18px rgba(76, 29, 149, 0.25);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(76, 29, 149, 0.4);
  color: #fff;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.badge-gold {
  background: var(--gold-100);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.badge-purple {
  background: var(--purple-100);
  color: var(--purple-700);
  border: 1px solid rgba(126, 34, 206, 0.2);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 10px #fbbf24;
  animation: pulseGold 2s infinite;
  flex-shrink: 0;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR (CLEAN, NO CLIPPING, PROPORTIONED)
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #190a32;
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 4px 20px rgba(15, 4, 32, 0.5);
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.2rem;
}

.brand {
  flex-shrink: 1;
  min-width: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #f59e0b;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.45);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.06);
}

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

.brand-name {
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.72rem;
  color: #fbbf24;
  font-weight: 600;
  white-space: nowrap;
}

/* Desktop Navigation Menu */
.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-shrink: 1;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.35rem 0.25rem;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.nav-links a:hover {
  color: #fbbf24;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-cta {
  padding: 0.48rem 1.05rem;
  font-size: 0.85rem;
}

.nav-admin {
  padding: 0.48rem 0.9rem;
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DROPDOWN MENU (USER / AUTH / ADMIN)
   ═══════════════════════════════════════════════════════════════════════════ */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.48rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-md);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 8px);
  min-width: 200px;
  background: #190a32;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(245, 158, 11, 0.15);
  padding: 0.5rem 0;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  color: #f5eaff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  padding-right: 1.4rem;
}

.dropdown-item.item-logout:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.dropdown-item.item-admin {
  color: #fde047;
}

.dropdown-divider {
  height: 1px;
  background: rgba(245, 158, 11, 0.25);
  margin: 0.4rem 0;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.mobile-toggle:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: #fbbf24;
}

.mobile-toggle .bar {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE DRAWER (STRICTLY HIDDEN ON DESKTOP)
   ═══════════════════════════════════════════════════════════════════════════ */
.mobile-menu-drawer {
  display: none; /* Never visible on desktop */
}

@media (max-width: 1140px) {
  .nav-links, .nav-actions {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .mobile-menu-drawer {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #190a32;
    border-left: 1px solid rgba(245, 158, 11, 0.25);
    z-index: 9999;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.7);
  }
  .mobile-menu-drawer.open {
    right: 0 !important;
  }
}

.drawer-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(13, 4, 26, 0.6);
}

.drawer-title {
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drawer-close {
  background: transparent;
  border: none;
  color: #fbbf24;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.5rem;
}

.drawer-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow-y: auto;
  flex: 1;
}

.drawer-link {
  color: #f5eaff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.drawer-link:hover {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  transform: translateX(-4px);
}

.drawer-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.mobile-menu-backdrop {
  display: none;
}

@media (max-width: 1080px) {
  .mobile-menu-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .mobile-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  background: var(--bg-hero);
  color: #ffffff;
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg-page), transparent);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  font-weight: 900;
  line-height: 1.35;
  color: #ffffff;
}

.hero-desc {
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: #f5eaff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.trust-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 158, 11, 0.25);
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: 'Cairo', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1.2;
}

.metric-lbl {
  font-size: 0.82rem;
  color: #e9d5ff;
  font-weight: 500;
  white-space: nowrap;
}

/* WhatsApp Mockup Box */
.hero-card-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.whatsapp-card-mockup {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 30px rgba(126, 34, 206, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-header {
  background: linear-gradient(135deg, #190a32 0%, #351364 100%);
  color: #fff;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
}

.mockup-avatar {
  font-size: 1.6rem;
  background: rgba(245, 158, 11, 0.2);
  padding: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
}

.verified-badge {
  font-size: 0.72rem;
  color: #fbbf24;
}

.mockup-body {
  background: #f8f6fc;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 200px;
}

.chat-bubble {
  background: #ffffff;
  color: #190a32;
  padding: 0.8rem 1rem;
  border-radius: 12px 12px 12px 2px;
  font-size: 0.88rem;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(25, 10, 50, 0.06);
  position: relative;
  border: 1px solid var(--border-light);
}

.chat-bubble.promo {
  background: #fffbeb;
  border-right: 3px solid #f59e0b;
}

.chat-time {
  display: block;
  font-size: 0.7rem;
  color: #786894;
  text-align: left;
  margin-top: 0.3rem;
}

.mockup-footer {
  background: #f1ecf9;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: #4a3e63;
  border-top: 1px solid var(--border-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION GENERAL
   ═══════════════════════════════════════════════════════════════════════════ */
.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--purple-700);
  background: var(--purple-100);
  padding: 0.3rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 0.8rem;
  white-space: nowrap;
}

.section-head h2 {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES & POSTS GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--bg-page);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(245, 158, 11, 0.15);
}

.srv-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  gap: 0.5rem;
}

.srv-icon {
  font-size: 2.2rem;
  width: 54px;
  height: 54px;
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.srv-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--bg-section-alt);
  padding-top: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.business-info-list, .check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.business-info-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.business-info-list strong {
  color: var(--text-primary);
  min-width: 100px;
}

.check-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DISCLOSURE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.disclosure-section {
  background: var(--bg-page);
}

.disclosure-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.8rem;
  box-shadow: var(--shadow-md);
}

.disclosure-header {
  margin-bottom: 1.5rem;
}

.whatsapp-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 0.8rem;
  white-space: nowrap;
}

.disclosure-header h2 {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--text-primary);
}

.disclosure-content > p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.policy-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.p-item {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.p-item h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--purple-800);
  margin-bottom: 0.5rem;
}

.p-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUBSCRIBE FORM SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.subscribe-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.form-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-page);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.input-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.input-group input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(126, 34, 206, 0.2);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.input-group input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.input-group input::placeholder {
  color: var(--text-muted);
}

.consent-checkbox-wrapper {
  margin-bottom: 1.5rem;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.checkbox-container input {
  margin-top: 0.3rem;
  accent-color: var(--gold-500);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-weight: 700;
}

.alert-error, .alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg-page);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.c-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.contact-card h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING ACTION BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: var(--gold-gradient);
  color: #190a32;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 0.92rem;
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.floating-wa-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.6);
  color: #000;
}

.floating-wa-btn .wa-icon {
  font-size: 1.3rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--purple-950);
  color: #f5eaff;
  padding-top: 4rem;
  border-top: 1px solid rgba(245, 158, 11, 0.25);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #d8b4fe;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: #d8b4fe;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #fbbf24;
}

.footer-bottom {
  background: #0b0217;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: #a78bfa;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.disclaimer {
  color: #fbbf24;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MEDIA QUERIES FOR FULL RESPONSIVENESS
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1140px) {
  .nav-container {
    height: 78px;
    padding: 0 0.5rem;
    justify-content: space-between;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-card-wrapper {
    justify-content: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .trust-metrics {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .nav-container {
    height: 68px;
    gap: 0.5rem;
    padding: 0 0.8rem;
  }
  .brand-link {
    gap: 0.6rem;
  }
  .brand-logo-img {
    width: 40px;
    height: 40px;
  }
  .brand-text {
    max-width: calc(100vw - 120px);
    overflow: hidden;
  }
  .brand-name {
    font-size: 0.88rem;
    line-height: 1.25;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .brand-tag {
    font-size: 0.68rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .mobile-toggle {
    width: 38px;
    height: 38px;
    padding: 6px;
  }
  .hero {
    padding: 2.2rem 0 3.2rem;
  }
  .hero-content {
    gap: 1.1rem;
  }
  .badge-pill {
    font-size: 0.82rem;
    padding: 0.35rem 0.9rem;
  }
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.35;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .trust-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-top: 1.2rem;
    text-align: center;
  }
  .metric {
    align-items: center;
  }
  .metric-num {
    font-size: 1.4rem;
  }
  .metric-lbl {
    font-size: 0.75rem;
    white-space: normal;
    line-height: 1.3;
  }
  .section {
    padding: 2.8rem 0;
  }
  .section-head {
    margin-bottom: 1.8rem;
  }
  .form-card {
    padding: 1.8rem 1rem;
    border-radius: var(--radius-lg);
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .disclosure-box {
    padding: 1.6rem 1rem;
    border-radius: var(--radius-lg);
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .floating-wa-btn .wa-text {
    display: none;
  }
  .floating-wa-btn {
    padding: 0.8rem;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
    left: auto;
    width: 48px;
    height: 48px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 64px;
    padding: 0 0.5rem;
  }
  .brand-logo-img {
    width: 36px;
    height: 36px;
  }
  .brand-text {
    max-width: calc(100vw - 100px);
  }
  .brand-name {
    font-size: 0.82rem;
  }
  .brand-tag {
    font-size: 0.62rem;
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .hero-desc {
    font-size: 0.9rem;
  }
  .btn-lg {
    padding: 0.75rem 1.2rem;
    font-size: 0.92rem;
  }
  .metric-num {
    font-size: 1.25rem;
  }
  .metric-lbl {
    font-size: 0.7rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   INTERACTIVE SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 0%;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LIVE ACTIVITY TICKER
   ═══════════════════════════════════════════════════════════════════════════ */
.live-activity-ticker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fbbf24;
  overflow: hidden;
  max-width: 100%;
  backdrop-filter: blur(8px);
}

.ticker-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: tickerPulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes tickerPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.ticker-label {
  color: #fde68a;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-content {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.ticker-item {
  display: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: tickerFadeIn 0.5s ease;
}

.ticker-item.active {
  display: block;
}

@keyframes tickerFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATED COUNT-UP METRICS (initial hidden state, JS removes class)
   ═══════════════════════════════════════════════════════════════════════════ */
.count-up {
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for grid children */
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE SEARCH & FILTER BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.services-filter-wrapper {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.services-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 0 1.2rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}

.services-search-box:focus-within {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.search-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  opacity: 0.6;
}

.services-search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem 0.8rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: transparent;
  color: var(--text-primary);
  direction: rtl;
}

.services-search-box input::placeholder {
  color: var(--text-muted);
}

.clear-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text-muted);
  padding: 0.2rem 0.4rem;
  border-radius: 50%;
  transition: all 0.2s;
  line-height: 1;
  flex-shrink: 0;
}

.clear-search-btn:hover {
  background: var(--bg-section-alt);
  color: var(--purple-700);
}

/* Category Filter Pills */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.87rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-secondary);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.pill-btn:hover {
  border-color: var(--gold-400);
  color: var(--purple-800);
  background: var(--gold-50);
  transform: translateY(-2px);
}

.pill-btn.active {
  background: var(--purple-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(76, 29, 149, 0.35);
  transform: translateY(-2px);
}

.filter-status-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.results-counter {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.results-counter strong {
  color: var(--purple-700);
  font-size: 1rem;
}

/* Hiding / showing service cards with transition */
.service-card.hidden-card {
  display: none;
}

.service-card.entering {
  animation: cardEnter 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardEnter {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE CARD — 3D TILT & GOLD SHIMMER EFFECT (JS-driven via style attr)
   ═══════════════════════════════════════════════════════════════════════════ */
.service-card {
  will-change: transform;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(245, 158, 11, 0.07) 50%,
    transparent 60%
  );
  background-size: 300% 300%;
  transition: background-position 0.5s ease, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
}

.service-card:hover::after {
  opacity: 1;
  animation: cardShimmer 2s linear infinite;
}

@keyframes cardShimmer {
  0%   { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROCESS / HOW IT WORKS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.process-section {
  background: linear-gradient(135deg, #150629 0%, #260c49 50%, #3d146e 100%);
  color: #fff;
}

.process-section .section-tag {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.process-section .section-head h2 {
  color: #ffffff;
}

.process-section .section-head p {
  color: #e9d5ff;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  position: relative;
}

/* Connecting line between steps (desktop) */
.process-steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(245,158,11,0.1), rgba(245,158,11,0.5), rgba(245,158,11,0.1));
  z-index: 0;
}

@media (max-width: 768px) {
  .process-steps-grid::before {
    display: none;
  }
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  cursor: default;
}

.step-card:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.2);
}

.step-badge {
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #190a32;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.6);
  z-index: 2;
}

.step-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.15) rotate(-5deg);
}

.step-card h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.step-card p {
  font-size: 0.92rem;
  color: #d8b4fe;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ ACCORDION SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

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

.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.open {
  border-color: var(--border-gold);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
  direction: rtl;
  transition: background 0.2s, color 0.2s;
}

.faq-question:hover {
  background: rgba(245, 158, 11, 0.05);
}

.faq-item.open .faq-question {
  color: var(--purple-800);
  background: rgba(245, 158, 11, 0.07);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-500);
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  width: 24px;
  text-align: center;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.8;
  direction: rtl;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BACK TO TOP BUTTON WITH CIRCULAR PROGRESS
   ═══════════════════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  left: 25px;
  width: 48px;
  height: 48px;
  background: #190a32;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  stroke-dasharray: 132;
  stroke-dashoffset: 132;
  transition: stroke-dashoffset 0.1s linear;
  stroke-linecap: round;
}

.arrow-up {
  color: #fbbf24;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.back-to-top:hover .arrow-up {
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL TOAST NOTIFICATION SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}

.toast {
  background: #190a32;
  color: #f5eaff;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  border-right: 4px solid #fbbf24;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  min-width: 220px;
  max-width: 320px;
  direction: rtl;
  animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.toast.toast-success { border-color: #22c55e; }
.toast.toast-error   { border-color: #ef4444; }
.toast.toast-info    { border-color: #60a5fa; }

.toast.toast-out {
  animation: toastOut 0.35s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-30px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COPY BUTTON — CONTACT CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--purple-700);
  background: var(--purple-100);
  border: 1px solid rgba(126, 34, 206, 0.2);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
}

.btn-copy:hover {
  background: var(--purple-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 29, 149, 0.3);
}

.btn-copy.copied {
  background: #d1fae5;
  color: #065f46;
  border-color: #10b981;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR — SCROLL SHADOW & SCROLLED CLASS
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar.scrolled {
  background: rgba(25, 10, 50, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(245, 158, 11, 0.2);
}

/* WhatsApp mockup card — subtle entry animation */
#heroInteractiveCard {
  animation: cardFloat 6s ease-in-out infinite;
}

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

/* Highlight effect on active nav link based on scroll position */
.nav-item.active-section {
  color: #fbbf24 !important;
}

/* Focus visible for accessibility */
.faq-question:focus-visible,
.pill-btn:focus-visible,
.btn-copy:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR — ACTIVE LINK UNDERLINE INDICATOR
   ═══════════════════════════════════════════════════════════════════════════ */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: #fbbf24;
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active-section::after {
  width: 100%;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    left: 15px;
  }
  .toast-container {
    right: 15px;
    bottom: 80px;
    max-width: calc(100vw - 30px);
  }
  .pill-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }
  .services-search-box input {
    font-size: 0.88rem;
  }
  .process-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step-card {
    padding: 1.8rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
  .category-pills {
    gap: 0.4rem;
  }
  .live-activity-ticker {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    gap: 0.4rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .badge-pill {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
}
