/* ============================================================
   HOUSE QUORA — Premium SaaS Landing Page
   style.css — Core Design System & All Sections
   Author: House Quora Engineering Team

   LOGO UTILITIES (used in navbar, footer, loader)
   ------------------------------------------------------------ */
.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  /* On dark footer, add a subtle white bg so the blue logo pops */
  background: rgba(255,255,255,0.92);
  padding: 4px 6px;
}

.loader-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}
/* Version: 1.0.0
   ============================================================ */

/* ------------------------------------------------------------ 
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --color-primary: #0F4C81;
  --color-primary-dark: #0a3560;
  --color-primary-light: #1a6db5;
  --color-primary-ultra-light: #e8f1fb;
  --color-secondary: #34A853;
  --color-secondary-dark: #258a3f;
  --color-secondary-light: #4ec46d;
  --color-accent: #FFC107;
  --color-accent-dark: #e0a800;

  /* Neutral Palette */
  --color-bg: #F8FAFC;
  --color-dark: #1F2937;
  --color-dark-2: #374151;
  --color-dark-3: #4B5563;
  --color-gray: #6B7280;
  --color-gray-light: #9CA3AF;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-primary: 0 10px 40px rgba(15,76,129,0.25);
  --shadow-card: 0 2px 20px rgba(0,0,0,0.06);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Indexes */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-overlay: 400;
  --z-toast: 500;
}

/* ------------------------------------------------------------ 
   2. CSS RESET & BASE STYLES
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: var(--font-body);
}

/* ------------------------------------------------------------ 
   3. UTILITY CLASSES
   ------------------------------------------------------------ */
.section-padding {
  padding: var(--space-24) 0;
}

.section-padding-sm {
  padding: var(--space-16) 0;
}

.bg-white { background-color: var(--color-white); }
.bg-gray { background-color: var(--color-bg); }
.bg-dark { background-color: var(--color-dark); }
.bg-primary { background-color: var(--color-primary); }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-gray); }
.text-white { color: var(--color-white); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ------------------------------------------------------------ 
   4. TYPOGRAPHY SYSTEM
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

.heading-display {
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.heading-xl {
  font-size: clamp(2rem, 3.5vw, var(--text-5xl));
  font-weight: 700;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-size: clamp(1.5rem, 2.5vw, var(--text-4xl));
  font-weight: 700;
}

.heading-md {
  font-size: clamp(1.25rem, 2vw, var(--text-3xl));
  font-weight: 600;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-ultra-light);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-label i {
  font-size: 0.7rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, var(--text-4xl));
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

.section-title span {
  color: var(--color-primary);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

/* ------------------------------------------------------------ 
   5. BUTTON SYSTEM
   ------------------------------------------------------------ */
.btn-hq {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn-hq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-hq:hover::before {
  opacity: 1;
}

.btn-primary-hq {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-primary);
}

.btn-primary-hq:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(15,76,129,0.35);
  color: var(--color-white);
}

.btn-secondary-hq {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary-hq:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-white-hq {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.btn-white-hq:hover {
  background: var(--color-primary-ultra-light);
  transform: translateY(-2px);
  color: var(--color-primary);
}

.btn-accent-hq {
  background: linear-gradient(135deg, var(--color-accent), #ffca28);
  color: var(--color-dark);
  border-color: var(--color-accent);
  box-shadow: 0 8px 30px rgba(255,193,7,0.35);
}

.btn-accent-hq:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255,193,7,0.4);
  color: var(--color-dark);
}

.btn-lg-hq {
  font-size: var(--text-base);
  padding: 0.9rem 2.25rem;
}

.btn-hq i {
  transition: transform var(--transition-base);
}

.btn-hq:hover i {
  transform: translateX(3px);
}

/* ------------------------------------------------------------ 
   6. NAVIGATION
   ------------------------------------------------------------ */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 1rem 0;
  transition: all var(--transition-slow);
  background: var(--color-white);
  box-shadow: 0 1px 15px rgba(0,0,0,0.05);
}

#mainNav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.875rem 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.08);
}

#mainNav .navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(15,76,129,0.3);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.nav-logo-text .brand-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#mainNav .nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-dark-2);
  padding: 0.4rem 0.85rem !important;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

#mainNav .nav-link:hover {
  color: var(--color-primary);
}

