:root {
  --bg-dark: #0B1121;
  --bg-card: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent-teal: #2dd4bf;
  --accent-teal-glow: rgba(45, 212, 191, 0.4);
  --accent-blue: #3b82f6;
  --nav-bg: rgba(11, 17, 33, 0.85);
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: 3.5rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }

/* Layout & Utils */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-teal { color: var(--accent-teal); }
.text-blue { color: var(--accent-blue); }
.text-warning { color: var(--warning-color); }
.text-success { color: var(--success-color); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.w-full { width: 100%; }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text-main); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.logo span { color: var(--accent-teal); }
.nav-links { display: flex; gap: 1.2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-teal); }

/* Mobile Menu */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-main); font-size: 1.5rem; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-block; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; text-decoration: none;
  transition: all 0.3s ease; cursor: pointer; border: none; text-align: center;
}
.btn-primary { background-color: var(--accent-teal); color: #fff; box-shadow: 0 4px 14px var(--accent-teal-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--accent-teal-glow); background-color: #16a085; }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid rgba(255, 255, 255, 0.2); }
.btn-outline:hover { border-color: var(--accent-teal); color: var(--accent-teal); }
.btn-secondary { background: rgba(59, 130, 246, 0.1); color: var(--accent-blue); border: 1px solid rgba(59, 130, 246, 0.3); }
.btn-secondary:hover { background: rgba(59, 130, 246, 0.2); }
.btn-block { display: block; width: 100%; }

/* Sticky CTA */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-card);
  backdrop-filter: blur(16px); padding: 1rem; border-top: 1px solid rgba(255,255,255,0.1); z-index: 999;
}

/* Hero Section */
.hero { padding: 60px 0 20px; min-height: 60vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: 10%; right: -5%; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-teal-glow) 0%, transparent 70%); z-index: -1;
}
.hero-content { max-width: 700px; animation: fadeUp 1s ease-out; }
.hero-subtitle { color: var(--accent-teal); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.hero-buttons { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* Section Styling */
.section { padding: 100px 0; }
.section-alt { background-color: rgba(30, 41, 59, 0.3); }
.section-header { text-align: center; margin-bottom: 4rem; max-width: 800px; margin-inline: auto; }
.page-header { padding: 150px 0 80px; text-align: center; background: linear-gradient(to bottom, rgba(26, 188, 156, 0.1), var(--bg-dark)); }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }

/* Cards & Glassmorphism */
.glass-card {
  background: var(--bg-card); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px; padding: 2rem; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
}
.glass-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); border-color: rgba(26, 188, 156, 0.3); }
.card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--accent-teal); }

/* Trust Metrics */
.metric-box { text-align: center; padding: 2rem; border-radius: 12px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); }
.metric-value { font-size: 3rem; font-weight: 800; color: var(--accent-teal); margin-bottom: 0.5rem; }
.metric-label { font-size: 1.1rem; color: var(--text-main); font-weight: 600; }

/* Health Score UI */
.score-circle {
  width: 150px; height: 150px; border-radius: 50%; background: conic-gradient(var(--accent-teal) 85%, rgba(255,255,255,0.1) 0);
  display: flex; justify-content: center; align-items: center; margin: 0 auto 2rem; position: relative;
}
.score-circle::before { content: ''; position: absolute; inset: 10px; background: var(--bg-card); border-radius: 50%; }
.score-value { position: relative; z-index: 1; font-size: 2.5rem; font-weight: 800; color: #fff; }
.score-badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; background: rgba(16, 185, 129, 0.2); color: var(--success-color); }

/* Articles & Knowledge Center */
.article-card { padding: 0; display: flex; flex-direction: column; }
.article-img { width: 100%; height: 200px; object-fit: cover; border-top-left-radius: 16px; border-top-right-radius: 16px; }
.article-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.article-category { font-size: 0.85rem; color: var(--accent-teal); text-transform: uppercase; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: 1px; }
.article-title { font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-main); }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
.doc-avatar { width: 30px; height: 30px; border-radius: 50%; }

/* Ask a Doctor Q&A */
.qa-card { display: flex; gap: 1.5rem; }
.qa-votes { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-muted); }
.qa-content { flex-grow: 1; }
.doc-badge { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; }

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--text-main); }
.form-control {
  width: 100%; padding: 0.85rem 1rem; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-main); transition: border-color 0.3s ease; outline: none; font-family: inherit;
}
.form-control:focus { border-color: var(--accent-teal); }
textarea.form-control { min-height: 120px; resize: vertical; }

