/* TrustQA - Premium Startup Website Styles */

:root {
  /* Colors - Dark Teal Blue Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-elevated: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --accent: #2C5F7D;
  --accent-hover: #1E4A63;
  --accent-light: #E8F0F5;
  --border: rgba(44, 95, 125, 0.15);
  --shadow: rgba(44, 95, 125, 0.1);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 5rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: var(--font-size-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(44, 95, 125, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(44, 95, 125, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

a:hover {
  color: var(--accent-hover);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  border-radius: 2px;
  opacity: 0.6;
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--text-primary);
}

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

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--spacing-md) var(--spacing-md);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(44, 95, 125, 0.08);
  box-shadow: 0 2px 24px rgba(44, 95, 125, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent) 0%, #1E4A63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 95, 125, 0.08);
  border-radius: 12px;
  z-index: -1;
  transition: all 0.3s ease;
}

.logo:hover::before {
  background: rgba(44, 95, 125, 0.15);
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-links a {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  padding: var(--spacing-xs) var(--spacing-sm);
  transition: var(--transition);
}

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

.nav-links .btn-primary {
  color: #ffffff !important;
  padding: 0.75rem 1.5rem;
}

.nav-links .btn-primary:hover {
  color: #ffffff !important;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--accent);
  transition: all 0.3s ease;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(44, 95, 125, 0.3);
}

.mobile-menu-toggle:hover span {
  background: var(--accent-hover);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
  opacity: 1;
}

.scroll-indicator span {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-indicator::after {
  content: '';
  width: 20px;
  height: 30px;
  border: 2px solid var(--accent);
  border-radius: 15px;
  position: relative;
  opacity: 0.6;
}

.scroll-indicator::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  bottom: 20px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Enhanced button press effect */
.btn:active {
  transform: translateY(0px) scale(0.98);
}

/* Add subtle shine effect on hover for premium feel */
.feature-card::after,
.contact-info-card::after,
.contact-form-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s ease;
}

.feature-card:hover::after,
.contact-info-card:hover::after,
.contact-form-container:hover::after {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-family);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #1E4A63 100%);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(44, 95, 125, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(44, 95, 125, 0.35), 0 0 40px rgba(44, 95, 125, 0.15);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 1px solid rgba(44, 95, 125, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(44, 95, 125, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 125, 0.15);
}

/* Sections */
section {
  padding: var(--spacing-2xl) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

section:first-of-type {
  padding-top: calc(var(--spacing-2xl) + 80px);
}

/* Hero */
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-2xl) var(--spacing-md);
  position: relative;
  overflow: hidden;
  background: transparent;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

/* Animated gradient blob - THE STAR OF THE SHOW */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, 
    rgba(44, 95, 125, 0.15) 0%, 
    rgba(44, 95, 125, 0.08) 40%, 
    transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: breathe 8s ease-in-out infinite;
  z-index: 0;
}

/* Secondary gradient blob for depth */
.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, 
    rgba(30, 74, 99, 0.12) 0%, 
    rgba(30, 74, 99, 0.05) 50%, 
    transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: breathe 8s ease-in-out infinite reverse;
  animation-delay: -2s;
  z-index: 0;
}

@keyframes breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 0.9;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  text-align: left;
  z-index: 1;
  padding-right: var(--spacing-md);
}

.hero-content h1 {
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  margin-bottom: var(--spacing-lg);
}

.hero-content h1,
.hero-content p,
.hero-buttons {
  text-align: left;
}

.hero-buttons {
  justify-content: flex-start;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 30px 70px rgba(44, 95, 125, 0.35),
    0 10px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  z-index: 10;
  animation: floatPhone 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.phone-mockup:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 40px 90px rgba(44, 95, 125, 0.4),
    0 15px 35px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) translateX(5px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) translateX(-5px) rotate(-0.5deg);
  }
  75% {
    transform: translateY(-12px) translateX(3px) rotate(0.5deg);
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f5f7fa 0%, #e8ecf1 100%);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* App Bar */
.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, #2C5F7D 0%, #1E4A63 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  z-index: 10;
}