#mainNav .nav-link:hover::after {
  left: 10%;
  right: 10%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.btn-nav-login {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark-2);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  transition: all var(--transition-fast);
  background: transparent;
  cursor: pointer;
}

.btn-nav-login:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-ultra-light);
}

.btn-nav-demo {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border: none;
  box-shadow: 0 4px 15px rgba(15,76,129,0.3);
  transition: all var(--transition-base);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-nav-demo:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(15,76,129,0.4);
  color: var(--color-white);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 0.4rem;
  border-radius: var(--radius-md);
  color: var(--color-dark);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(15,76,129,0.2);
}

/* ------------------------------------------------------------ 
   7. HERO SECTION
   ------------------------------------------------------------ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f0f6ff 0%, #f8fafc 40%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

#hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(15,76,129,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52,168,83,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Hero grid pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(15,76,129,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,76,129,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: white;
  border: 1px solid rgba(15,76,129,0.12);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
  animation: fadeInDown 0.6s ease forwards;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-dark);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--color-primary), #2563eb, var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, var(--text-lg));
  color: var(--color-dark-3);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-gray);
  font-weight: 500;
}

.hero-trust-item i {
  color: var(--color-secondary);
  font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-dashboard-wrapper {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-dashboard-img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255,255,255,0.8);
}

/* Floating cards on hero */
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid var(--color-border-light);
  white-space: nowrap;
  z-index: 10;
}

.hero-float-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-float-card .card-label {
  font-size: var(--text-xs);
  color: var(--color-gray);
  font-weight: 500;
}

.hero-float-card .card-value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-dark);
  font-family: var(--font-heading);
}

.float-card-1 {
  top: 8%;
  left: -2%;
  animation: float 3s ease-in-out infinite;
}

.float-card-2 {
  bottom: 15%;
  left: -1%;
  animation: float 3.5s ease-in-out infinite 0.5s;
}

.float-card-3 {
  top: 30%;
  right: -2%;
  animation: float 4s ease-in-out infinite 1s;
}

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

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

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Hero scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gray-light);
  font-size: var(--text-xs);
  animation: bounce-arrow 2s ease-in-out infinite;
  cursor: pointer;
  z-index: 5;
}

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

/* ------------------------------------------------------------ 
   8. STATISTICS SECTION
   ------------------------------------------------------------ */
#stats {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  position: relative;
}

.stat-card + .stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 1.5rem;
  color: var(--color-accent);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition-base);
}

.stat-card:hover .stat-icon {
  background: rgba(255,255,255,0.18);
  transform: scale(1.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-number .suffix {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* ------------------------------------------------------------ 
   9. FEATURES SECTION
   ------------------------------------------------------------ */
#features {
  padding: var(--space-24) 0;
  background: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-5);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

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

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: 1.4rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.feature-desc {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.6;
}

/* Feature color variants */
.feat-blue .feature-icon-wrap { background: #e8f1fb; color: var(--color-primary); }
.feat-green .feature-icon-wrap { background: #e6f4ea; color: var(--color-secondary); }
.feat-orange .feature-icon-wrap { background: #fff8e1; color: #f57c00; }
.feat-red .feature-icon-wrap { background: #fce8e8; color: #d32f2f; }
.feat-purple .feature-icon-wrap { background: #f3e8fd; color: #7b1fa2; }
.feat-teal .feature-icon-wrap { background: #e0f7f4; color: #00897b; }
.feat-indigo .feature-icon-wrap { background: #e8eaf6; color: #3949ab; }
.feat-pink .feature-icon-wrap { background: #fce4ec; color: #c2185b; }

/* ------------------------------------------------------------ 
   10. DASHBOARD PREVIEW SECTION
   ------------------------------------------------------------ */
#dashboard-preview {
  padding: var(--space-24) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #eef2ff 100%);
  position: relative;
  overflow: hidden;
}

.dashboard-tabs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-white);
  padding: var(--space-2);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-8);
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}

.dashboard-tab-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-xl);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.dashboard-tab-btn i {
  font-size: 0.85rem;
}

.dashboard-tab-btn.active,
.dashboard-tab-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(15,76,129,0.25);
}

.dashboard-preview-frame {
  background: var(--color-white);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
}

.dashboard-frame-header {
  background: var(--color-dark);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.frame-dots {
  display: flex;
  gap: var(--space-2);
}

.frame-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28ca41; }

.frame-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.3rem 1rem;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  font-family: monospace;
}

.dashboard-preview-image {
  width: 100%;
  display: block;
}

/* ------------------------------------------------------------ 
   11. MOBILE APP SECTION
   ------------------------------------------------------------ */
#mobile-app {
  padding: var(--space-24) 0;
  background: var(--color-white);
}

.app-tabs {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.app-tab-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  background: transparent;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray);
  cursor: pointer;
  transition: all var(--transition-base);
}

.app-tab-btn.active,
.app-tab-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-ultra-light);
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.app-feature-item:hover {
  background: var(--color-bg);
}

