/* LRwale Design System - Logistics without the chaos */

/* CSS Variables */
:root {
  /* LRwale Brand Colors */
  --electric-blue: 214 88% 58%;
  --saffron: 38 92% 50%;
  --mint: 152 76% 36%;
  --ink: 222 84% 5%;
  --slate-deep: 222 47% 11%;
  --slate-light: 215 25% 27%;
  
  /* Semantic Colors */
  --background: 222 84% 5%;
  --foreground: 210 40% 98%;
  --background-light: 210 40% 98%;
  --foreground-light: 222 84% 5%;

  --card: 222 47% 11%;
  --card-foreground: 210 40% 98%;

  --popover: 222 47% 11%;
  --popover-foreground: 210 40% 98%;

  --primary: 214 88% 58%;
  --primary-foreground: 222 84% 5%;

  --secondary: 38 92% 50%;
  --secondary-foreground: 222 84% 5%;

  --success: 152 76% 36%;
  --success-foreground: 210 40% 98%;

  --muted: 215 25% 27%;
  --muted-foreground: 215 20% 65%;

  --accent: 38 92% 50%;
  --accent-foreground: 222 84% 5%;

  --destructive: 0 84% 60%;
  --destructive-foreground: 210 40% 98%;

  --border: 215 25% 27%;
  --input: 215 25% 27%;
  --ring: 214 88% 58%;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  --gradient-hero: linear-gradient(135deg, hsl(var(--ink)), hsl(var(--slate-deep)));
  --gradient-card: linear-gradient(145deg, hsl(var(--card)), hsl(215 25% 15%));
  --gradient-glow: radial-gradient(circle, hsl(var(--primary) / 0.3), transparent 70%);

  /* Shadows */
  --shadow-glow: 0 0 40px hsl(var(--primary) / 0.3);
  --shadow-card: 0 8px 32px hsl(222 84% 5% / 0.3);
  --shadow-hero: 0 20px 60px hsl(var(--primary) / 0.2);

  --radius: 0.75rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--gradient-hero);
  color: hsl(var(--foreground));
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/* Typography */
.heading-xl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

