/* ChaleWoya - Modern Professional Design */
:root {
  --primary-color: #e91e63; /* ChaleWoya Pink */
  --primary-dark: #c2185b;
  --primary-light: #f8bbd9;
  --primary-gradient: linear-gradient(135deg, #e91e63, #c2185b);
  --secondary-color: #2196f3;
  --accent-color: #ff9800;
  --success-color: #10b981;
  --text-dark: #0f172a;
  --text-medium: #334155;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --text-white: #ffffff;
  --background-white: #ffffff;
  --background-light: #f8fafc;
  --background-dark: #0f172a;
  --background-glass: rgba(255, 255, 255, 0.95);
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-light: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-medium: 0 4px 12px rgba(15, 23, 42, 0.1);
  --shadow-heavy: 0 20px 40px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 0 1px rgba(233, 30, 99, 0.1),
    0 8px 32px rgba(233, 30, 99, 0.2);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--background-white);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

/* Buttons */
.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-white);
  border: none;
  padding: 18px 32px;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: var(--background-white);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--background-light);
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar {
  padding: 20px 0;
}

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

/* Modern Header Styles */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.modern-navbar {
  padding: 16px 0;
  transition: all 0.3s ease;
}

.modern-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modern-logo {
  height: 80px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(255, 20, 147, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  position: relative;
}

.modern-logo:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.08)
    translateZ(20px);
  box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4), 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Legacy support */
.brand-logo {
  height: 80px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Desktop menu */
.nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Hide mobile menu on desktop */
.nav-menu-mobile {
  display: none;
}

/* Hide mobile-specific elements on desktop */
.nav-menu .nav-brand-mobile {
  display: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .btn-secondary {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.nav-actions .btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.nav-actions .btn-primary {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 10000;
  position: relative;
}

/* Hide mobile menu branding on desktop */
.nav-brand-mobile {
  display: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Modern Hero Section */
.modern-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(254, 247, 247, 1) 25%,
    rgba(255, 245, 245, 1) 50%,
    rgba(252, 231, 243, 0.8) 100%
  );
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 20, 147, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 20, 147, 0.05) 0%,
      transparent 50%
    );
  background-size: 400px 400px;
  animation: float 20s ease-in-out infinite;
}

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

/* Legacy hero support */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(
    135deg,
    var(--background-white) 0%,
    var(--background-light) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}

/* Modern Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-medium);
}

.hero-badge i {
  font-size: 0.75rem;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-medium);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 32px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius-lg);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
  min-width: 200px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
}

.btn-hero-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  min-width: 180px;
  justify-content: center;
}

.btn-hero-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 400;
}

.hero-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1rem;
}

/* Legacy hero subtitle */
.hero-subtitle {
  font-size: 1.375rem;
  color: var(--text-medium);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-contact,
.hero-phone {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  min-width: 180px;
  justify-content: center;
}

.hero-contact {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--shadow-medium);
}

.hero-contact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.hero-phone {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.hero-phone:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

.fare-negotiation {
  background: var(--background-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  margin-bottom: 40px;
  border: 2px solid var(--primary-color);
}

.negotiation-header {
  text-align: center;
  margin-bottom: 24px;
}

.negotiation-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.negotiation-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.fare-input-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
}

.fare-display {
  display: flex;
  align-items: center;
  background: var(--background-light);
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  flex: 1;
  transition: var(--transition);
}

.fare-display:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 8px;
}

.fare-input {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  width: 80px;
  text-align: center;
  outline: none;
}

.fare-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-left: 12px;
}

.negotiation-status {
  display: flex;
  align-items: center;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--success-color);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.start-negotiation-btn {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--text-white);
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.start-negotiation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.negotiation-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.benefit-tag {
  background: var(--background-light);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
}

.hero-features {
  display: flex;
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
}

.feature-item i {
  color: var(--primary-color);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  width: 100%;
}

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

.okada-image {
  max-width: 480px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  object-fit: cover;
  display: block;
}

/* Legacy app-image styles - now handled by iPhone mockup */
.app-image {
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
}

.floating-card {
  position: absolute;
  background: var(--background-white);
  padding: 16px 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-heavy);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  min-width: 200px;
  z-index: 15;
}

