/* 
=========================================
  MallQuik Custom Premium Stylesheet
  Theme: Vibrant Orange to Hot Pink/Red
=========================================
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #FB1F4D;
  /* Main Clr - Hot Pink/Red */
  --primary-rgb: 251, 31, 77;
  --primary-hover: #E0103C;
  --primary-light: #FFF0F3;
  --accent: #FD6C16;
  /* Orange */
  --accent-rgb: 253, 108, 22;
  --accent-hover: #E85B0B;
  --black: #000000;
  --white: #FFFFFF;
  --dark: #000000;
  /* Pure Black */
  --dark-rgb: 0, 0, 0;
  --text: #0F172A;
  /* Slate 900 for high-contrast slate text */
  --text-muted: #475569;
  /* Slate 600 */
  --bg-light: #F8FAFC;
  /* Slate 50 */
  --border-color: #E2E8F0;
  /* Slate 200 */

  --gradient-theme: linear-gradient(90deg, #FD6C16 0%, #FB204C 100%);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(251, 31, 77, 0.1), 0 4px 6px -4px rgba(251, 31, 77, 0.05);
  --shadow-xl: 0 24px 48px -8px rgba(251, 31, 77, 0.18), 0 8px 16px -8px rgba(253, 108, 22, 0.12);
}

/* Custom Font Weight Utility Classes (since Bootstrap defaults stop at 700 / fw-bold) */
.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

/* Base Styles */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background-color: var(--white);
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  font-weight: 800 !important;
  letter-spacing: -0.03em;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Override Bootstrap Colors to Match Theme Automatically */
.bg-primary {
  background-color: var(--primary) !important;
}

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

.btn-primary {
  background: var(--gradient-theme) !important;
  border: none !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px 0 rgba(251, 31, 77, 0.35) !important;
  transition: var(--transition-smooth) !important;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #FB204C 0%, #FD6C16 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px 0 rgba(251, 31, 77, 0.45) !important;
}

.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  font-weight: 700 !important;
  transition: var(--transition-smooth) !important;
}

.btn-outline-primary:hover {
  background: var(--gradient-theme) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Creative Dot Grid Backgrounds */
.bg-dot-grid {
  background-image: radial-gradient(rgba(251, 31, 77, 0.04) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* Custom Gradients */
.bg-gradient-hero {
  background: linear-gradient(135deg, rgba(255, 240, 243, 0.9) 0%, rgba(255, 245, 240, 0.9) 100%);
  position: relative;
}

.bg-gradient-purple {
  background: var(--gradient-theme) !important;
  position: relative;
}

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

/* Wave Divider Styling */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 60px;
}

.wave-divider .shape-fill {
  fill: var(--white);
}

/* Glassmorphism Classes */
.glass-navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition-smooth);
}

.glass-navbar.scrolled {
  box-shadow: 0 10px 30px -10px rgba(251, 31, 77, 0.08);
  background: rgba(255, 255, 255, 0.95);
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/* Navbar Links sliding line interaction */
.navbar-nav .nav-link {
  color: var(--text) !important;
  font-weight: 700 !important;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 16px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-theme);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

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

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 20px;
}

