/* CSS Reset & Variable Definitions */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Colors */
  --primary: #263F97;
  --primary-hover: #203580;
  --primary-rgb: 38, 63, 151;
  --primary-glow: rgba(var(--primary-rgb), 0.3);
  --secondary: #f97316;
  --secondary-hover: #ea580c;
  --secondary-glow: rgba(249, 115, 22, 0.2);
  
  --bg-dark: #090d16;
  --bg-dark-card: #111827;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.08);
  
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --text-desc: #475569;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-glow: 0 0 40px rgba(var(--primary-rgb), 0.15);
  --shadow-card: 0 12px 30px -10px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & document settings */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-desc);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.main {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Global Typography overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.7;
}

/* Grid & dot matrix backgrounds */
.bg-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  z-index: 0;
}

/* Glowing Ambient Blobs */
.glow-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Section Spacing */
section {
  padding: 7rem 0 !important;
  position: relative;
}

/* Modern Pill Button */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-white) !important;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--bg-white) !important;
  transform: translateY(-2px);
}

/* Floating Glassmorphic Navbar */
.navbar-container-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding-top: 1.5rem;
  pointer-events: none;
  transition: padding-top 0.3s ease;
}

.navbar-container-wrapper.navbar-scrolled {
  padding-top: 0.5rem;
}

.navbar-container-wrapper .container {
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.navbar-container-wrapper .navbar {
  pointer-events: auto;
  padding: 0.8rem 2rem !important;
  width: 100%;
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.navbar-container-wrapper .navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 255, 255, 0.8);
}

.navbar-brand img {
  height: 50px !important;
  transition: var(--transition);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
}

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

.navbar-nav {
  gap: 0.5rem;
}

/* Section Header Tags & Titles */
.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background-color: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title-large {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Hero Section */
#home {
  padding-top: 9rem !important;
  padding-bottom: 5rem !important;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-desc);
  margin-bottom: 2.5rem;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0) 70%);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(var(--primary-rgb), 0.15));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper img:hover {
  transform: scale(1.04) translateY(-5px);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 991.98px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


.feature-item-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

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

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

.feature-icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.feature-icon-box img {
  width: 32px;
  height: auto;
}

.feature-icon-box i {
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-item-card:hover .feature-icon-box {
  background: var(--primary);
  transform: scale(1.1) rotate(5deg);
}

.feature-item-card:hover .feature-icon-box img {
  filter: brightness(0) invert(1);
}

.feature-item-card:hover .feature-icon-box i {
  color: var(--bg-white);
}

.feature-item-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-item-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-item {
  font-size: 0.9rem;
  color: var(--text-desc);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.feature-list-item i {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

/* App Showcase Showcase */
#appShowcase {
  background-color: var(--bg-light);
  overflow: hidden;
}

.browser-mockup-wrapper {
  margin: 0 auto;
  max-width: 1140px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  padding-top: 45px;
}

.browser-mockup-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.browser-address-bar {
  flex-grow: 1;
  max-width: 450px;
  margin: 0 auto;
  height: 26px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.browser-mockup-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.app-showcase-carousel .carousel-indicators {
  bottom: -4rem;
}

.app-showcase-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  margin: 0 6px;
  transition: var(--transition);
}

.app-showcase-carousel .carousel-indicators .active {
  background-color: var(--primary);
  width: 28px;
  border-radius: 10px;
}

/* Glassmorphic Carousel Prev/Next Buttons */
.app-showcase-carousel .carousel-control-prev,
.app-showcase-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0 !important; /* hidden by default, shown on hover */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.browser-mockup-wrapper:hover .carousel-control-prev {
  opacity: 1 !important;
  left: 20px;
}

.browser-mockup-wrapper:hover .carousel-control-next {
  opacity: 1 !important;
  right: 20px;
}

.app-showcase-carousel .carousel-control-prev {
  left: 5px;
}

.app-showcase-carousel .carousel-control-next {
  right: 5px;
}

.app-showcase-carousel .carousel-control-prev-icon,
.app-showcase-carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(1) brightness(0);
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.app-showcase-carousel .carousel-control-prev:hover,
.app-showcase-carousel .carousel-control-next:hover {
  background: var(--primary) !important;
  border-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 8px 25px rgba(38, 63, 151, 0.4);
}

.app-showcase-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.app-showcase-carousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(0) grayscale(0) brightness(10);
}


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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.testimonial-card-item {
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card-item:hover {
  transform: translateY(-5px);
  background: var(--bg-white);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-light);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-desc);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.5rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.testimonial-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.testimonial-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Map Card */
.map-card-premium {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.map-wrapper {
  height: 420px;
  width: 100%;
}

.contact-card-box {
  padding: 4rem;
}

.contact-item-group {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-detail-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.contact-txt h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-txt p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-desc);
  margin-bottom: 0;
}

.contact-txt a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-txt a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* How It Works Workflow section */
#howItWorks {
  background: var(--bg-dark);
  color: var(--text-light);
}

#howItWorks .section-title-large {
  color: var(--bg-white);
}

