/* LoNeX - Clean Bootstrap-Compatible CSS */

/* CSS Variables */
:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --accent-color: #f5b942;
  --text-dark: #1a2236;
  --text-light: #666;
  --bg-light: #f7f7fa;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

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

/* Hero Enhancements */
.hero-badge .badge {
  font-size: 0.9rem;
  animation: pulse 2s infinite;
}

.hero-highlight {
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(245, 185, 66, 0.3);
  border-radius: 2px;
  animation: highlight-pulse 3s infinite;
}


/* Enhanced Buttons */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hover-scale {
  transition: transform 0.3s ease;
}

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

/* Phone Mockup */
.phone-container {
  position: relative;
  display: inline-block;
}

.floating-phone {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  border-radius: 2rem;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  z-index: 3;
}

.floating-element-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-element-2 {
  bottom: 30%;
  left: -20px;
  animation-delay: 1s;
}

.floating-element-3 {
  top: 60%;
  right: -30px;
  animation-delay: 2s;
}

  .floating-card {
    width: 50px;
    height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.floating-card:hover {
  transform: scale(1.2);
}

/* Feature Cards */
.feature-card {
  transition: all 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
}

.feature-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.feature-icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2);
}

.feature-card .card-title {
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .card-text {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Feature Mode Cards - Enhanced for equal height and interactivity */
.feature-mode-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
}

.feature-mode-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
  border-color: rgba(0, 0, 0, 0.12);
}

.feature-mode-card .card-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.feature-mode-card .card-title {
  transition: color 0.3s ease;
  margin-bottom: 0.75rem;
}