/* Content Blocks for Policy/About */
.content-block { background: var(--bg-card); padding: 3rem; border-radius: 16px; margin-bottom: 2rem; border: 1px solid rgba(255, 255, 255, 0.05); }
.content-block h3 { color: var(--text-main); margin-top: 2rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.content-block ul { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--text-muted); }
.content-block li { margin-bottom: 0.5rem; }

/* Support & FAQ Specifics */
.faq-item { margin-bottom: 1rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; }
.faq-question { padding: 1.5rem; background: rgba(255,255,255,0.02); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-answer { padding: 0 1.5rem 1.5rem; display: none; color: var(--text-muted); }

/* Footer */
.footer { background: rgba(15, 23, 42, 0.95); padding: 4rem 0 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { color: var(--text-main); margin-bottom: 1rem; }
.footer-links h4 { color: var(--text-main); margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; display: block; margin-bottom: 0.75rem; }
.footer-links a:hover { color: var(--accent-teal); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); color: var(--text-muted); font-size: 0.9rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }

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

/* Responsive */
@media (max-width: 992px) {
  h1 { font-size: 3rem; }
  .nav-links { display: none; /* In a real app, toggle with JS */ }
  .mobile-menu-btn { display: block; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero { padding: 120px 0 60px; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; text-align: center; }
  .sticky-cta { display: flex; gap: 1rem; }
  .sticky-cta .btn { flex: 1; padding: 0.5rem; font-size: 0.9rem; }
  .footer-bottom { flex-direction: column; justify-content: center; }
}

/* === ADVANCED UI UPGRADES === */

/* Comparison Table */
.comparison-table {
  width: 100%; border-collapse: collapse; margin: 2rem 0; background: var(--bg-card); border-radius: 12px; overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 1.5rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comparison-table th { font-size: 1.2rem; background: rgba(0,0,0,0.2); }
.comparison-table .fastmed-col { background: rgba(26, 188, 156, 0.1); border-left: 2px solid var(--accent-teal); border-right: 2px solid var(--accent-teal); }
.comparison-table th.fastmed-col { background: var(--accent-teal); color: #fff; }

/* Patient Journey Timeline */
.journey-timeline { display: flex; flex-direction: column; gap: 2rem; position: relative; padding-left: 2rem; margin: 3rem 0; }
.journey-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.1); }
.journey-step { position: relative; background: var(--bg-card); padding: 1.5rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.journey-step::before {
  content: ''; position: absolute; left: -2.4rem; top: 1.5rem; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-dark); border: 4px solid var(--accent-teal); box-shadow: 0 0 10px var(--accent-teal-glow);
}

/* Calculators (ROI & Income) */
.calculator-container { background: var(--bg-card); padding: 2.5rem; border-radius: 16px; border: 1px solid var(--accent-teal); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.range-slider { width: 100%; margin: 1rem 0 2rem; -webkit-appearance: none; background: transparent; }
.range-slider::-webkit-slider-thumb { -webkit-appearance: none; height: 20px; width: 20px; border-radius: 50%; background: var(--accent-teal); cursor: pointer; margin-top: -8px; box-shadow: 0 0 10px var(--accent-teal-glow); }
.range-slider::-webkit-slider-runnable-track { width: 100%; height: 4px; cursor: pointer; background: rgba(255,255,255,0.2); border-radius: 2px; }
.calc-result { font-size: 3rem; font-weight: 800; color: var(--success-color); text-align: center; margin: 1rem 0; }

/* Doctor Marketplace Cards */
.doctor-card { display: flex; gap: 1.5rem; padding: 1.5rem; background: var(--bg-card); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); align-items: center; }
.doctor-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(26,188,156,0.5); }
.doctor-info { flex-grow: 1; }
.doctor-tags { display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
.tag { padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; background: rgba(255,255,255,0.05); color: var(--text-muted); }

/* Video Demo Container */
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 16px; margin: 2rem 0; border: 1px solid rgba(255,255,255,0.1); }
.video-container iframe, .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Map Container */
.coverage-map { width: 100%; height: 400px; background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/India_map_en.svg/1024px-India_map_en.svg.png') no-repeat center center; background-size: contain; opacity: 0.7; position: relative; }
.map-pin { position: absolute; color: var(--accent-teal); font-size: 1.5rem; filter: drop-shadow(0 0 5px var(--accent-teal)); animation: pulse 2s infinite; }

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

@media (max-width: 768px) {
  .doctor-card { flex-direction: column; text-align: center; }
  .comparison-table { display: block; overflow-x: auto; }
}


/* === PWA & VISUAL UPGRADES === */

/* Ecosystem Flow Map */
.ecosystem-flow {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.eco-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  position: relative;
}

.eco-node {
  background: var(--bg-dark);
  border: 2px solid var(--accent-teal);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px var(--accent-teal-glow);
  transition: transform 0.3s ease;
}

.eco-node:hover {
  transform: scale(1.1);
}

.eco-node i {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 5px;
}

.eco-node span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Connecting Lines */
.eco-line {
  position: absolute;
  background: rgba(26, 188, 156, 0.3);
  z-index: 1;
}

.eco-line-h {
  height: 2px;
  top: 50%;
  left: 100px;
  right: 100px;
  transform: translateY(-50%);
}

.eco-line-v {
  width: 2px;
  left: 50%;
  top: 100px;
  bottom: -3rem;
  transform: translateX(-50%);
}

/* Animated Particles on Lines */
.eco-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
  animation: moveParticle 2s linear infinite;
}

@keyframes moveParticle {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Product Demo Gallery */
.demo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.demo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-teal);
}

