@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #ea580c;
  --primary-hover: #c2410c;
  --primary-glow: rgba(234, 88, 12, 0.2);
  --primary-light: rgba(234, 88, 12, 0.08);
  --accent: #f97316;

  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;

  --border: #e2e8f0;
  --border-hover: rgba(234, 88, 12, 0.3);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 10px 30px var(--primary-glow);
  
  /* Increased Font Sizes */
  --fs-xs: 0.9rem;
  --fs-sm: 1.1rem;
  --fs-base: 1.25rem;
  --fs-lg: 1.4rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3.5rem;
  --fs-4xl: 4.5rem;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-body);
  line-height: 1.6;
  font-size: var(--fs-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1400px; width: 90%; margin: 0 auto; }

h1, h2, h3, h4 { color: var(--text-primary); font-weight: 800; line-height: 1.2; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  gap: 0.6rem;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px var(--primary-glow);
}

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

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

.btn-outline:hover {
  background: var(--primary-light);
}

.btn-danger {
  background: #ef4444;
  color: white;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: var(--fs-xs);
}

.btn-lg {
  padding: 1.4rem 3.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  border-radius: 16px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 0;
  background: var(--primary-light);
  backdrop-filter: blur(12px);
  border-bottom: none;
  z-index: 1000;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
}

.brand svg {
  margin-right: 0.4rem;
}

.brand span { color: var(--primary); }

.nav-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  flex: 1;
  max-width: 480px;
  margin: 0 2rem;
  transition: 0.2s;
}

.nav-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  background: var(--bg-card);
}

.nav-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--fs-sm);
  color: var(--text-primary);
  width: 100%;
  font-family: inherit;
}

.nav-search input::placeholder { color: var(--text-muted); }

.nav-search .divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 0.5rem;
}

.nav-search .location-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
  font-weight: 500;
}

.nav-search .search-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s;
}

.nav-search .search-icon:hover {
  background: var(--primary-hover);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-right a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-secondary);
  transition: 0.2s;
}

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

.btn-signup {
  background: var(--primary);
  color: #ffffff;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.2s;
}

.btn-signup:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 20%, rgba(234, 88, 12, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(234, 88, 12, 0.03) 0%, transparent 40%),
              var(--bg-card);
  position: relative;
  overflow: hidden;
}

.hero-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-content-left {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  border: 1px solid var(--primary-glow);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary-glow);
  animation: pulse 2s infinite;
}

.hero-content-left h1 {
  font-size: 5rem;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
  line-height: 1.05;
}

.hero-content-left p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

.hero-trust {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: white;
}

/* Right Visual Stack */
.hero-visual-right {
  position: relative;
}

.visual-container {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-wrap {
  position: relative;
  z-index: 2;
  width: 55%;
  transform: none;
}

.main-hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,255,255,0.8);
}

.sub-image-wrap {
  position: absolute;
  bottom: 0%;
  right: 15%;
  left: auto;
  width: 32%;
  z-index: 3;
  transform: none;
}

.sub-hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.8);
}

.hero-blob, .hero-blob-2 {
  display: none;
}
  width: 300px;
  height: 300px;
  background: var(--primary-glow);
  filter: blur(80px);
  z-index: 1;
}

.hero-blob-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: #ffedd5;
  filter: blur(60px);
  z-index: 1;
}

.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.card-icon {
  font-size: 1.5rem;
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.card-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1;
}

.card-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-images-left .blob,
.hero-images-right .blob {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
}

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

.hero-center h1 {
  font-size: 3.2rem;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero-center h1 .emoji {
  display: inline-block;
  font-style: normal;
}

.hero-center p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
}

.hero-cta:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.blob-pink {
  background: #fecaca;
  width: 200px;
  height: 200px;
}

.blob-orange {
  background: #ffedd5;
  width: 180px;
  height: 180px;
}

.blob-purple {
  background: #e9d5ff;
  width: 220px;
  height: 220px;
}

.section-upcoming {
  padding: 4rem 0;
}

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

.section-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-header a:hover { text-decoration: underline; }

.event-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card {
  width: 280px;
  max-width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

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

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid var(--border);
}

.card-badge.free {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

.card-body {
  padding: 1rem;
}

.card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.card-body .card-meta {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.categories-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 2.5rem 0;
}

.pill {
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
}

.pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: var(--fs-base);
  font-weight: 500;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-primary);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control { appearance: none; cursor: pointer; }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.split-info {
  background: linear-gradient(135deg, #fff3e0 0%, #ffedd5 50%, #ffffff 100%);
  padding: 4rem;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split-info::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08), transparent);
  top: -100px;
  right: -100px;
}

.split-info::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 58, 0, 0.05), transparent);
  bottom: -80px;
  left: -80px;
}

.split-form {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-card);
}

.split-layout .split-info h2 {
  color: var(--text-primary);
}

.hidden { display: none !important; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }

.btn-back {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: 0.2s;
  box-shadow: var(--shadow-sm);
}

.btn-back:hover {
  background: var(--bg-body);
  border-color: var(--primary);
  color: var(--primary);
}

.avatar-circle {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: 0.3s;
}

.feature-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--primary-light);
  color: var(--primary);
}

.how-section {
  padding: 5rem 0;
  background: var(--bg-card);
}

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

.how-card {
  text-align: center;
  padding: 2rem;
}

.how-card .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
}

.how-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.how-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-banner {
  padding: 5rem 0;
  text-align: center;
  background: var(--bg-card);
  color: var(--text-primary);
}