.app-bar-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.app-bar-icon {
  font-size: 16px;
  opacity: 0.9;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 4px;
  border-radius: 6px;
}

.app-bar-icon:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

/* Restaurant Header */
.restaurant-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
  z-index: 9;
}

.restaurant-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.restaurant-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rating-badge {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  box-shadow: 
    0 2px 6px rgba(251, 191, 36, 0.35),
    0 0 12px rgba(251, 191, 36, 0.15);
  animation: ratingGlow 2s ease-in-out infinite;
}

@keyframes ratingGlow {
  0%, 100% {
    box-shadow: 
      0 2px 6px rgba(251, 191, 36, 0.35),
      0 0 12px rgba(251, 191, 36, 0.15);
  }
  50% {
    box-shadow: 
      0 2px 8px rgba(251, 191, 36, 0.45),
      0 0 16px rgba(251, 191, 36, 0.25);
  }
}

.verified-pill {
  background: rgba(44, 95, 125, 0.1);
  color: #2C5F7D;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  border: 1px solid rgba(44, 95, 125, 0.2);
}

.review-count {
  font-size: 10px;
  color: #718096;
  font-weight: 500;
}

/* Reviews Feed */
.reviews-feed {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.reviews-scroll {
  animation: scrollReviews 20s linear infinite;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 16px;
}

@keyframes scrollReviews {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.reviews-scroll:hover {
  animation-play-state: paused;
}

.review-card-mini {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.review-card-mini:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Review User Info */
.review-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2C5F7D 0%, #1E4A63 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(44, 95, 125, 0.3);
}

.user-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.user-name {
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-time {
  font-size: 9px;
  color: #718096;
  font-weight: 400;
}

.stars-mini {
  color: #fbbf24;
  font-size: 10px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  text-shadow: 0 1px 2px rgba(251, 191, 36, 0.3);
}

.review-text {
  color: #4a5568;
  font-size: 10px;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* Scroll Fade Gradients */
.scroll-fade-top {
  position: absolute;
  top: 96px; /* Position below app bar + restaurant header */
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.95) 0%, rgba(245, 247, 250, 0) 100%);
  pointer-events: none;
  z-index: 8;
}

.scroll-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(0deg, rgba(232, 236, 241, 0.95) 0%, rgba(232, 236, 241, 0) 100%);
  pointer-events: none;
  z-index: 8;
}

/* Subtle pulse animation for verified pill */
.verified-pill {
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

/* Floating Elements */
.floating-element {
  position: absolute;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(44, 95, 125, 0.2));
  transition: transform 0.3s ease;
}

.floating-element:hover {
  animation-play-state: paused;
  transform: scale(1.1);
}

.checkmark-1 {
  top: 10%;
  left: 10%;
  font-size: 48px;
  color: var(--accent);
  animation-delay: 0s;
}

.checkmark-2 {
  bottom: 20%;
  left: 5%;
  font-size: 36px;
  color: var(--accent);
  animation-delay: 1s;
}

.star-1 {
  top: 30%;
  right: 15%;
  font-size: 40px;
  color: #fbbf24;
  animation-delay: 0.5s;
}

.star-2 {
  bottom: 15%;
  right: 10%;
  font-size: 32px;
  color: #fbbf24;
  animation-delay: 1.5s;
}

.review-badge-1 {
  top: 50%;
  left: -5%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(44, 95, 125, 0.3);
  animation-delay: 0.8s;
  box-shadow: 
    0 6px 20px rgba(44, 95, 125, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.review-badge-2 {
  top: 20%;
  right: -5%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(44, 95, 125, 0.3);
  animation-delay: 1.2s;
  box-shadow: 
    0 6px 20px rgba(44, 95, 125, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 95, 125, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  max-width: 800px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-lg);
  color: var(--text-secondary);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  line-height: 1.6;
}

.app-download-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.app-download-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-family);
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.app-download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-download-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 30px rgba(0, 0, 0, 0.1);
}

.app-download-btn:hover::before {
  opacity: 1;
}

.app-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.app-download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.app-download-label {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-download-name {
  font-size: 16px;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: flex-start;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Features */
.features {
  padding: var(--spacing-2xl) var(--spacing-md);
  background: transparent;
  position: relative;
  z-index: 1;
}

.features h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-4xl);
  position: relative;
  z-index: 2;
}

/* Decorative gradient blob for features section */
.features::before {
  content: '';
  position: absolute;
  top: 0;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, 
    rgba(44, 95, 125, 0.08) 0%, 
    rgba(44, 95, 125, 0.03) 50%, 
    transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: breathe 10s ease-in-out infinite;
  animation-delay: -3s;
  z-index: 0;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  perspective: 1000px;
}

.feature-card {
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 
    0 8px 32px rgba(44, 95, 125, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 95, 125, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:nth-child(1).visible {
  transition-delay: 0.1s;
}

.feature-card:nth-child(2).visible {
  transition-delay: 0.2s;
}

.feature-card:nth-child(3).visible {
  transition-delay: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(44, 95, 125, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(44, 95, 125, 0.3);
  background: rgba(255, 255, 255, 0.85);
}

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

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}


/* Contact */
.contact {
  padding: var(--spacing-2xl) var(--spacing-md);
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact h2 {
  margin-bottom: var(--spacing-xl);
  text-align: center;
  font-size: var(--font-size-4xl);
  position: relative;
  z-index: 2;
}

/* Decorative gradient blob for contact section - enhanced */
.contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, 
    rgba(44, 95, 125, 0.12) 0%, 
    rgba(44, 95, 125, 0.06) 40%, 
    transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: breathe 14s ease-in-out infinite;
  animation-delay: -3s;
  z-index: 0;
  pointer-events: none;
}

/* Secondary gradient blob */
.contact::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, 
    rgba(30, 74, 99, 0.1) 0%, 
    rgba(30, 74, 99, 0.04) 50%, 
    transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: breathe 16s ease-in-out infinite reverse;
  animation-delay: -6s;
  z-index: 0;
  pointer-events: none;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Contact Info Card */
.contact-info-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: var(--spacing-xl);
  box-shadow: 
    0 10px 40px rgba(44, 95, 125, 0.15),
    0 3px 12px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.contact-info-card.visible {
  opacity: 1;
  transform: translateY(0);
}


.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 95, 125, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 50px rgba(44, 95, 125, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-info-header h3 {
  font-size: var(--font-size-3xl);
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
  font-weight: 700;
}

.contact-subtitle {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(44, 95, 125, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(44, 95, 125, 0.08);
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  background: rgba(44, 95, 125, 0.08);
  border-color: rgba(44, 95, 125, 0.15);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, #1E4A63 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(44, 95, 125, 0.25);
}

.contact-detail-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.contact-label {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: var(--font-size-base);
  color: var(--text-primary);
  font-weight: 500;
  word-break: break-word;
}

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

.contact-response-time {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: linear-gradient(135deg, rgba(44, 95, 125, 0.1) 0%, rgba(44, 95, 125, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(44, 95, 125, 0.15);
  color: var(--accent);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.contact-response-time svg {
  flex-shrink: 0;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: var(--spacing-xl);
  box-shadow: 
    0 10px 40px rgba(44, 95, 125, 0.15),
    0 3px 12px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-container.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.contact-form-container:hover {
  box-shadow: 
    0 12px 48px rgba(44, 95, 125, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.form-group label {
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(44, 95, 125, 0.12);
  border-radius: 14px;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(44, 95, 125, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 1);
  box-shadow: 
    0 0 0 4px rgba(44, 95, 125, 0.12),
    0 4px 20px rgba(44, 95, 125, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

/* Password input wrapper with toggle */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input {
  padding-right: 3rem;
  width: 100%;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 4px;
}

.password-toggle:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

/* Verification code input */
#verificationCode {
  text-align: center;
  font-size: var(--font-size-2xl);
  font-weight: 600;
  letter-spacing: 0.5em;
  font-family: 'Courier New', monospace;
  padding: var(--spacing-md);
}

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

/* Contact Form Button */
.btn-contact {
  width: 100%;
  padding: 1rem 2rem;
  font-size: var(--font-size-base);
  font-weight: 700;
  margin-top: var(--spacing-sm);
  background: linear-gradient(135deg, var(--accent) 0%, #1E4A63 100%);
  box-shadow: 
    0 6px 20px rgba(44, 95, 125, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-contact:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 
    0 12px 36px rgba(44, 95, 125, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.15),
    0 0 50px rgba(44, 95, 125, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-contact:active {
  transform: translateY(-1px) scale(0.99);
}

.form-message {
  padding: var(--spacing-sm);
  border-radius: 8px;
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-sm);
  display: none;
}

.form-message.success {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
  display: block;
}

/* Footer */
footer {
  padding: var(--spacing-lg) var(--spacing-md);
  border-top: 1px solid rgba(44, 95, 125, 0.1);
  margin-top: var(--spacing-2xl);
  background: rgba(248, 249, 250, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

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

.footer-copyright {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

/* Legal Pages */
.legal-page {
  padding: calc(var(--spacing-2xl) + 80px) var(--spacing-md) var(--spacing-2xl);
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: var(--spacing-lg);
}

.legal-page h2 {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-2xl);
}

.legal-page h3 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-xl);
}

.legal-page p {
  margin-bottom: var(--spacing-md);
}

.legal-page ul {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
}

.legal-page li {
  margin-bottom: var(--spacing-xs);
}

.legal-page a {
  color: var(--accent);
}

.legal-page a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* FAQ Sections */
.faq-section {
  margin-bottom: var(--spacing-xl);
}

.faq-section h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.faq-section p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-section ul {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
}

.faq-section li {
  margin-bottom: var(--spacing-xs);
}

/* Reset Password Page */
.reset-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  background: var(--bg-secondary);
}

.reset-container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.reset-card {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: var(--spacing-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.reset-step {
  display: block;
}

.reset-step.hidden {
  display: none;
}

.reset-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.reset-header .back-button {
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition);
}

.reset-header .back-button:hover {
  background: var(--bg-secondary);
  color: var(--accent);
}

.reset-header h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.reset-header p {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

.reset-form {
  margin-bottom: var(--spacing-md);
}

.input-hint {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: var(--spacing-xs);
  line-height: 1.4;
}

.btn-full {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: var(--font-size-base);
  margin-top: var(--spacing-md);
}

.reset-divider {
  position: relative;
  text-align: center;
  margin: var(--spacing-lg) 0;
}

.reset-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.reset-divider span {
  position: relative;
  background: var(--bg-primary);
  padding: 0 var(--spacing-sm);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.reset-options {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.btn-option {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: var(--font-size-base);
  font-weight: 500;
  font-family: var(--font-family);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.btn-option:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-option svg {
  flex-shrink: 0;
  color: var(--accent);
}

.btn-option > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.btn-option strong {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
}

.btn-option span {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 400;
}

.reset-footer {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border);
}

.reset-footer p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin: 0;
}

.reset-footer a {
  color: var(--accent);
  font-weight: 500;
}

.reset-footer a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Country code select */
select {
  padding: 0.875rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  transition: var(--transition);
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(44, 95, 125, 0.1);
}

/* Resend code */
.resend-code {
  text-align: center;
  margin-top: var(--spacing-md);
}

.resend-code p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin: 0;
}

.link-button {
  background: none;
  border: none;
  color: var(--accent);
  font-size: var(--font-size-sm);
  font-family: var(--font-family);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: var(--transition);
}

.link-button:hover {
  color: var(--accent-hover);
}

/* Success icon */
.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.success-icon svg {
  color: var(--accent);
  stroke-width: 2.5;
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --spacing-2xl: 4rem;
    --spacing-xl: 3rem;
  }
  
  /* Disable intensive animations on mobile */
  body::before {
    display: none;
  }
  
  .hero::before,
  .hero::after,
  .features::before,
  .contact::before {
    filter: blur(40px);
    opacity: 0.5;
  }
  
  /* Mobile Navigation with Slide-in Menu */
  nav {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .nav-container {
    position: relative;
  }
  
  .logo {
    font-size: var(--font-size-lg);
    padding: 0.4rem 0.8rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(44, 95, 125, 0.2);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
  }
  
  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }
  
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  
  .nav-links a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: 12px;
    background: rgba(44, 95, 125, 0.03);
    border: 1px solid rgba(44, 95, 125, 0.08);
  }
  
  .nav-links a:hover {
    background: rgba(44, 95, 125, 0.08);
    transform: translateX(4px);
  }
  
  .nav-links .btn-primary {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: var(--font-size-base);
    background: linear-gradient(135deg, var(--accent) 0%, #1E4A63 100%);
    border: none;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-xs);
  }
  
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-content h1,
  .hero-content p,
  .hero-buttons {
    text-align: center;
  }
  
  .app-download-buttons {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    height: 400px;
    order: -1;
  }
  
  .phone-mockup {
    width: 220px;
    height: 440px;
    animation: none; /* Disable floating on mobile */
  }
  
  /* Adjust phone content for mobile */
  .app-bar {
    padding: 10px 12px;
  }
  
  .app-bar-title {
    font-size: 12px;
  }
  
  .restaurant-header {
    padding: 10px 12px;
  }
  
  .restaurant-info h4 {
    font-size: 12px;
  }
  
  .reviews-scroll {
    padding: 10px 12px;
    gap: 8px;
  }
  
  .review-card-mini {
    padding: 10px;
  }
  
  .user-avatar {
    width: 24px;
    height: 24px;
    font-size: 9px;
  }
  
  .user-name {
    font-size: 10px;
  }
  
  .review-time {
    font-size: 8px;
  }
  
  .stars-mini {
    font-size: 9px;
  }
  
  .review-text {
    font-size: 9px;
  }
  
  .scroll-fade-top {
    top: 82px; /* Adjust for smaller mobile header */
    height: 30px;
  }
  
  .scroll-fade-bottom {
    height: 50px;
  }
  
  .floating-element {
    display: none;
  }
  
  /* Hide scroll indicator on mobile */
  .scroll-indicator {
    display: none;
  }
  
  .hero h1 {
    font-size: var(--font-size-4xl);
  }
  
  .hero p {
    font-size: var(--font-size-lg);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .contact::before {
    width: 600px;
    height: 600px;
  }
  
  .contact::after {
    width: 500px;
    height: 500px;
  }
  
  .contact-info-card {
    padding: var(--spacing-lg);
  }
  
  .contact-info-header h3 {
    font-size: var(--font-size-2xl);
  }
  
  .contact-form-container {
    padding: var(--spacing-lg);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    perspective: none; /* Disable 3D on mobile */
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-wrap: wrap;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }

  .reset-card {
    padding: var(--spacing-lg);
  }

  .reset-header h1 {
    font-size: var(--font-size-2xl);
  }
  
  /* Contact section mobile adjustments */
  .contact-info-card,
  .contact-form-container {
    padding: var(--spacing-md);
  }
  
  .contact-info-header h3 {
    font-size: var(--font-size-xl);
  }
  
  .contact-detail-item {
    padding: var(--spacing-sm);
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.875rem;
    font-size: var(--font-size-sm);
  }
  
  .btn-contact {
    padding: 0.875rem 1.5rem;
    font-size: var(--font-size-sm);
  }
}