.feature-mode-card:hover .card-title {
  color: var(--primary-color, #007bff) !important;
}

.feature-mode-card .flex-grow-1 {
  display: flex;
  flex-direction: column;
}

.feature-mode-card .rounded-circle {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-mode-card:hover .rounded-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Store Badges */
.store-badge-container {
  transition: transform 0.3s ease;
}

.store-badge-container:hover {
  transform: translateY(-5px);
}

/* Prominent Store Badges */
.store-badges-prominent {
  position: relative;
}

.store-badge-prominent {
  transition: all 0.3s ease;
  position: relative;
}

.store-badge-prominent:hover {
  transform: translateY(-8px) scale(1.05);
}

.store-badge-podium {
  max-width: 200px !important;
  height: auto !important;
  border-radius: 12px;
  transition: all 0.3s ease;
  filter: brightness(1.1) contrast(1.1);
}

.store-badge-podium:hover {
  filter: brightness(1.2) contrast(1.2) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

/* Background Elements */
.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
  width: 100px;
    height: 100px;
  top: 10%;
  left: 10%;
  animation-duration: 4s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  top: 70%;
  right: 15%;
  animation-duration: 6s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-duration: 8s;
}

/* Text Utilities */
.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

/* Utility Classes */
.min-vh-75 {
  min-height: 75vh;
}

/* Custom Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-warning {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffd700 100%);
  border: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 185, 66, 0.4);
  background: linear-gradient(135deg, #e6a942 0%, #e6c200 100%);
  color: var(--text-dark);
}

/* Card Enhancements */
.card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Plan Card Highlights */
.card.border-primary {
  border: 2px solid var(--primary-color) !important;
  transform: scale(1.02);
}

.card.border-warning {
  border: 2px solid var(--accent-color) !important;
  transform: scale(1.02);
}

/* Form Controls */
.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Navbar Enhancements */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Text Colors */
.text-primary {
  color: var(--primary-color) !important;
}

/* Background Colors */
.bg-primary {
  background-color: var(--primary-color) !important;
}

/* iPad/Tablet Responsive */
@media (min-width: 769px) and (max-width: 1199px) {
  .hero-section {
    min-height: 70vh !important;
    padding: 1rem 0 !important;
    align-items: flex-start !important;
  }
  
  .hero-section .row {
    align-items: flex-start !important;
    min-height: auto !important;
    padding: 1rem 0 !important;
  }
  
  .hero-section .row.min-vh-100 {
    min-height: auto !important;
  }
  
  .hero-section .row.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .hero-section .container {
    padding-top: 1rem !important;
  }
  
  /* Fix CTA Buttons for iPad */
  .hero-cta .d-flex {
    flex-direction: row !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    align-items: flex-start !important;
  }
  
  .hero-cta .d-flex > * {
    max-width: 280px !important;
    flex: 1 !important;
  }
  
  .hero-cta .btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    white-space: nowrap !important;
  }
  
  /* Fix Feature Cards for iPad - More Organized */
  .feature-card {
    min-height: 180px !important;
    height: auto !important;
    max-height: 200px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
  }
  
  .feature-card .card-body {
    padding: 1.5rem 1.25rem !important;
    justify-content: space-between !important;
  }
  
  .feature-card .card-title {
    height: auto !important;
    min-height: auto !important;
    margin-bottom: 0.75rem !important;
    font-size: 1rem !important;
  }
  
  .feature-card .card-text {
    min-height: auto !important;
    height: auto !important;
    line-height: 1.3 !important;
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
  }
  
  .feature-icon {
    font-size: 1.75rem !important;
    height: 2.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .feature-cards {
    margin-top: 3rem !important;
    margin-bottom: 2rem !important;
  }
  
  .feature-cards .row {
    align-items: flex-start !important;
    gap: 1rem !important;
    margin: 0 1rem !important;
  }
  
  /* Override Bootstrap gap for tighter spacing */
  .feature-cards .row.g-3 {
    --bs-gutter-x: 1rem !important;
    --bs-gutter-y: 1rem !important;
    margin-left: calc(-0.5 * var(--bs-gutter-x)) !important;
    margin-right: calc(-0.5 * var(--bs-gutter-x)) !important;
  }
  
  .feature-cards .row.g-3 > * {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  
  .feature-cards .col-md-4 {
    display: block !important;
    flex: none !important;
    margin-bottom: 0 !important;
  }
}

/* Additional iPad landscape adjustment */
@media (min-width: 1025px) and (max-width: 1199px) {
  .hero-section {
    min-height: 75vh !important;
  }
  
  /* Enhanced button spacing for larger iPad */
  .hero-cta .d-flex {
    gap: 2rem !important;
    justify-content: flex-start !important;
  }
  
  .hero-cta .btn {
    padding: 0.875rem 2rem !important;
    font-size: 1.1rem !important;
  }
  
  /* Enhanced card sizing for larger iPad - Consistent with organized layout */
  .feature-card {
    min-height: 190px !important;
    max-height: 220px !important;
  }
  
  .feature-card .card-body {
    padding: 1.75rem 1.5rem !important;
  }
  
  .feature-card .card-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .feature-card .card-text {
    font-size: 0.9rem !important;
  }
}

/* Enhanced Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  /* Center align hero content on mobile */
  .hero-content {
    text-align: center !important;
  }
  
  .hero-badge {
    text-align: center !important;
  }
  
  .hero-content h1 {
    font-size: 2.2rem !important;
    line-height: 1.2;
    text-align: center !important;
  }
  
  .hero-content h2 {
    font-size: 1.1rem !important;
    text-align: center !important;
  }
  
  .hero-content .lead {
    text-align: center !important;
  }
  
  .display-md-3 {
    font-size: 2.2rem !important;
  }
  
  .display-4 {
    font-size: 2.2rem !important;
  }
  
  .display-5 {
    font-size: 2rem !important;
  }
  
  
  .btn-lg {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  .phone-screen {
    max-width: 250px !important;
  }
  
  .floating-element {
    display: none;
  }
  
  .feature-cards {
    margin-top: 2rem !important;
  }
  
  .feature-card {
    margin-bottom: 1rem;
    min-height: 180px;
  }
  
  .store-badge {
    max-width: 140px !important;
  }
  
  .store-badge-podium {
    max-width: 160px !important;
  }
  
  .store-badges-prominent {
  text-align: center;
}

  .hero-visual {
    margin-top: 0.5rem !important;
    text-align: center;
  }
  
  /* Reduce gap between columns on mobile */
  .hero-section .row {
    margin: 0 !important;
  }
  
  .hero-section .col-lg-6 {
    padding: 0 !important;
    margin-bottom: 1rem;
  }
  
  .coming-soon-wrapper {
    width: 100%;
  text-align: center;
  }
  
  .hero-cta {
    margin-bottom: 1rem !important;
  }
  
  .hero-cta .d-flex {
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .hero-cta .d-flex > * {
  width: 100%;
    max-width: 280px;
  margin-bottom: 1rem;
}

  .min-vh-75 {
    min-height: 60vh;
  }
  
  
  .card.border-primary,
  .card.border-warning {
    transform: none;
  }
  
  /* Center align Problem Solution section on mobile */
  section.bg-light .card-text {
    text-align: center !important;
  }
  
  section.bg-light .card-title {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 85vh;
    padding: 1.5rem 0;
  }
  
  /* Ensure center alignment on small mobile too */
  .hero-content {
    text-align: center !important;
  }
  
  .hero-badge {
    text-align: center !important;
  }
  
  .hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.3;
    text-align: center !important;
  }
  
  .hero-content h2 {
    font-size: 1rem !important;
    text-align: center !important;
  }
  
  .hero-content .lead {
    text-align: center !important;
  }
  
  .display-5 {
    font-size: 1.8rem !important;
  }
  
  .display-4, .display-md-3 {
    font-size: 1.8rem !important;
  }
  
  .lead {
    font-size: 0.9rem !important;
  }
  
  
  .btn-lg {
    padding: 0.7rem 1.2rem !important;
    font-size: 0.9rem !important;
  }
  
  .phone-screen {
    max-width: 220px !important;
  }
  
  .feature-card {
    min-height: 160px;
  }
  
  .feature-card .card-body {
    padding: 1.5rem 1rem !important;
  }
  
  .feature-icon {
    font-size: 1.5rem !important;
    height: 2.5rem !important;
  }
  
  .feature-card .card-title {
    height: 2rem !important;
  }
  
  .feature-card .card-text {
    min-height: 2.5rem !important;
  }
  
  .store-badge {
    max-width: 120px !important;
  }
  
  .store-badge-podium {
    max-width: 140px !important;
  }
  
  .hero-badge .badge {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  /* Further reduce gap on small mobile */
  .hero-visual {
    margin-top: 0.25rem !important;
  }
  
  .hero-section .col-lg-6 {
    margin-bottom: 0.5rem !important;
  }
  
  /* Touch-friendly interactions */
  .hover-lift:hover {
    transform: none;
  }
  
  .hover-scale:hover {
    transform: none;
  }
  
  .store-badge-prominent:hover {
    transform: none;
  }
  
  .store-badge-podium:hover {
    filter: brightness(1.1) contrast(1.1);
  }
  
  /* Center align Problem Solution section on small mobile too */
  section.bg-light .card-text {
    text-align: center !important;
  }
  
  section.bg-light .card-title {
    text-align: center !important;
  }
  
  /* Further reduce gap between features and summary on small mobile */
  #features {
    padding-bottom: 1.5rem !important;
  }
  
  .summary-section {
    padding-top: 1.5rem !important;
  }
  
}

/* Enhanced Animations */
@keyframes fadeInLeft {
  from { 
    opacity: 0; 
    transform: translateX(-50px);
  }
  to { 
    opacity: 1; 
    transform: translateX(0);
  }
}

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

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

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

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

@keyframes highlight-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.6;
    transform: scaleX(1.1);
  }
}

/* Animation Classes */
.animate-fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Display Classes for Responsive Typography */
.display-md-3 {
  font-size: 2.5rem !important;
}

@media (min-width: 768px) {
  .display-md-3 {
    font-size: 3rem !important;
  }
}

@media (min-width: 992px) {
  .display-lg-4 {
    font-size: 3.5rem !important;
  }
}

.hero-section .card {
  animation: float 6s ease-in-out infinite;
}

.hero-section .card:nth-child(2) {
  animation-delay: 2s;
}

.hero-section .card:nth-child(3) {
  animation-delay: 4s;
}

/* Smooth transitions for all interactive elements */
.btn, .card, .nav-link, .form-control {
  transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Enhanced Summary Section */
.summary-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.summary-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.summary-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.feature-highlight-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.feature-highlight-card:nth-child(1) { animation-delay: 0.1s; }
.feature-highlight-card:nth-child(2) { animation-delay: 0.2s; }
.feature-highlight-card:nth-child(3) { animation-delay: 0.3s; }

.feature-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color, #007bff);
}

.feature-icon-wrapper {
  flex-shrink: 0;
}

.feature-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-highlight-card:hover .feature-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-content {
  flex: 1;
}

.feature-content h5 {
  color: #2c3e50;
  transition: color 0.3s ease;
}

.feature-highlight-card:hover .feature-content h5 {
  color: var(--primary-color, #007bff);
}

/* Switch Modes Demo */
.switch-modes-demo {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid rgba(0, 123, 255, 0.1);
  transition: all 0.3s ease;
}

.switch-modes-demo:hover {
  border-color: rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mode-switch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 80px;
}

.mode-switch-item:hover {
  background: rgba(0, 123, 255, 0.1);
  transform: scale(1.05);
}

.active-mode {
  background: linear-gradient(135deg, var(--primary-color, #007bff) 0%, var(--secondary-color, #6610f2) 100%);
  color: white;
  transform: scale(1.05);
}

.mode-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.mode-switch-item:hover .mode-icon {
  transform: scale(1.2);
}

.switch-arrow {
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Mobile Responsive for Summary Section */
@media (max-width: 768px) {
  /* Reduce gap between features and summary sections */
  #features {
    padding-bottom: 2rem !important;
  }
  
  .summary-section {
    padding-top: 2rem !important;
    padding-bottom: 4rem;
  }
  
  .summary-card {
    padding: 2rem 1rem;
    margin: 0 1rem;
  }
  
  .feature-highlight-card {
  flex-direction: column;
  text-align: center;
  gap: 1rem;
    padding: 1.5rem 1rem;
  }
  
  .switch-modes-demo {
    padding: 2rem 1rem;
  }
  
  .switch-modes-demo .d-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .switch-arrow {
    transform: rotate(90deg);
  }
}

/* Coming Soon Section Interactive Styles */
.coming-soon-badge {
  animation: pulse 2s ease-in-out infinite;
}

.feature-highlight-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-highlight-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-highlight-card.active {
  background: rgba(255, 193, 7, 0.2);
  border-color: #ffc107;
}

.feature-highlight-card .feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-highlight-card .feature-text {
  flex: 1;
}

/* Countdown Styles */
.countdown-wrapper {
  margin-bottom: 2rem;
}

.countdown-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.countdown-card {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  min-width: 120px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.countdown-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffc107;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.countdown-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.countdown-separator {
  font-size: 2rem;
  color: #ffc107;
  font-weight: bold;
  animation: pulse 2s ease-in-out infinite;
}

.countdown-details {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.time-unit {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 0.5rem;
}

.time-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc107;
  line-height: 1;
}

.time-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* Store Badges Interactive */
.store-badges-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.store-badge-interactive {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 180px;
  overflow: hidden;
  border-radius: 12px;
}

.store-badge-interactive img {
  transition: all 0.3s ease;
  border-radius: 12px;
}

.store-badge-interactive:hover {
  transform: translateY(-5px) scale(1.05);
}

.store-badge-interactive:hover img {
  filter: brightness(1.1) contrast(1.1);
}

.badge-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.store-badge-interactive:hover .badge-overlay {
  opacity: 1;
}

.overlay-text {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Floating Shapes Animation */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-shapes .shape-1,
.floating-shapes .shape-2,
.floating-shapes .shape-3 {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-shapes .shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shapes .shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-shapes .shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

/* Waitlist Counter Animation */
.waitlist-count {
  font-weight: 600;
  color: #ffc107;
}

/* Responsive Design */
@media (max-width: 768px) {
  .countdown-cards {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .countdown-separator {
    transform: rotate(90deg);
  }
  
  .countdown-card {
    min-width: 100px;
    padding: 1rem;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .store-badges-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-highlight-card {
    padding: 0.75rem;
  }
  
  /* Coming Soon Section Mobile Text Alignment */
  .coming-soon-content,
  .coming-soon-content h2,
  .coming-soon-content .lead,
  .coming-soon-content .coming-soon-badge {
    text-align: center !important;
  }
  
  .coming-soon-content .feature-highlights {
    text-align: center !important;
  }
  
  .coming-soon-content .animate-fade-in-up {
    text-align: center !important;
  }
}

/* Contact Section Interactive Styles */
.contact-form-wrapper .card {
  transition: all 0.3s ease;
}

.contact-form-wrapper .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  transform: translateY(-1px);
}

.contact-method-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  transform: translateY(-3px);
}

.contact-method-card .d-flex {
  transition: all 0.3s ease;
}

.contact-method-card:hover .d-flex {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  border-color: #0d6efd !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-method-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-arrow {
  color: #6c757d;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-method-card:hover .contact-arrow {
  color: #0d6efd;
  transform: translateX(5px);
}

/* Quick Action Buttons */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Card Header Animation */
.contact-form-wrapper .card-header {
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper .card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-form-wrapper .card:hover .card-header::before {
  left: 100%;
}

/* Form Submission Loading State */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
}

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

/* Success Animation */
.form-success {
  animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Interactive Footer Styles */
.footer-dark-bg {
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1565c0 100%) !important;
  position: relative;
}

.footer-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.footer-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: footerFloat 8s ease-in-out infinite;
}

.footer-shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.footer-shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

.footer-shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 30%;
  animation-delay: 6s;
}

@keyframes footerFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Footer Brand Section */
.footer-logo-container {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: white;
  padding: 12px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-logo {
  height: 45px;
  width: auto;
  transition: all 0.3s ease;
}

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

.footer-logo-container:hover .footer-logo {
  filter: brightness(1.2);
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-brand-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.footer-description {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* Newsletter Signup */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.footer-newsletter:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.footer-input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white !important;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Footer Navigation */
.footer-section-title {
  color: #ffffff;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffc107;
  border-radius: 1px;
}

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

.footer-nav-list li {
  margin-bottom: 0.75rem;
}

.footer-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-radius: 6px;
}

.footer-link:hover {
  color: #ffc107;
  transform: translateX(8px);
  text-decoration: none;
}

.footer-link:focus {
  color: #ffc107;
  text-decoration: none;
}

/* Footer Contact Items */
.footer-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(255, 193, 7, 0.2);
  transform: scale(1.1);
}

.footer-contact-info {
  flex: 1;
}

.footer-contact-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  color: #ffffff;
  font-weight: 500;
}

.footer-contact-arrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-arrow {
  color: #ffc107;
  transform: translateX(5px);
}

/* Social Links */
.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.1);
  text-decoration: none;
}

.footer-social-icon {
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.footer-social-link:hover .footer-social-icon {
  transform: scale(1.2);
}

/* Footer Bottom */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.25);
  margin: 2rem 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
}

.footer-company-name {
  color: #ffc107;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.footer-legal-link:hover {
  color: #ffc107;
  background: rgba(255, 193, 7, 0.1);
  text-decoration: none;
}

.footer-legal-separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-social-links {
    justify-content: center;
  }
  
  .footer-legal-links {
    justify-content: center !important;
  }
  
  .footer-contact-item {
    padding: 0.75rem;
  }
  
  .footer-newsletter {
    padding: 1rem;
    text-align: center;
  }
  
  /* Center text elements in footer for mobile */
  .footer-brand-name,
  .footer-brand-subtitle,
  .footer-description {
    text-align: center;
  }
  
  .footer-logo-container {
    margin: 0 auto;
  }
  
  .d-flex.align-items-center.mb-4 {
    flex-direction: column;
  align-items: center;
    text-align: center;
  }
  
  .d-flex.align-items-center.mb-4 .ms-3 {
    margin-left: 0 !important;
    margin-top: 1rem;
  }
  
  .footer-nav-section {
    text-align: center;
  }
  
  .footer-section-title {
    text-align: center;
  }
  
  .footer-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-nav-list {
    text-align: center;
  }
  
  .footer-link {
    justify-content: center;
  }
  
  .footer-contact-section {
    text-align: center;
  }
  
  .footer-social {
    text-align: center;
  }
  
  .footer-copyright {
    text-align: center !important;
  }
}