.app-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: var(--color-primary-ultra-light);
  color: var(--color-primary);
}

.app-feature-title {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-1);
  font-size: var(--text-sm);
}

.app-feature-desc {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.6;
}

.app-store-badges {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-dark);
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.store-badge:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
  color: white;
}

.store-badge i {
  font-size: 1.6rem;
}

.store-badge-text .store-sub {
  font-size: 0.65rem;
  opacity: 0.75;
  letter-spacing: 0.05em;
  display: block;
}

.store-badge-text .store-name {
  font-size: var(--text-sm);
  font-weight: 700;
  display: block;
  letter-spacing: 0.01em;
}

.mobile-mockup-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-mockup-visual img {
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  max-height: 500px;
  object-fit: cover;
}

/* ------------------------------------------------------------ 
   12. WHY CHOOSE US SECTION
   ------------------------------------------------------------ */
#why-choose {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a5fa0 50%, var(--color-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

#why-choose::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") 0 0 / 100px 100px;
}

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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

.why-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 1.75rem;
  color: var(--color-accent);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform var(--transition-bounce);
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(-8deg);
  background: rgba(255,193,7,0.15);
  border-color: rgba(255,193,7,0.3);
}

.why-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.why-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ------------------------------------------------------------ 
   13. TESTIMONIALS SECTION
   ------------------------------------------------------------ */
#testimonials {
  padding: var(--space-24) 0;
  background: var(--color-white);
  overflow: hidden;
}

.testimonial-swiper {
  padding: var(--space-4) var(--space-2) var(--space-12) !important;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  height: auto;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary-ultra-light);
  font-weight: 900;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.test-stars i {
  color: var(--color-accent);
  font-size: var(--text-sm);
}

.test-quote {
  font-size: var(--text-base);
  color: var(--color-dark-2);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.test-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: white;
  flex-shrink: 0;
}

.test-name {
  font-weight: 700;
  color: var(--color-dark);
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

.test-role {
  font-size: var(--text-xs);
  color: var(--color-gray);
  font-weight: 500;
}

.test-society {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
}

/* Swiper custom styles */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--color-border);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ------------------------------------------------------------ 
   14. FAQ SECTION
   ------------------------------------------------------------ */
#faq {
  padding: var(--space-24) 0;
  background: var(--color-bg);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(15,76,129,0.2);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question.active {
  color: var(--color-primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-sm);
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.faq-question.active .faq-icon {
  background: var(--color-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.75;
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-4);
}

/* ------------------------------------------------------------ 
   15. CONTACT SECTION
   ------------------------------------------------------------ */
#contact {
  padding: var(--space-24) 0;
  background: var(--color-white);
}