/* Mock Pipeline Dashboard Card */
.mock-pipeline-card {
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  text-align: left !important;
}

.mock-pipeline-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(38, 63, 151, 0.15) 0%, rgba(38, 63, 151, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

.mock-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1.2rem;
  margin-bottom: 1.8rem;
}

.mock-dot-group {
  display: flex;
  gap: 8px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot.dot-red { background: #ef4444; }
.mock-dot.dot-yellow { background: #eab308; }
.mock-dot.dot-green { background: #22c55e; }

.mock-card-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.delivery-flow-tracker {
  display: flex;
  flex-direction: column;
  position: relative;
}

.tracker-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.tracker-badge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tracker-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
}

.tracker-line-connector {
  width: 2px;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.06);
  margin: 0.5rem 0;
  min-height: 35px;
}

/* Completed Step styles */
.tracker-item.completed .tracker-icon-circle {
  background: rgba(38, 63, 151, 0.15);
  border-color: rgba(38, 63, 151, 0.4);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(38, 63, 151, 0.2);
}

.tracker-item.completed .tracker-line-connector {
  background: var(--primary);
}

/* Active Step styles */
.tracker-item.active .tracker-icon-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 0 25px rgba(38, 63, 151, 0.55);
  animation: pulse-ring-glow 2s infinite;
}

@keyframes pulse-ring-glow {
  0% { box-shadow: 0 0 0 0 rgba(38, 63, 151, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(38, 63, 151, 0); }
  100% { box-shadow: 0 0 0 0 rgba(38, 63, 151, 0); }
}

.tracker-item.active .tracker-line-connector {
  background: linear-gradient(to bottom, var(--primary), rgba(255, 255, 255, 0.06));
  border-style: dashed;
}

.tracker-info-box {
  padding-top: 0.4rem;
  flex-grow: 1;
}

.tracker-info-box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.2rem;
}

.tracker-item.completed .tracker-info-box h4 {
  color: var(--bg-white);
}

.tracker-item.active .tracker-info-box h4 {
  color: var(--bg-white);
}

.tracker-info-box p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
  line-height: 1.5;
}

.tracker-item.active .tracker-info-box p {
  color: rgba(255, 255, 255, 0.6);
}

/* Stats subcard inside mockup */
.stats-subcard {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-top: 1.8rem;
}

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

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

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.stat-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg-white);
}

.badge-glow {
  box-shadow: 0 0 15px var(--secondary-glow);
}

.bg-success-soft {
  background-color: rgba(34, 197, 94, 0.15) !important;
}

.text-success {
  color: #22c55e !important;
}

/* Footer modern styles */
.pre-footer-cta {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.cta-glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 3rem 4rem;
  backdrop-filter: blur(15px);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(38, 63, 151, 0.15) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

.cta-title {
  color: var(--bg-white);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.footer-dark {
  background: #090d16;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 5rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.footer-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 10% 80%, rgba(38, 63, 151, 0.06) 0%, transparent 60%),
              radial-gradient(circle at 90% 20%, rgba(249, 115, 22, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.footer-dark > .container {
  position: relative;
  z-index: 2;
}

.footer-dark h3 {
  color: var(--bg-white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-dark h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 1px;
}

.footer-logo img {
  height: 64px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-about-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(38, 63, 151, 0.4);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: '→';
  font-size: 0.85rem;
  margin-right: 8px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.25s ease;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--bg-white);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.footer-contact-list .contact-icon {
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(38, 63, 151, 0.08);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--bg-white);
}

.scooter-widget-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.scooter-widget-card .widget-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.scooter-widget-card .badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green-dot 1.5s infinite;
}

@keyframes pulse-green-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.scooter-gif-wrapper {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}

.scooter-gif-wrapper img {
  max-height: 100px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer-bottom-bar {
  background: #05070d;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-bar p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-bar a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-bar a:hover {
  color: var(--bg-white);
}

/* Animations definition */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

/* Responsiveness overrides */
@media (max-width: 991.98px) {
  html {
    font-size: 15px;
  }
  
  .navbar-container-wrapper .container {
    padding-left: 1rem;
    padding-right: 1rem;
    display: block;
  }
  
  .navbar-container-wrapper .navbar {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.6rem 1.2rem !important;
    border-radius: var(--radius-lg);
  }
  
  .navbar-collapse {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 1rem 0 0.5rem 0;
    margin-top: 0;
  }
  
  .navbar-nav {
    text-align: center;
    padding-bottom: 0.5rem;
  }

  .navbar-collapse .btn-primary {
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0 0 0 !important;
  }
  
  #home {
    padding-top: 8rem !important;
    text-align: center !important;
  }
  
  .hero-heading {
    font-size: 2.75rem;
  }
  
  .hero-image-wrapper {
    margin-top: 3rem;
  }
  
  .contact-card-box {
    padding: 2.5rem;
  }

  .cta-glass-card {
    padding: 2.5rem 2rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .cta-glass-card {
    padding: 2rem 1.25rem;
  }
  
  .cta-glass-card .btn {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.75rem;
  }
  
  .cta-glass-card .btn:last-child {
    margin-bottom: 0;
  }
}