.demo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.demo-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.demo-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

/* AI Health Assistant UI */
.ai-chat-container {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 500px;
}

.ai-chat-header {
  padding: 1rem 1.5rem;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-chat-messages {
  flex-grow: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-msg {
  max-width: 80%;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.ai-msg-bot {
  background: rgba(26, 188, 156, 0.1);
  border: 1px solid rgba(26, 188, 156, 0.2);
  align-self: flex-start;
  border-top-left-radius: 0;
}

.ai-msg-user {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  align-self: flex-end;
  border-top-right-radius: 0;
}

.ai-chat-input {
  padding: 1rem;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 10px;
}

.ai-chat-input input {
  flex-grow: 1;
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: #fff;
  outline: none;
}

.ai-chat-input button {
  background: var(--accent-teal);
  border: none;
  color: #fff;
  width: 45px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ai-chat-input button:hover {
  background: #16a085;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 5px;
  padding: 0.5rem;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-teal);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@media (max-width: 768px) {
  .eco-row { flex-direction: column; align-items: center; gap: 2rem; }
  .eco-line-h { width: 2px; height: 100%; top: 100px; left: 50%; bottom: -2rem; transform: translateX(-50%); }
  .eco-line-v { display: none; }
}

/* Quick Actions Grid */
.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; position: relative; z-index: 10; padding: 0 1rem; max-width: 1200px; margin-inline: auto; }
.action-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px;
  padding: 1.5rem; text-align: center; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: block;
}
.action-card:hover { transform: translateY(-5px); border-color: var(--accent-teal); box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.action-icon { font-size: 2.5rem; color: var(--accent-teal); margin-bottom: 1rem; }
.action-title { color: var(--text-main); font-weight: 600; font-size: 1.1rem; }
.action-desc { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; margin-bottom: 0; }
@media (max-width: 768px) { .quick-actions { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; } }

/* Scrollable Carousels */
.section-title { font-size: 1.75rem; font-weight: 700; color: var(--text-main); margin-bottom: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.section-title a { font-size: 0.9rem; color: var(--accent-teal); text-decoration: none; font-weight: 500; }
.carousel-container { display: flex; overflow-x: auto; gap: 1.5rem; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.carousel-container::-webkit-scrollbar { display: none; }
.carousel-item { min-width: 280px; scroll-snap-align: start; flex-shrink: 0; }

/* Medicine Card */
.med-card { background: var(--bg-card); border-radius: 16px; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.05); text-align: center; }
.med-img { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 1rem; border-radius: 8px; }
.med-title { font-weight: 600; color: var(--text-main); font-size: 1.1rem; margin-bottom: 0.5rem; }
.med-price { color: var(--accent-teal); font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem; }
.med-actions { display: flex; gap: 0.5rem; justify-content: center; }
.btn-whatsapp { background: #25D366; color: white; border: none; padding: 0.5rem 1rem; border-radius: 8px; cursor: pointer; flex: 1; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; text-decoration: none; }
.btn-call { background: var(--accent-blue); color: white; border: none; padding: 0.5rem 1rem; border-radius: 8px; cursor: pointer; flex: 1; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; text-decoration: none; }

/* Lab Card */
.lab-card { background: var(--bg-card); border-radius: 16px; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.05); text-decoration: none; display: block; transition: all 0.3s ease; }
.lab-card:hover { border-color: var(--accent-teal); transform: translateY(-3px); }
.lab-title { font-weight: 700; font-size: 1.2rem; color: var(--text-main); margin-bottom: 0.5rem; }
.lab-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; height: 40px; overflow: hidden; }
.lab-price { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
.lab-price span { font-size: 1.25rem; font-weight: 700; color: var(--accent-teal); }
/* App Cards Section */
.app-cards-section .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .app-cards-section .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* One Rupee Card */
.one-rupee-card {
    background: linear-gradient(to right, #FF2E63, #FF5E3A);
    border: 1.5px solid rgba(255, 240, 102, 0.5);
    border-radius: 20px;
    padding: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}
.one-rupee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 46, 99, 0.3);
}
.orc-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.badge-fire {
    background: rgba(0, 0, 0, 0.35);
    color: #FFF066;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 900;
}
.badge-live {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: bold;
}
.badge-online {
    background: rgba(16, 185, 129, 0.25);
    border: 0.5px solid #10B981;
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}
.dot-pulse {
    width: 6px;
    height: 6px;
    background: #34D399;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.orc-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.orc-text h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 4px;
}
.orc-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
}
.btn-consult-now {
    background: white;
    color: #FF2E63;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Health Score Card */
.health-score-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1.2px solid rgba(0, 173, 181, 0.4);
    border-radius: 20px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}
.hsc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.hsc-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hsc-status {
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 900;
}
.hsc-score-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}
.hsc-score {
    display: flex;
    align-items: baseline;
}
.score-value {
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}
.score-max {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 2px;
}
.hsc-live-track {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.hsc-zones {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}
.hsc-zones .zone {
    flex: 1;
    height: 6px;
    border-radius: 3px;
}
.zone-bad { background: rgba(255, 46, 99, 0.15); }
.zone-fair { background: rgba(255, 192, 69, 0.15); }
.zone-good { background: rgba(0, 173, 181, 0.15); }
.zone-optimal { background: rgba(57, 255, 20, 0.15); }
.zone-good.active { background: #00ADB5; }
.hsc-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.55rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.hsc-advice {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.hsc-advice p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
}
.hsc-footer {
    text-align: right;
}
.hsc-footer a {
    font-size: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Doctor Card Glass (App Replicate) */
.doctor-card-glass {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    margin-bottom: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.doctor-card-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.dcg-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.dcg-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.dcg-avatar-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: conic-gradient(#00ADB5, #00FFF0, #00ADB5);
    border-radius: 50%;
}
.dcg-avatar-inner {
    position: relative;
    width: 44px;
    height: 44px;
    background: #1E293B;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}
.dcg-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dcg-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid #1E293B;
    z-index: 2;
}
.dcg-status-dot.online { background-color: #00FF87; }
.dcg-status-dot.busy { background-color: #FFB300; }
.dcg-status-dot.offline { background-color: #FF4D4D; }

.dcg-info {
    flex: 1;
}
.dcg-name {
    color: white;
    font-weight: bold;
    font-size: 15px;
    margin: 0 0 2px 0;
}
.dcg-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}
.dcg-badge-verified {
    background: rgba(0, 255, 135, 0.15);
    color: #00FF87;
    font-size: 8px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.dcg-badge-verified i {
    font-size: 9px;
}
.dcg-dot {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}
.dcg-status-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 500;
}
.dcg-specialty {
    color: #00ADB5;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 3px;
}
.dcg-experience {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
    flex-wrap: wrap;
}
.dcg-muted {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 500;
}
.dcg-rating {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 3px;
}
.dcg-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
}
.dcg-location i {
    font-size: 11px;
}
.dcg-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 10px 0;
}
.dcg-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dcg-fees-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 4px;
}
.dcg-fee-row {
    display: flex;
    align-items: center;
    margin-top: 2px;
}
.dcg-fee-row i {
    color: #00ADB5;
    font-size: 9px;
    width: 14px;
}
.dcg-fee-row span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    width: 35px;
    display: inline-block;
}
.dcg-fee-old {
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
    text-decoration: line-through;
    margin-right: 4px;
}
.dcg-fee-row strong {
    color: #00FF87;
    font-size: 10px;
    font-weight: bold;
}
.btn-view-profile {
    background: #00ADB5;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 14px;
    height: 32px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-view-profile:hover {
    opacity: 0.9;
}

/* Hero Phone Mockup */
.hero-phone-mockup {
    width: 300px;
    height: 600px;
    background: #f8fafc;
    border-radius: 40px;
    border: 10px solid #1a1a2e;
    box-shadow: 
        0 0 0 2px #333,
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 0 6px #000;
    position: relative;
    transform: scale(0.8) rotate(12deg);
    transform-origin: center center;
    z-index: 10;
    overflow: hidden;
    margin: -30px auto 0;
}
.hero-phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 20;
}

/* App UI Elements inside Phone */
.app-ui-header {
    padding: 35px 20px 40px;
    background: linear-gradient(135deg, #00ADB5, #005F63);
    color: white;
}
.app-ui-score {
    background: white;
    border-radius: 16px;
    padding: 15px;
    margin: -30px 20px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.app-ui-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 15px;
    text-align: center;
}
.app-ui-icon {
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    color: var(--accent-teal);
    font-size: 1.2rem;
}
.app-ui-consultation {
    background: white;
    border-radius: 16px;
    padding: 15px;
    margin: 20px 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Orbits */
.hero-orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 1;
}
.orbit-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(0, 173, 181, 0.4);
}
.orbit-1 { width: 380px; height: 380px; animation: spin 60s linear infinite; }
.orbit-2 { width: 550px; height: 550px; animation: spin 90s linear infinite reverse; border: 1px dashed rgba(255, 255, 255, 0.15); }

/* Floating Icons */
.floating-badge {
    position: absolute;
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 5;
    line-height: 1.2;
}
.floating-badge i {
    font-size: 1.6rem;
    color: var(--accent-teal);
    margin-bottom: 6px;
}
.float-1 { top: 10%; left: -10%; animation: float 4s ease-in-out infinite; }
.float-2 { top: 30%; right: -25%; animation: float 5s ease-in-out infinite 1s; }
.float-3 { bottom: 25%; left: -25%; animation: float 4.5s ease-in-out infinite 2s; }
.float-4 { bottom: 5%; right: -15%; animation: float 5.5s ease-in-out infinite 0.5s; }

/* Stats Row */
.hero-stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-stat-icon {
    font-size: 2rem;
    color: var(--accent-teal);
}
.hero-stat-info h4 {
    color: white;
    font-size: 1.3rem;
    margin: 0 0 2px;
}
.hero-stat-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Trusted Banner */
.trusted-banner {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.trusted-banner-left h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 15px;
}
.trusted-banner-stores {
    display: flex;
    gap: 2.5rem;
}
.store-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}
.store-rating i.fab {
    font-size: 2rem;
    color: white;
}
.store-rating h4 {
    color: white;
    margin: 0 0 2px;
    font-size: 1rem;
}
.store-stars {
    color: #FFB300;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}
.trusted-badges {
    display: flex;
    gap: 2.5rem;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-badge-item i.badge-icon {
    font-size: 1.6rem;
    color: var(--accent-teal);
    background: rgba(0, 173, 181, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.trust-badge-item h5 {
    color: white;
    margin: 0 0 2px;
    font-size: 0.95rem;
}
.trust-badge-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.8rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Navbar Wrapping Fixes */
.navbar .container {
    max-width: 1400px;
}
.navbar .btn-primary {
    white-space: nowrap;
}
.logo div {
    white-space: nowrap;
}

/* Auth Modal */
.auth-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.auth-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.auth-modal {
    width: 800px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}
.auth-modal-overlay.active .auth-modal {
    transform: scale(1);
}
.auth-modal-left {
    flex: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.auth-modal-left::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,173,181,0.1) 0%, transparent 60%);
}
.auth-modal-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.auth-modal-left p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}
.auth-modal-right {
    flex: 1.2;
    padding: 3rem;
    background: white;
    position: relative;
}
.auth-close-btn {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none; border: none;
    font-size: 1.5rem; color: #64748b;
    cursor: pointer;
    transition: color 0.2s;
}
.auth-close-btn:hover { color: #0f172a; }

.auth-tabs {
    display: flex; gap: 1rem; margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}
.auth-tab {
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 600; color: #64748b;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}
.auth-tab.active {
    color: var(--accent-teal);
    border-bottom-color: var(--accent-teal);
}
.auth-form-group {
    margin-bottom: 1.5rem;
}
.auth-form-group label {
    display: block; font-weight: 600; color: #334155; margin-bottom: 0.5rem; font-size: 0.9rem;
}
.auth-input {
    width: 100%; padding: 0.8rem 1rem;
    border: 1px solid #cbd5e1; border-radius: 8px;
    font-size: 1rem; color: #0f172a;
    transition: border-color 0.2s;
    background: white;
}
.auth-input:focus {
    outline: none; border-color: var(--accent-teal); box-shadow: 0 0 0 3px rgba(0,173,181,0.1);
}
.auth-btn {
    width: 100%; padding: 0.8rem;
    background: var(--accent-teal); color: white;
    border: none; border-radius: 8px;
    font-size: 1rem; font-weight: bold;
    cursor: pointer; transition: background 0.2s;
}
.auth-btn:hover { background: #008f96; }

.auth-form-content { display: none; }
.auth-form-content.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .auth-modal { flex-direction: column; }
    .auth-modal-left { padding: 2rem; }
    .auth-modal-right { padding: 2rem; }
}

/* Auth Role Selection */
.auth-step-container { display: none; }
.auth-step-container.active { display: block; animation: fadeIn 0.3s ease; }

.auth-role-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}
.auth-role-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}
.auth-role-card:hover {
    border-color: var(--accent-teal);
    background: rgba(0, 173, 181, 0.05);
}
.auth-role-icon {
    font-size: 1.5rem;
    color: var(--accent-teal);
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-role-info h4 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 1.1rem;
}
.auth-role-info p {
    margin: 0;
    color: #64748b;
    font-size: 0.85rem;
}
.auth-back-btn {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1.5rem;
    padding: 0;
    transition: color 0.2s;
}
.auth-back-btn:hover { color: var(--accent-teal); }

/* App-like Sign Up Form */
.auth-signup-view {
    display: none;
    background: linear-gradient(180deg, #00ADB5 0%, #005A60 100%);
    padding: 2.5rem;
    color: white;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
    overflow-y: auto;
}
.auth-signup-view.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
.auth-signup-view::-webkit-scrollbar { width: 6px; }
.auth-signup-view::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 10px; }

.signup-logo-container {
    text-align: center; margin-bottom: 1.5rem;
}
.signup-logo-container img {
    background: white; padding: 12px; border-radius: 18px; width: 70px; height: 70px; object-fit: contain; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.signup-title {
    text-align: center; font-size: 1.8rem; font-weight: 800; margin-bottom: 5px; letter-spacing: 1px;
}
.signup-subtitle {
    text-align: center; font-size: 0.9rem; margin-bottom: 2rem; opacity: 0.9;
}
.signup-role-toggle {
    display: flex; background: rgba(255,255,255,0.2); border-radius: 99px; padding: 4px; margin-bottom: 2rem;
}
.signup-role-btn {
    flex: 1; text-align: center; padding: 10px; border-radius: 99px; cursor: pointer; font-size: 0.85rem; font-weight: 600; transition: 0.2s;
}
.signup-role-btn.active {
    background: white; color: #00ADB5; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.signup-input-group {
    display: flex; align-items: center; background: transparent; border: 1px solid rgba(255,255,255,0.6); border-radius: 99px; padding: 0 20px; margin-bottom: 1.2rem;
}
.signup-input-group i {
    color: white; width: 24px; font-size: 1.1rem;
}
.signup-input {
    flex: 1; background: transparent; border: none; color: white; padding: 14px 10px; outline: none; font-size: 1rem;
}
.signup-input::placeholder { color: rgba(255,255,255,0.8); }

.signup-row { display: flex; gap: 15px; margin-bottom: 1.2rem; }
.signup-row .signup-input-group { margin-bottom: 0; flex: 1.2; }
.signup-gender-toggle {
    display: flex; background: rgba(255,255,255,0.2); border-radius: 99px; padding: 4px; flex: 2; align-items: center;
}
.signup-gender-btn {
    flex: 1; text-align: center; padding: 10px; border-radius: 99px; cursor: pointer; font-size: 0.85rem; font-weight: 600; transition: 0.2s;
}
.signup-gender-btn.active {
    background: white; color: #00ADB5;
}
.signup-submit-btn {
    width: 100%; background: #1a4a5e; color: white; border: none; padding: 16px; border-radius: 99px; font-weight: bold; font-size: 1.1rem; margin-top: 1.5rem; cursor: pointer; transition: background 0.2s; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.signup-submit-btn:hover { background: #133a4a; }
.signup-footer {
    text-align: center; margin-top: 2rem; font-size: 0.9rem; margin-bottom: 1rem;
}
.signup-footer a { color: white; font-weight: bold; text-decoration: underline; cursor: pointer;}