/* Premium Buttons */
.btn-primary-custom {
  background: var(--gradient-theme);
  color: var(--white);
  font-weight: 850;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px 0 rgba(251, 31, 77, 0.35);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FB204C 0%, #FD6C16 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary-custom:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px 0 rgba(251, 31, 77, 0.45);
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-secondary-custom {
  background-color: var(--white);
  color: var(--text);
  font-weight: 800;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.btn-secondary-custom:hover {
  background-color: var(--bg-light);
  color: var(--black);
  border-color: rgba(251, 31, 77, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* App Store & Google Play Buttons (Creative Flip) */
.btn-app-store {
  background-color: var(--black) !important;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 12px !important;
  padding: 10px 24px !important;
  transition: var(--transition-smooth) !important;
  text-decoration: none;
}

.btn-app-store:hover {
  background-color: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-app-store i {
  font-size: 28px;
}

/* Problem/Pain-Point Cards with gradient highlights */
.problem-card {
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  background: var(--white);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.problem-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(251, 31, 77, 0.08);
  border-color: rgba(251, 31, 77, 0.2);
}

.problem-card:hover::before {
  width: 8px;
  background: var(--gradient-theme);
}

/* Feature/Solution Cards with active highlights */
.hover-card {
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  background: var(--white);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hover-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, rgba(251, 31, 77, 0.02), transparent);
  transition: var(--transition-smooth);
  z-index: -1;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(251, 31, 77, 0.25);
}

.hover-card:hover::after {
  height: 100%;
}

.hover-card:hover .app-category-icon {
  transform: rotate(15deg) scale(1.1);
  background: var(--gradient-theme) !important;
  color: var(--white) !important;
}

/* Rotatable category circles on hover */
.app-category-icon {
  width: 44px;
  flex: 0 0 auto;
  height: 44px;
  background-color: #f5dadf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  transition: var(--transition-smooth);
}

/* Floating Mockup Cards (Tilt + floating parallax depth) */
.hero-floating-card {
  position: absolute;
  width: 180px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 40px rgba(251, 31, 77, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 5;
}

.h-float-1 {
  top: 15%;
  left: -45px;
  animation: float-left-tilt 7s ease-in-out infinite;
}

.h-float-2 {
  bottom: 20%;
  right: -45px;
  animation: float-right-tilt 6s ease-in-out infinite;
}

@media (max-width: 991px) {
  .hero-floating-card {
    display: none !important;
  }
}

/* =========================================
  CREATIVE KEYFRAME ANIMATIONS
========================================= */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes float-left-tilt {
  0% {
    transform: translateY(0px) rotate(-3deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }

  100% {
    transform: translateY(0px) rotate(-3deg);
  }
}

@keyframes float-right-tilt {
  0% {
    transform: translateY(-6px) rotate(3deg);
  }

  50% {
    transform: translateY(6px) rotate(1deg);
  }

  100% {
    transform: translateY(-6px) rotate(3deg);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 31, 77, 0.45);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(251, 31, 77, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(251, 31, 77, 0);
  }
}

@keyframes radar-pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@keyframes etaDash {
  to {
    stroke-dashoffset: -16;
  }
}

@keyframes chartGrow {
  from {
    height: 0%;
  }
}

.animated-float {
  animation: float 8s ease-in-out infinite;
}

.pulse-glow-button {
  animation: pulse-glow 2.5s infinite;
}

/* Dashboard radar ping */
.radar-pulsing-pin {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

.radar-pulsing-pin::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: radar-pulse 1.8s infinite linear;
}

/* =========================================
  HIGH-FIDELITY CSS PHONE MOCKUP
========================================= */
.phone-frame {
  width: 295px;
  height: 590px;
  border: 14px solid var(--black);
  border-radius: 40px;
  position: relative;
  background-color: var(--black);
  box-shadow: var(--shadow-xl), 0 30px 60px -15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin: 0 auto;
  z-index: 2;
  transition: var(--transition-smooth);
}

.phone-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 40px 80px -20px rgba(251, 31, 77, 0.2);
}

/* Notch & Details */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background-color: var(--black);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 10;
}

/* Side Buttons */
.phone-frame::after {
  content: '';
  position: absolute;
  top: 100px;
  right: -17px;
  width: 3px;
  height: 45px;
  background-color: var(--black);
  border-radius: 0 4px 4px 0;
}

/* Inner Screen */
.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #F8FAFC;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 34px 14px 14px 14px;
  font-size: 11px;
  color: var(--text);
  scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

/* Mockup UI Elements */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 4px 2px;
}

.app-search {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.app-banner {
  background: var(--gradient-theme);
  border-radius: 14px;
  padding: 14px;
  color: var(--white);
  margin-bottom: 16px;
  box-shadow: 0 8px 16px rgba(251, 31, 77, 0.15);
}

.app-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.app-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.app-category-item:hover .app-category-icon {
  transform: translateY(-2px);
  background: var(--gradient-theme);
  color: var(--white);
}

.app-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.app-product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: var(--transition-smooth);
}

.app-product-card:hover {
  border-color: var(--primary);
  transform: scale(1.03);
}

/* =========================================
  ADMIN DASHBOARD MOCKUP
========================================= */
.dashboard-frame {
  width: 100%;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.dashboard-frame:hover {
  box-shadow: 0 30px 60px -10px rgba(251, 31, 77, 0.12);
}

.dashboard-header {
  background-color: var(--black);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dashboard-dot.red {
  background-color: #EF4444;
}

.dashboard-dot.yellow {
  background-color: #F59E0B;
}

.dashboard-dot.green {
  background-color: #10B981;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  height: auto;
}

@media (max-width: 768px) {
  .dashboard-body {
    grid-template-columns: 1fr;
    height: auto;
  }

  .dashboard-sidebar {
    display: none;
  }
}

.dashboard-sidebar {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 24px 18px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dashboard-nav-item {
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
  cursor: pointer;
  font-weight: 500;
}

.dashboard-nav-item.active,
.dashboard-nav-item:hover {
  background-color: #1E293B;
  color: var(--white);
}

.dashboard-content {
  background-color: #F8FAFC;
  padding: 28px;
  overflow-y: auto;
}

/* Statistics Counter Section */
.stat-box {
  border-right: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.stat-box:hover h2 {
  transform: scale(1.05);
  color: var(--accent) !important;
}

@media (max-width: 768px) {
  .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .stat-box:last-child {
    border-bottom: none;
  }
}

/* =========================================
  MOCK CSS ANIMATED CHART
========================================= */
.chart-container {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  padding-top: 10px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 20px;
}

.chart-bar-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.chart-bar {
  width: 100%;
  background: var(--gradient-theme);
  border-radius: 6px 6px 0 0;
  transition: var(--transition-smooth);
  animation: chartGrow 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chart-bar:hover {
  background: linear-gradient(180deg, #FB204C 0%, #FD6C16 100%);
  transform: translateY(-2px);
}

/* Connective Arrows in Flow */
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  animation: float-delayed 4s ease-in-out infinite;
}

@media (max-width: 991px) {
  .flow-arrow {
    transform: rotate(90deg);
    margin: 24px 0;
  }
}

/* =========================================
  SMART ETA ENGINE DIAGRAM
========================================= */
.eta-diagram-container {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.eta-diagram-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-theme);
}

.eta-diagram-svg {
  pointer-events: none;
}

.eta-pulse-line {
  stroke: var(--primary) !important;
  stroke-dasharray: 8, 8;
  animation: etaDash 1.2s linear infinite;
}

.eta-node {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eta-node-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 38px auto;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.eta-node:hover .eta-node-circle {
  transform: scale(1.15) rotate(5deg);
  background: var(--gradient-theme) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  box-shadow: 0 12px 30px rgba(251, 31, 77, 0.4);
}

/* Why Choose Comparison Table */
.table-comparison {
  overflow: hidden;
  border-radius: 16px;
}

.table-comparison th {
  background-color: var(--black);
  color: var(--white);
  border: none;
  padding: 20px;
  font-weight: 700;
}

.table-comparison td {
  padding: 20px;
  vertical-align: middle;
  transition: var(--transition-smooth);
}

.table-comparison tr:hover td {
  background-color: rgba(251, 31, 77, 0.03);
}

/* Brand Cards (in Dark Strip) */
.brand-card {
  background: #ffeded42;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--white);
  padding: 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.brand-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(251, 31, 77, 0.2);
}

/* Interactive Journey Tabs */
.journey-tab-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.journey-tab-btn {
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  border: 2px solid var(--border-color);
  background: var(--white);
  color: var(--text);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.journey-tab-btn.active {
  background: var(--gradient-theme);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(251, 31, 77, 0.3);
}

.journey-content-pane {
  display: none;
}

.journey-content-pane.active {
  display: block;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
  FOOTER DESIGN SYSTEM
========================================= */
.footer-section {
  background-color: var(--black) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.footer-section h6 {
  color: var(--white) !important;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Creative Gradient Line under Footer Headings */
.footer-section h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--gradient-theme);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6) !important;
  transition: var(--transition-smooth);
  display: inline-block;
}

/* Footer Link Slide-Right Interaction */
.footer-links a:hover {
  color: var(--primary) !important;
  transform: translateX(4px);
}

/* QR Code Section Styling */
.qr-container {
  width: 130px;
  height: 130px;
  background-color: var(--white);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.qr-container:hover {
  transform: scale(1.08);
}

.qr-svg {
  width: 100%;
  height: 100%;
}

/* =========================================
  EXTRACTED UTILITY CLASSES FOR INLINE STYLES
========================================= */
.fs-7 {
  font-size: 7px !important;
}

.fs-8 {
  font-size: 8px !important;
}

.fs-9 {
  font-size: 9px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-28 {
  font-size: 28px !important;
}

/* Percent Heights for Chart Bars */
.hp-35 {
  height: 35% !important;
}

.hp-40 {
  height: 40% !important;
}

.hp-55 {
  height: 55% !important;
}

.hp-65 {
  height: 65% !important;
}

.hp-75 {
  height: 75% !important;
}

.hp-85 {
  height: 85% !important;
}

.hp-95 {
  height: 95% !important;
}

/* Hero Accents */
.badge-hero-alert {
  background: rgba(251, 31, 77, 0.1);
  color: var(--primary);
}

.hero-bg-glow {
  width: 400px;
  height: 400px;
  filter: blur(80px);
  background-color: var(--primary) !important;
}

/* Small mockups styling */
.phone-frame-sm {
  width: 170px !important;
  height: 340px !important;
  border-width: 6px !important;
  border-radius: 20px !important;
}

.phone-screen-sm-welcome {
  padding-top: 10px !important;
}

.phone-screen-sm-inner {
  padding-top: 15px !important;
}

/* Maps and Tracking Mockup Elements */
.mock-map-canvas {
  width: 100%;
  height: 110px;
  background-color: #E2E8F0;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.phone-tracker-pin {
  left: 42%;
  top: 32%;
  animation: float-delayed 5s infinite;
  z-index: 2;
}

.phone-tracker-radar {
  left: 42%;
  top: 32%;
  transform: translate(-30%, -30%);
  z-index: 1;
}

/* ETA diagrams connector */
.eta-svg-line {
  top: 47%;
  height: 20px;
  z-index: 1;
  pointer-events: none;
}

.eta-circle-accent {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

.eta-circle-success {
  border-color: #10B981 !important;
  color: #10B981 !important;
}

.eta-circle-purple {
  border-color: #7C3AED !important;
  color: #7C3AED !important;
}

.phone-frame-outer img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

.phone-frame-outer {
  position: relative;
}

/* Custom Responsive Utilities */
@media (min-width: 768px) {
  .col-md-2\.4 {
    flex: 0 0 auto;
    width: 20% !important;
  }
}