.contact-info-card {
  background: var(--color-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.contact-info-heading {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-2);
}

.contact-info-subheading {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-detail-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: var(--text-sm);
  color: white;
  font-weight: 500;
}

.contact-detail-value a {
  color: white;
}

.contact-detail-value a:hover {
  color: var(--color-accent);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
}

.form-group-hq {
  margin-bottom: var(--space-5);
}

.form-label-hq {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark-2);
  margin-bottom: var(--space-2);
}

.form-control-hq {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-dark);
  background: var(--color-bg);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control-hq:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(15,76,129,0.1);
}

.form-control-hq::placeholder {
  color: var(--color-gray-light);
}

.form-select-hq {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

textarea.form-control-hq {
  resize: vertical;
  min-height: 110px;
}

/* Map Placeholder */
.map-placeholder {
  background: linear-gradient(135deg, var(--color-primary-ultra-light), #e8f5e9);
  border-radius: var(--radius-xl);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--color-primary);
  border: 2px dashed rgba(15,76,129,0.2);
  margin-top: var(--space-6);
  position: relative;
  z-index: 1;
}

.map-placeholder i {
  font-size: 2rem;
  opacity: 0.7;
}

.map-placeholder p {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  opacity: 0.8;
}

/* CTA Banner inside Contact */
.cta-banner {
  background: linear-gradient(135deg, var(--color-secondary), #2e9e4a);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-10);
  text-align: center;
  color: white;
  margin-top: var(--space-12);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
}

.cta-banner-subtitle {
  font-size: var(--text-base);
  opacity: 0.85;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------ 
   16. FOOTER
   ------------------------------------------------------------ */
#footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-16);
}

.footer-brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: white;
}

.footer-brand-tag {
  font-size: var(--text-xs);
  opacity: 0.6;
  display: block;
  font-weight: 500;
}

.footer-description {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links li a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-newsletter {
  margin-top: var(--space-4);
}

.footer-newsletter .newsletter-form {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.newsletter-input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-input:focus {
  border-color: var(--color-primary-light);
  background: rgba(255,255,255,0.1);
}

.newsletter-btn {
  padding: 0.65rem 1.1rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: var(--text-sm);
  font-weight: 600;
}

.newsletter-btn:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-5) 0;
  margin-top: var(--space-12);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-5);
}

.footer-legal-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--color-accent);
}

/* ------------------------------------------------------------ 
   17. MODAL — BOOK DEMO
   ------------------------------------------------------------ */
.modal-hq .modal-content {
  border: none;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}

.modal-hq .modal-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border: none;
  padding: var(--space-6) var(--space-8);
}

.modal-hq .modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: white;
  font-size: var(--text-xl);
}

.modal-hq .btn-close {
  filter: invert(1);
  opacity: 0.75;
}

.modal-hq .modal-body {
  padding: var(--space-8);
}

.modal-hq .modal-body .modal-sub {
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

/* ------------------------------------------------------------ 
   18. TOAST NOTIFICATIONS
   ------------------------------------------------------------ */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hq-toast {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--color-border);
  min-width: 300px;
  animation: slideInRight 0.35s ease forwards;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-dark);
}

.hq-toast.toast-success {
  border-left: 4px solid var(--color-secondary);
}

.hq-toast.toast-error {
  border-left: 4px solid #ef4444;
}

.hq-toast .toast-icon {
  font-size: 1.2rem;
}

.hq-toast.toast-success .toast-icon { color: var(--color-secondary); }
.hq-toast.toast-error .toast-icon { color: #ef4444; }

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

/* ------------------------------------------------------------ 
   19. MISCELLANEOUS / SHARED COMPONENTS
   ------------------------------------------------------------ */
/* Section decorative divider */
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-full);
  margin: var(--space-4) auto 0;
}

/* Gradient badge */
.gradient-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), #2563eb);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Page loader */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-4);
  transition: opacity 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-primary-ultra-light);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Scroll to top button */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-primary);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: var(--z-sticky);
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#scrollTop:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* ------------------------------------------------------------ 
   20. AOS ANIMATION OVERRIDES
   ------------------------------------------------------------ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Custom AOS delays via utility */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