/* Rider Bid Card - Top Left */
.rider-bid-card {
  top: 20px;
  left: 200px;
  animation: floatLeft 4s ease-in-out infinite;
}

.rider-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rider-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.rider-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.rider-rating {
  font-size: 13px;
  color: var(--text-medium);
}

.bid-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bid-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--success-color);
}

.bid-label {
  font-size: 12px;
  color: var(--text-light);
  background: var(--background-light);
  padding: 4px 8px;
  border-radius: 12px;
}

/* Your Fare Card - Top Right */
.your-fare-card {
  top: 10px;
  right: 180px;
  text-align: center;
  animation: floatRight 3.5s ease-in-out infinite;
}

.fare-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

.fare-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.fare-status {
  font-size: 12px;
  color: var(--text-medium);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 16px;
  display: inline-block;
}

/* Savings Card - Middle Left */
.savings-card {
  top: 35%;
  left: 120px;
  animation: floatSavings 4.2s ease-in-out infinite;
}

.savings-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--success-color);
  font-weight: 600;
  font-size: 14px;
}

.savings-content {
  text-align: center;
  margin-bottom: 10px;
}

.savings-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--success-color);
  margin-bottom: 4px;
}

.savings-text {
  font-size: 12px;
  color: var(--text-medium);
}

.savings-badge {
  text-align: center;
  font-size: 11px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
}

/* Negotiation Card - Bottom Left */
.negotiation-card {
  bottom: 40px;
  left: 150px;
  animation: floatLeftSlow 5s ease-in-out infinite;
}

.negotiation-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
}

.negotiation-messages {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.message {
  font-size: 13px;
  padding: 6px 10px;
  background: var(--background-light);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
}

/* City to City Card - Bottom Right */
.city-card {
  bottom: 30px;
  right: 160px;
  animation: floatRightSlow 4.5s ease-in-out infinite;
}

.route-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.route-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
}

.route-time {
  font-size: 12px;
  color: var(--text-medium);
  text-align: center;
}

/* Package Card - Middle Right */
.package-card {
  top: 50%;
  right: 170px;
  transform: translateY(-50%);
  animation: floatCenter 3s ease-in-out infinite;
}

.package-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.package-info i {
  font-size: 20px;
  color: var(--accent-color);
}

.package-type {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.package-status {
  font-size: 12px;
  color: var(--text-medium);
}

.delivery-time {
  text-align: center;
  font-size: 12px;
  color: var(--success-color);
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
}

/* Animations */
@keyframes floatLeft {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(1deg);
  }
  50% {
    transform: translate(5px, -25px) rotate(0deg);
  }
  75% {
    transform: translate(15px, -10px) rotate(-1deg);
  }
}

@keyframes floatRight {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-10px, -20px) rotate(-1deg);
  }
  50% {
    transform: translate(-5px, -30px) rotate(0deg);
  }
  75% {
    transform: translate(-15px, -15px) rotate(1deg);
  }
}

@keyframes floatLeftSlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(8px, -12px) scale(1.02);
  }
  66% {
    transform: translate(-5px, -20px) scale(0.98);
  }
}

@keyframes floatRightSlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-12px, -18px) scale(1.03);
  }
  80% {
    transform: translate(-8px, -8px) scale(0.97);
  }
}

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

@keyframes floatSavings {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(5px, -15px) scale(1.05) rotate(1deg);
  }
  50% {
    transform: translate(-3px, -25px) scale(1.02) rotate(0deg);
  }
  75% {
    transform: translate(8px, -12px) scale(1.03) rotate(-1deg);
  }
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--background-light);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.375rem;
  color: var(--text-medium);
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  padding: 48px;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  background: var(--background-white);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-8px);
  border-color: var(--primary-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: var(--shadow-glow);
}

.service-icon i {
  font-size: 28px;
  color: var(--text-white);
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  background: var(--background-light);
  border: 1px solid var(--border-color);
}

