/*
Theme Name: GetNth - Travel & Lifestyle Super App
Theme URI: https://getnth.com
Author: NthTrip
Author URI: https://nthtrip.com
Description: A modern WordPress theme for GetNth - the all-in-one lifestyle super app for the American market. Consolidates travel booking, event discovery, dining reservations, and payments into a single platform.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: getnth
Tags: travel, events, dining, lifestyle, super-app, modern, responsive
*/

/* ==========================================================================
   CSS Variables & Base Styles
   ========================================================================== */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #1f2937;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-accent: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-sunset: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--gray-50);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.875rem; }
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--white);
}

.btn-success {
  background: var(--gradient-success);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-icon {
  padding: 0.75rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 2rem;
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav .nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

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

@media (min-width: 1024px) {
  .hero-title { font-size: 4rem; }
}

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

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
}

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

/* Hero Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: var(--gray-900);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(99, 102, 241, 0.2);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  background: var(--gray-900);
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  color: var(--gray-600);
  font-size: 1.125rem;
}

.features-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  padding: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-icon.events { background: linear-gradient(135deg, #f97316, #dc2626); }
.feature-icon.dining { background: linear-gradient(135deg, #10b981, #059669); }
.feature-icon.travel { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.feature-icon.wallet { background: linear-gradient(135deg, #ec4899, #f43f5e); }

.feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* ==========================================================================
   Events Section
   ========================================================================== */
.events-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.events-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
}

.event-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.event-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--danger);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.event-compatibility {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.event-content {
  padding: 1.5rem;
}

.event-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.event-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.event-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.price-original {
  font-size: 0.875rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.event-friends {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.friend-avatars {
  display: flex;
}

.friend-avatar {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--white);
  margin-left: -8px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 600;
}

.friend-avatar:first-child {
  margin-left: 0;
}

.friend-count {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ==========================================================================
   Hot Deals Section
   ========================================================================== */
.hot-deals {
  background: var(--gray-900);
  color: var(--white);
}

.hot-deals .section-header {
  color: var(--white);
}

.hot-deals .section-title {
  color: var(--white);
}

.hot-deals .section-description {
  color: var(--gray-400);
}

.deals-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.deals-slider::-webkit-scrollbar {
  display: none;
}

.deal-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--gray-800);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-700);
}

.deal-image {
  height: 140px;
  position: relative;
}

.deal-discount {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--danger);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.deal-timer {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.deal-content {
  padding: 1.25rem;
}

.deal-type {
  font-size: 0.75rem;
  color: var(--primary-light);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.deal-title {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.deal-meta {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.deal-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deal-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.deal-price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success);
}

.deal-price-original {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.deal-slots {
  font-size: 0.75rem;
  color: var(--warning);
  font-weight: 600;
}

/* ==========================================================================
   Dining Section
   ========================================================================== */
.dining-section {
  background: var(--white);
}

.restaurant-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media (min-width: 768px) {
  .restaurant-card {
    flex-direction: row;
  }
}

.restaurant-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .restaurant-image {
    width: 300px;
    height: auto;
  }
}

.restaurant-content {
  flex: 1;
  padding: 1.5rem;
}

.restaurant-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.restaurant-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--success);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
}

.restaurant-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.restaurant-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.restaurant-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.time-slots {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.time-slot {
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.time-slot:hover {
  background: var(--primary);
  color: var(--white);
}

.time-slot.hot-deal {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--danger);
  color: var(--danger);
}

.time-slot.hot-deal:hover {
  background: var(--danger);
  color: var(--white);
}

/* ==========================================================================
   Wallet Section
   ========================================================================== */
.wallet-section {
  background: linear-gradient(180deg, var(--gray-900) 50%, var(--white) 50%);
}

.wallet-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  margin: 0 auto;
}

.wallet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.wallet-logo {
  font-size: 1.25rem;
  font-weight: 700;
}

.wallet-chip {
  width: 50px;
  height: 35px;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  border-radius: var(--radius-sm);
}

.wallet-balance-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.wallet-balance {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.wallet-actions {
  display: flex;
  gap: 1rem;
}

.wallet-btn {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wallet-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.wallet-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.wallet-feature {
  text-align: center;
}

.wallet-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.wallet-feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.wallet-feature-description {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ==========================================================================
   Trip Board Section
   ========================================================================== */
.trip-board {
  background: var(--gray-50);
}

.trip-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}

.trip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.trip-title {
  font-size: 1.5rem;
}

.trip-status {
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.trip-budget {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.budget-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.budget-label {
  color: var(--gray-600);
}

.budget-amount {
  font-weight: 700;
}

.budget-bar {
  height: 8px;
  background: var(--gray-300);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.budget-progress {
  height: 100%;
  background: var(--gradient-success);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.trip-members {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trip-member {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.member-avatar {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

.member-info {
  font-size: 0.875rem;
}

.member-name {
  font-weight: 600;
}

.member-contribution {
  color: var(--gray-500);
}

/* Voting Section */
.voting-section {
  margin-top: 2rem;
}

.voting-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vote-options {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .vote-options { grid-template-columns: repeat(2, 1fr); }
}

.vote-card {
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vote-card:hover {
  border-color: var(--primary);
}

.vote-card.selected {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--primary);
}

.vote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.vote-name {
  font-weight: 600;
}

.vote-count {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.vote-bar {
  height: 4px;
  background: var(--gray-300);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 0.5rem;
}

.vote-progress {
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Ride Comparison
   ========================================================================== */
.ride-comparison {
  background: var(--white);
}

.ride-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ride-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .ride-grid { grid-template-columns: repeat(4, 1fr); }
}

.ride-card {
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.ride-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.ride-card.recommended {
  border-color: var(--success);
}

.ride-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  background: var(--success);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.ride-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gray-200);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.ride-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ride-time {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.ride-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.ride-eco {
  font-size: 0.75rem;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

/* ==========================================================================
   Profile & Gamification
   ========================================================================== */
.profile-section {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
}

.profile-header {
  text-align: center;
  margin-bottom: 3rem;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.profile-name {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.profile-location {
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 3rem;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.stat-name {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Badges */
.badges-section {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  color: var(--gray-800);
}

.badges-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .badges-grid { grid-template-columns: repeat(6, 1fr); }
}

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

.badge-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.badge-icon.earned {
  background: var(--gradient-primary);
  color: var(--white);
}

.badge-icon.locked {
  background: var(--gray-200);
  filter: grayscale(100%);
  opacity: 0.5;
}

.badge-name {
  font-size: 0.75rem;
  font-weight: 500;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: 6rem 0;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .cta-title { font-size: 3rem; }
}

.cta-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-form { flex-direction: row; }
}

.cta-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
}

.cta-btn {
  background: var(--gray-900);
  color: var(--white);
  padding: 1rem 2rem;
  font-weight: 600;
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--gray-800);
  color: var(--white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-description {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--gray-400);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-legal {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-legal { justify-content: flex-start; }
}

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

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

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

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-pulse {
  animation: pulse 2s ease infinite;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-muted { color: var(--gray-500); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none; }
.visible { display: block; }