.cta-banner h2 {
  color: var(--text-primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.site-footer {
  padding: 3rem 0;
  border-top: none;
  background: var(--primary-light);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.footer-col:first-child {
  max-width: 450px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: 0.2s;
}

.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.discovery-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff3e0 0%, var(--bg-body) 100%);
}

.discovery-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.search-bar {
  max-width: 600px;
  margin: -1.5rem auto 0;
  background: var(--bg-card);
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow);
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 0.85rem 1.5rem;
  font-weight: 500;
  font-size: var(--fs-base);
  outline: none;
  border-radius: 50px;
  background: transparent;
  color: var(--text-primary);
}

.search-bar input::placeholder { color: var(--text-muted); }

.role-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: 0.2s;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
}

.role-card:hover {
  border-color: var(--primary);
  background: var(--bg-body);
}

.role-card.active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 1px var(--primary);
}

.role-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-body);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0;
  background: var(--bg-card);
}

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

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

@media (max-width: 1000px) {
  .hero-grid-modern {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .hero-content-left {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-badge, .hero-trust {
    justify-content: center;
  }
  .hero-visual-right {
    margin-top: 2rem;
  }
  .visual-container {
    height: 400px;
  }
  .main-image-wrap {
    width: 90%;
  }
  .floating-card {
    display: none;
  }
  .feature-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }
  .split-layout {
    grid-template-columns: 1fr;
  }
  .split-info {
    display: none;
  }
  .footer-grid {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }
  .footer-col:first-child {
    max-width: 100%;
  }
  .nav-search {
    display: none;
  }
  .stats-bar {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

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

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

@keyframes floatSlowRight {
  0%, 100% { transform: translateY(50px) rotate(5deg); }
  50% { transform: translateY(30px) rotate(2deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.float-slow {
  animation: floatSlow 4s ease-in-out infinite;
}

.float-slow-right {
  animation: floatSlowRight 4s ease-in-out infinite;
}

.profile-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
  padding: 0.35rem;
  border-radius: 10px;
  transition: 0.2s;
}

.profile-trigger:hover {
  background: var(--bg-body);
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  overflow: hidden;
}

.profile-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-body);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.dropdown-item:hover {
  background: var(--bg-body);
  color: var(--primary);
}

.dropdown-item.danger {
  color: #ef4444;
}

.dropdown-item.danger:hover {
  background: #fef2f2;
}

.dropdown-sep {
  height: 1px;
  background: var(--border);
  margin: 0.25rem 0;
}

.profile-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.profile-modal-header {
  position: relative;
  background: linear-gradient(135deg, #fff3e0, #ffffff);
  padding: 2.5rem 2rem 3.5rem;
  text-align: center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-bottom: 1px solid var(--border);
}

.profile-modal-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
}

.profile-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-modal-avatar .av-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.2s;
  border-radius: 50%;
}

.profile-modal-avatar:hover .av-overlay {
  opacity: 1;
}

.profile-modal-body {
  padding: 1.5rem 2rem 2rem;
}

.app-shell {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.top-nav {
  height: 80px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
}

.app-main {
  display: flex;
  flex: 1;
  margin-top: 80px;
}

.left-nav {
  width: 300px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  position: fixed;
  top: 80px;
  left: 0;
  bottom: 0;
  z-index: 500;
  box-shadow: 10px 0 30px rgba(0,0,0,0.02);
}

.left-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
  text-decoration: none;
}

.left-nav-link:hover {
  background: var(--bg-body);
  color: var(--primary);
}

.left-nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
}

.main-content {
  flex: 1;
  margin-left: 300px;
  background: var(--bg-body);
  min-height: calc(100vh - 80px);
  padding: 0;
}

.btn-back-modal {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.btn-back-modal:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(-2px);
}

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2000;
}

.toast {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  border-left: 4px solid var(--primary);
  animation: toastIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  position: relative;
  overflow: hidden;
}

.toast.success { border-left-color: #10b981; }
.toast.error { border-left-color: #ef4444; }

.toast-message {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.toast-close {
  margin-left: auto;
  cursor: pointer;
  color: var(--text-muted);
}

@keyframes toastIn {
  from { transform: translateX(120%) scale(0.9); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes toastOut {
  from { transform: translateX(0) scale(1); opacity: 1; }
  to { transform: translateX(120%) scale(0.9); opacity: 0; }
}

.toast.hide {
  animation: toastOut 0.3s ease forwards;
}

.av, .dd-avatar, .profile-modal-avatar {
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  overflow: hidden;
  border: 1px solid var(--primary-light);
  flex-shrink: 0;
}

.av img, .dd-avatar img, .profile-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  animation: slideDown 0.2s ease-out;
}

.dropdown-menu.show { display: flex; }

.dd-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
}

.dd-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dd-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dd-email {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ULTRA-PREMIUM CARDS GLOBAL FIXES */
.card-image-wrap { position: relative; overflow: hidden; border-radius: 12px 12px 0 0; }
.card-image { transition: transform 0.4s ease; width: 100%; height: 160px; object-fit: cover; display: block; }
.card:hover .card-image { transform: scale(1.08); }
.btn-save { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.1); z-index: 2; }
.btn-save:hover { transform: scale(1.1); color: #ef4444; }
.social-proof { display: flex; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: none; }
.avatars { display: flex; }
.avatars img { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--bg-card); margin-left: -8px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }
.proof-text { font-size: 0.75rem; color: var(--text-muted); margin-left: 0.5rem; font-weight: 500; }

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background: var(--bg-body);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
  border-color: var(--primary);
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.info-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.contact-form-container {
  background: var(--bg-card);
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

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

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
}