.service-link:hover {
  gap: 12px;
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

/* Riders Section */
.riders-section {
  padding: 80px 0;
  background: var(--background-light);
}

.riders-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.riders-text h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.riders-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.rider-benefits {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.benefit-item i {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit-item h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit-item p {
  color: var(--text-light);
  margin: 0;
}

.rider-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.learn-more {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
}

.learn-more:hover {
  color: var(--primary-color);
}

.rider-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--text-dark);
  color: var(--text-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-white);
  opacity: 0.8;
}

/* About Section - Emotional Story */
.about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #fef7f7, #fff5f5);
}

.about-hero {
  text-align: center;
  margin-bottom: 80px;
}

.about-hero h2 {
  color: var(--text-dark);
  font-size: 3.5rem;
  margin-bottom: 24px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  color: var(--text-medium);
  font-size: 1.375rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.story-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.story-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.story-icon i {
  font-size: 2rem;
  color: white;
}

.story-card h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.story-card p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1rem;
}

.impact-stat {
  background: var(--background-light);
  padding: 20px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-medium);
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-section {
  margin-bottom: 80px;
}

.testimonial-card {
  background: var(--primary-gradient);
  padding: 48px 40px;
  border-radius: var(--border-radius-lg);
  color: white;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-heavy);
}

.testimonial-content p {
  font-size: 1.375rem;
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid white;
}

.author-info strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.author-info span {
  opacity: 0.9;
  font-size: 0.875rem;
}

.movement-section {
  text-align: center;
}

.movement-section h3 {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 800;
}

.movement-text {
  color: var(--text-medium);
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 48px;
}

.urgency-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.urgency-stat {
  background: white;
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--border-color);
}

.urgency-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.urgency-label {
  color: var(--text-medium);
  font-weight: 600;
  font-size: 0.875rem;
}

.call-to-action {
  background: white;
  padding: 48px 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-heavy);
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid var(--primary-color);
}

.call-to-action h4 {
  color: var(--text-dark);
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.call-to-action p {
  color: var(--text-medium);
  margin-bottom: 32px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.movement-btn {
  padding: 20px 40px;
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--border-radius);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}

.movement-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

/* Download Section */
.download-section {
  padding: 80px 0;
  background: var(--background-light);
  text-align: center;
}

.download-content h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.download-btn {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.download-btn img {
  width: 180px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(1000px) rotateX(3deg) rotateY(-2deg);
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.1));
}

.download-btn:hover img {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.08)
    translateY(-8px) translateZ(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.2));
}

/* Footer */
.footer {
  background: var(--background-dark);
  color: var(--text-white);
  padding: 100px 0 50px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary-gradient);
}

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

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3), 0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(1000px) rotateX(3deg) rotateY(-2deg);
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
}

.footer-logo:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.05)
    translateZ(10px);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4), 0 6px 20px rgba(0, 0, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links {
  display: contents;
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.contact-info {
  margin-top: 16px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.contact-info i {
  color: var(--primary-color);
  width: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-left p {
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0;
  font-size: 14px;
}

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

.developer-credit a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.developer-credit a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
}

/* Contact Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: var(--background-white);
  margin: 10% auto;
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 480px;
  box-shadow: var(--shadow-heavy);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.modal-header h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-header i {
  color: var(--primary-color);
}

.close {
  color: var(--text-light);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close:hover {
  color: var(--text-dark);
  background: var(--background-light);
}

.modal-body {
  padding: 0 24px 24px;
}

.modal-body p {
  color: var(--text-medium);
  margin-bottom: 24px;
  text-align: center;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-input-group {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.country-code {
  background: var(--background-light);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 16px 12px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text-dark);
  min-width: 100px;
  cursor: pointer;
}

.phone-input-group input {
  flex: 1;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.phone-input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-error {
  color: var(--error-color);
  font-size: 14px;
  margin-top: -8px;
  display: none;
}

.callback-btn {
  background: var(--primary-gradient);
  color: var(--text-white);
  border: none;
  padding: 18px 24px;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.callback-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.callback-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.success-message {
  text-align: center;
  padding: 24px;
  background: var(--background-light);
  border-radius: var(--border-radius);
  border: 2px solid var(--success-color);
}

.success-message i {
  color: var(--success-color);
  font-size: 48px;
  margin-bottom: 16px;
}

.success-message h4 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.success-message p {
  color: var(--text-medium);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* General 3D Image Effects */
img {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon,
.service-icon,
.step-icon,
.testimonial-avatar,
.team-avatar {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(1000px) rotateX(2deg) rotateY(-1deg);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.feature-icon:hover,
.service-icon:hover,
.step-icon:hover,
.testimonial-avatar:hover,
.team-avatar:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.05)
    translateZ(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 6px 15px rgba(0, 0, 0, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.15);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

/* Card Images with 3D Effects */
.card img,
.service-card img,
.feature-card img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(1000px) rotateX(1deg);
}

.card:hover img,
.service-card:hover img,
.feature-card:hover img {
  transform: perspective(1000px) rotateX(0deg) scale(1.03) translateZ(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Button 3D Effects */
.btn-primary,
.btn-secondary,
.btn-hero-primary,
.btn-hero-secondary {
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(1deg);
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.1));
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-hero-primary:hover,
.btn-hero-secondary:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-2px) translateZ(5px);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4), 0 4px 15px rgba(0, 0, 0, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.15));
}

/* Floating Animation for About Page */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(2deg);
  }
  66% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