.heading-lg {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-md {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.heading-sm {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Utility Classes */
.glass {
  backdrop-filter: blur(16px);
  background: hsl(var(--card) / 0.8);
  border: 1px solid hsl(var(--border) / 0.5);
}

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

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: var(--shadow-glow);
}

.section-padding {
  padding: 5rem 0;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.full-width {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  color: hsl(var(--ink));
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: hsl(var(--foreground) / 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: hsl(var(--foreground));
  transform: translateY(-2px);
}

.desktop-cta {
  display: none;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.2s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(0.95);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.open {
  max-height: 24rem;
}

.mobile-menu-content {
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border) / 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: hsl(var(--foreground) / 0.8);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: hsl(var(--foreground));
}

.mobile-cta {
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 1rem;
  height: 2.5rem;
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
}

.btn-outline {
  border: 1px solid hsl(var(--input));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  padding: 0.5rem 1rem;
  height: 2.5rem;
}

.btn-outline:hover {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-hero {
  background: var(--gradient-primary);
  color: hsl(var(--ink));
  font-weight: 600;
  box-shadow: var(--shadow-hero);
  padding: 0.75rem 2rem;
  height: 2.75rem;
}

.btn-hero:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.btn-lg {
  height: 2.75rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-icon {
  font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.scroll-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid hsl(var(--primary) / 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-dot:hover {
  transform: scale(1.3);
}

.scroll-dot.active {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  transform: scale(1.25);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.3;
}

.element-1 {
  width: 18rem;
  height: 18rem;
  background: hsl(var(--primary) / 0.2);
  top: 5rem;
  left: 2.5rem;
  animation: float 20s ease-in-out infinite;
}

.element-2 {
  width: 24rem;
  height: 24rem;
  background: hsl(var(--secondary) / 0.2);
  bottom: 5rem;
  right: 2.5rem;
  animation: float 25s ease-in-out infinite reverse;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.badge-icon {
  font-size: 0.75rem;
}

.hero-title {
  margin-bottom: 2rem;
  font-size: 3.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--foreground) / 0.8);
  max-width: 64rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-note {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

.bg-gradient-card {
  background: hsl(var(--card) / 0.2);
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.problem-card {
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.problem-card:hover {
  transform: translateY(-0.5rem);
  border-color: hsl(var(--destructive) / 0.5);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon.destructive {
  background: hsl(var(--destructive) / 0.2);
}

.card-icon.success {
  background: hsl(var(--success) / 0.2);
}

.card-icon .icon {
  font-size: 1.5rem;
}

.card-icon.destructive .icon {
  color: hsl(var(--destructive));
}

.card-icon.success .icon {
  color: hsl(var(--success));
}

.card-title {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.problem-card:hover .card-title {
  color: hsl(var(--destructive));
}

.card-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Solution Section */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.solution-card {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-0.5rem);
  border-color: hsl(var(--success) / 0.5);
}

.solution-card .card-icon {
  margin: 0 auto 1rem;
  width: 4rem;
  height: 4rem;
}

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

.solution-card:hover .card-title {
  color: hsl(var(--success));
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

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

.service-icon .icon {
  font-size: 1.5rem;
  color: hsl(var(--ink));
}

.service-title {
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: hsl(var(--primary));
}

/* Features Section */
.features-container {
  max-width: 64rem;
  margin: 0 auto;
}

.features-card {
  padding: 2rem;
}

.main-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-badge {
  padding: 0.75rem;
  text-align: center;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-badge.small {
  padding: 0.5rem;
  font-size: 0.75rem;
}

.expand-features {
  text-align: center;
}

.additional-features {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.additional-features.show {
  display: grid;
}

/* FAQ Section */
.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-card {
  padding: 2rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 0.5rem;
  padding: 0 1.5rem;
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(16px);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: none;
  border: none;
  font-weight: 600;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 0.2s ease;
}

.accordion-trigger:hover {
  text-decoration: underline;
}

.accordion-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  padding-bottom: 1rem;
}

/* Contact Section */
.contact-container {
  max-width: 32rem;
  margin: 0 auto;
}

.contact-card {
  padding: 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid hsl(var(--input));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: hsl(var(--primary));
}

.checkbox-group label {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.error-message {
  color: hsl(var(--destructive));
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

/* Footer */
.footer {
  background: hsl(var(--ink));
  border-top: 1px solid hsl(var(--border) / 0.2);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 28rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: hsl(var(--foreground));
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
}

.footer-divider {
  border: none;
  border-top: 1px solid hsl(var(--border) / 0.2);
  margin: 2rem 0;
}

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

.footer-copyright {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: hsl(var(--foreground));
}

/* Toast */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  font-weight: 500;
  box-shadow: var(--shadow-card);
  animation: slideIn 0.3s ease;
}

.toast.success {
  background: hsl(var(--success));
  color: hsl(var(--success-foreground));
}

.toast.error {
  background: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
}

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

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

/* Responsive Design */
@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  
  .desktop-cta {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .scroll-indicator {
    display: flex;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .solution-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .main-features {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .additional-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 5rem;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
}

/* Launch Badge Styles */
.hero-note {
  text-align: center;
  margin-top: 2rem;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.8));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 32px hsl(var(--primary) / 0.3);
  border: 1px solid hsl(var(--primary) / 0.2);
  backdrop-filter: blur(10px);
  animation: pulse-glow 2s ease-in-out infinite;
  margin-bottom: 0.75rem;
}

.launch-icon {
  font-size: 1.25rem;
  animation: rocket-bounce 1.5s ease-in-out infinite;
}

.launch-text {
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.launch-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  margin: 0;
  font-weight: 400;
  opacity: 0.9;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 32px hsl(var(--primary) / 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 40px hsl(var(--primary) / 0.5);
    transform: scale(1.02);
  }
}

@keyframes rocket-bounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-2px) rotate(-5deg);
  }
  75% {
    transform: translateY(2px) rotate(5deg);
  }
}

/* Made in India positioning */
.made-in-india {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  background: rgba(0, 0, 0, 0.9) !important;
  color: white !important;
  padding: 12px 20px !important;
  border-radius: 25px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  z-index: 9999 !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 !important;
  list-style: none !important;
}

.made-in-india:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Hide the original footer contact list except for made-in-india */
.footer-contact .contact-list {
  display: block;
}

.footer-contact .contact-list li:not(.made-in-india) {
  display: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .floating-element {
    animation: none;
  }
  
  .launch-badge {
    animation: none;
  }
  
  .launch-icon {
    animation: none;
  }
  
  .made-in-india {
    transition: none;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  * {
    transition: none !important;
  }
}