/* Emotional pulse animation */
@keyframes emotionalPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Gradient text animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* iPhone 16 Plus Mockup Styles */
.iphone-mockup {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  z-index: 10;
}

.iphone-frame {
  position: relative;
  width: 380px;
  height: 760px;
  background: linear-gradient(145deg, #333333, #1a1a1a);
  border-radius: 55px;
  padding: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3), 0 15px 40px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.1), inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(1000px) rotateX(5deg) rotateY(-3deg);
  z-index: 5;
  margin: 0 auto;
}

.iphone-frame:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.02);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4), 0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.15), inset 0 -2px 0 rgba(0, 0, 0, 0.4);
}

.iphone-screen {
  position: relative;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  background: #000;
  border-radius: 45px;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(0, 0, 0, 0.5);
  margin: 12px;
}

.iphone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.iphone-notch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

.iphone-notch::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 6px;
  background: #333;
  border-radius: 3px;
}

.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 43px;
  position: relative;
  z-index: 5;
  display: block;
}

.iphone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  z-index: 10;
}

/* iPhone reflection effect */
.iphone-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 55px;
  pointer-events: none;
  z-index: 15;
}

/* Floating animation for iPhone */
@keyframes iphoneFloat {
  0%,
  100% {
    transform: perspective(1000px) rotateX(5deg) rotateY(-3deg) translateY(0px);
  }
  50% {
    transform: perspective(1000px) rotateX(5deg) rotateY(-3deg)
      translateY(-10px);
  }
}

.iphone-mockup.floating .iphone-frame {
  animation: iphoneFloat 4s ease-in-out infinite;
}

/* Ensure iPhone mockup is visible */
.iphone-mockup {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Enhanced iPhone realism */
.iphone-frame::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 20%,
    transparent 80%,
    rgba(0, 0, 0, 0.1) 100%
  );
  border-radius: 60px;
  z-index: -1;
  filter: blur(2px);
}

/* Screen glow effect */
.iphone-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 45px;
  z-index: 8;
  pointer-events: none;
}

/* Power button */
.iphone-frame .power-button {
  position: absolute;
  top: 120px;
  right: -2px;
  width: 4px;
  height: 60px;
  background: linear-gradient(180deg, #2d2d2d, #1a1a1a);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.1);
}

/* Volume buttons */
.iphone-frame .volume-buttons {
  position: absolute;
  top: 80px;
  left: -2px;
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, #2d2d2d, #1a1a1a);
  border-radius: 0 2px 2px 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.1);
}

.iphone-frame .volume-buttons::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 4px;
  height: 30px;
  background: linear-gradient(180deg, #2d2d2d, #1a1a1a);
  border-radius: 0 2px 2px 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.1);
}

/* Additional mobile styles for very small screens */
@media (max-width: 480px) {
  .floating-card {
    min-width: 140px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .your-fare-card .fare-amount {
    font-size: 20px;
  }

  .rider-bid-card .bid-price {
    font-size: 16px;
  }

  .savings-card .savings-amount {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  /* Modern Header Mobile */
  .modern-navbar {
    padding: 12px 0;
  }

  .modern-logo {
    height: 60px;
    transform: perspective(1000px) rotateX(3deg) rotateY(-3deg);
  }

  .modern-logo:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.05)
      translateZ(15px);
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-tagline {
    font-size: 0.75rem;
  }

  /* Hide desktop menu on mobile */
  .nav-menu-desktop {
    display: none;
  }

  /* Default mobile menu dropdown */
  .nav-menu-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
  }

  .nav-menu-mobile.active {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center all content */
    max-height: 600px; /* Increased height */
    opacity: 1;
    padding: 20px;
    overflow-y: auto; /* Allow scrolling if needed */
  }

  /* Ensure no container constraints affect mobile menu */
  .modern-header,
  .modern-navbar,
  .nav-container {
    overflow: visible !important;
    position: relative;
  }

  /* Prevent body scroll when mobile menu is open - but allow menu scrolling */
  body.nav-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }

  /* Add decorative elements to mobile menu */
  .nav-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 20%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 80%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
      );
    pointer-events: none;
  }

  /* Hide mobile branding in default dropdown menu */
  .nav-menu-mobile .nav-brand-mobile {
    display: none;
  }

  /* Ensure nav-actions are always visible in mobile menu */
  .nav-menu-mobile.active .nav-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 300px;
    align-items: center; /* Center the navigation links */
  }

  /* Mobile navigation link styling for dropdown */
  .nav-menu-mobile .nav-link {
    color: var(--text-dark) !important;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: block;
    text-align: center; /* Center the text */
    width: 100%;
    max-width: 200px; /* Limit width for better centering */
  }

  .nav-menu-mobile .nav-link:hover {
    color: white !important;
    background: var(--primary-color) !important;
    border-radius: 8px;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu-mobile .nav-link:last-child {
    border-bottom: none;
  }

  .nav-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .nav-menu-mobile .nav-actions {
    display: flex !important;
    flex-direction: column;
    align-items: center; /* Center the actions */
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    width: 100%;
    max-width: 250px; /* Limit width for better centering */
    background: transparent; /* Clean white background */
    min-height: 60px; /* Ensure it has height */
  }

  .nav-menu-mobile .nav-actions .btn-outline,
  .nav-menu-mobile .nav-actions .contact-btn {
    width: 100% !important;
    max-width: 200px; /* Limit button width for better appearance */
    text-align: center;
    padding: 12px 16px;
    background: var(--primary-color) !important;
    color: white !important;
    border: 2px solid var(--primary-color) !important;
    font-weight: 600;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px auto 0; /* Center the button horizontally */
    min-height: 40px; /* Ensure button has height */
    font-size: 16px; /* Make text visible */
    visibility: visible !important; /* Force visibility */
    opacity: 1 !important; /* Force opacity */
  }

  .nav-menu-mobile .nav-actions .btn-outline:hover,
  .nav-menu-mobile .nav-actions .contact-btn:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-1px);
  }

  /* Ensure mobile menu content is properly spaced */
  .nav-menu .nav-brand-mobile {
    flex-shrink: 0;
    margin-bottom: 30px;
  }

  .nav-menu .nav-links {
    flex-shrink: 0;
  }

  .nav-menu .nav-actions {
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 20px;
  }

  .nav-toggle {
    display: flex !important;
    padding: 8px;
    border-radius: 8px;
    background: rgba(233, 30, 99, 0.1);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    z-index: 100000 !important;
    position: relative;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
  }

  /* Hamburger button stays in header for dropdown menu */
  .nav-toggle.active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
  }

  .nav-toggle:hover {
    background: rgba(233, 30, 99, 0.2);
    transform: scale(1.05);
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
  }

  .nav-toggle.active {
    background: var(--primary-color);
  }

  .nav-toggle.active span {
    background: white !important;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
  }

  .hero-content {
    gap: 40px;
  }

  .riders-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-header h2,
  .riders-text h2,
  .about-text h2,
  .download-content h2 {
    font-size: 2rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .download-btn img {
    width: 160px;
    height: 50px;
  }

  /* Show floating cards on mobile with reduced animations */
  .floating-elements {
    display: block;
  }

  /* Adjust floating card positions for mobile */
  .floating-card {
    position: absolute;
    min-width: 160px;
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  /* Rider Bid Card - Top Left */
  .rider-bid-card {
    top: 10px;
    left: 10px;
    animation: floatLeftMobile 6s ease-in-out infinite;
  }

  /* Your Fare Card - Top Right */
  .your-fare-card {
    top: 5px;
    right: 10px;
    animation: floatRightMobile 5s ease-in-out infinite;
  }

  /* Savings Card - Middle Left */
  .savings-card {
    top: 40%;
    left: 5px;
    animation: floatSavingsMobile 7s ease-in-out infinite;
  }

  /* Package Card - Middle Right */
  .package-card {
    top: 45%;
    right: 5px;
    transform: translateY(-50%);
    animation: floatCenterMobile 4s ease-in-out infinite;
  }

  /* Hide some cards on very small screens to avoid clutter */
  .negotiation-card,
  .city-card {
    display: none;
  }

  /* Mobile-specific floating animations - gentler movements */
  @keyframes floatLeftMobile {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(5px, -10px) scale(1.02);
    }
  }

  @keyframes floatRightMobile {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(-5px, -8px) scale(1.02);
    }
  }

  @keyframes floatSavingsMobile {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(3px, -12px) scale(1.03);
    }
  }

  @keyframes floatCenterMobile {
    0%,
    100% {
      transform: translateY(-50%) scale(1);
    }
    50% {
      transform: translateY(-60%) scale(1.02);
    }
  }

  /* Enhanced mobile fare card styling */
  .your-fare-card .fare-amount {
    font-size: 24px;
    animation: pulseAmount 2s ease-in-out infinite;
  }

  .your-fare-card .fare-status {
    animation: pulseStatus 3s ease-in-out infinite;
  }

  @keyframes pulseAmount {
    0%,
    100% {
      transform: scale(1);
      color: var(--primary-color);
    }
    50% {
      transform: scale(1.05);
      color: var(--primary-dark);
    }
  }

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

  .okada-image {
    max-width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  /* Mobile Modal Styles */
  .modal-content {
    margin: 5% auto;
    width: 95%;
    max-width: 400px;
  }

  .modal-header {
    padding: 20px 20px 0;
  }

  .modal-header h3 {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 0 20px 20px;
  }

  .phone-input-group {
    flex-direction: column;
    gap: 12px;
  }

  .country-code {
    width: 100%;
  }

  .callback-btn {
    padding: 16px 20px;
    font-size: 15px;
  }

  /* Mobile Hero Actions */
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-contact,
  .hero-phone {
    width: 100%;
    max-width: 280px;
    padding: 18px 24px;
    font-size: 15px;
  }

  /* Mobile About Section */
  .about-hero h2 {
    font-size: 2.5rem;
  }

  .about-subtitle {
    font-size: 1.125rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }

  .story-card {
    padding: 32px 24px;
  }

  .urgency-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .movement-section h3 {
    font-size: 2rem;
  }

  .movement-text {
    font-size: 1.125rem;
  }

  .call-to-action {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .call-to-action h4 {
    font-size: 1.5rem;
  }

  .movement-btn {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .testimonial-content p {
    font-size: 1.125rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Modern Hero Mobile */
  .modern-hero {
    padding: 160px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .feature-item {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  /* iPhone Mockup Mobile */
  .iphone-mockup {
    max-width: 280px;
    margin: 20px auto;
  }

  .iphone-frame {
    width: 260px;
    height: 520px;
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
    animation: iphoneFloatMobile 6s ease-in-out infinite;
  }

  .iphone-frame:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.01);
  }

  .iphone-notch {
    width: 100px;
    height: 24px;
  }

  .iphone-home-indicator {
    width: 120px;
    height: 3px;
  }

  /* Mobile iPhone floating animation */
  @keyframes iphoneFloatMobile {
    0%,
    100% {
      transform: perspective(1000px) rotateX(2deg) rotateY(-2deg)
        translateY(0px);
    }
    50% {
      transform: perspective(1000px) rotateX(2deg) rotateY(-2deg)
        translateY(-8px);
    }
  }

  /* Ensure hero visual has proper spacing on mobile */
  .hero-visual {
    min-height: 400px;
    padding: 20px 0;
  }

  /* Story Cards Grid Mobile */
  .story-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
