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

:root {
  --green: #0D7A3E;
  --green-dark: #09592E;
  --green-light: #E8F5E9;
  --red: #CE1126;
  --gold: #F5A623;
  --gold-light: #FFF3D6;
  --dark: #1A1A2E;
  --dark-2: #16213E;
  --text: #2D3436;
  --text-light: #636E72;
  --bg: #FAFBFC;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 122, 62, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

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

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

.btn-google {
  background: var(--white);
  color: var(--text);
  border: 2px solid #E0E0E0;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.btn-google:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.btn-google img {
  width: 20px;
  height: 20px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-auth .btn,
.nav-auth .btn-signup-nav {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.nav-user-badge {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green);
  padding: 4px 12px;
  background: var(--green-light);
  border-radius: 50px;
}

.btn-signin {
  background: transparent;
  color: var(--text);
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.85rem;
  padding: 8px 14px;
  transition: var(--transition);
}

.btn-signin:hover {
  color: var(--green);
}

.btn-signup-nav {
  background: var(--green);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-signup-nav:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* Language toggle */
.nav-links .lang-toggle {
  background: transparent;
  color: var(--text-light);
  border: 2px solid #E0E0E0;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  letter-spacing: 0.5px;
  line-height: 1;
}

.nav-links .lang-toggle:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
  transform: none;
}

.nav-auth .lang-toggle {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.72rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  letter-spacing: 0.5px;
  line-height: 1;
}

.nav-auth .lang-toggle:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, #0D7A3E 0%, #09592E 40%, #1A1A2E 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg), transparent);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-badge span {
  background: var(--gold);
  color: var(--dark);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-size: 1.05rem;
  padding: 16px 40px;
}

.hero-actions .btn-primary:hover {
  background: #E69500;
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stats .stat p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 4px 0 0;
}

/* ========== SEARCH BAR ========== */
.search-section {
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.search-bar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
}

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

.search-bar .btn {
  padding: 12px 32px;
  border-radius: var(--radius-sm);
}

/* ========== CATEGORIES ========== */
.categories {
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.category-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-card .icon {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.category-card:hover .icon {
  background: var(--green);
}

.category-card:hover .icon svg path {
  fill: white;
}

.category-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.category-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: var(--bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.step p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== WHY CAMERFREELANCE ========== */
.benefits {
  background: var(--white);
}

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

.benefit-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.benefit-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.benefit-card .icon {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== CTA ========== */
.cta {
  background: linear-gradient(135deg, #0D7A3E 0%, #09592E 50%, #1A1A2E 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 40px;
}

.cta .btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-size: 1.1rem;
  padding: 16px 48px;
}

.cta .btn-primary:hover {
  background: #E69500;
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  transition: var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ========== AUTH PAGE ========== */
.auth-page {
  min-height: 100vh;
  display: flex;
  background: var(--bg);
}

.auth-left {
  flex: 1;
  background: linear-gradient(135deg, #0D7A3E 0%, #09592E 40%, #1A1A2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.auth-left::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.auth-left-content {
  position: relative;
  z-index: 1;
  max-width: 460px;
}

.auth-left-content .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 48px;
}

.auth-left-content .logo .logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), #FFD700);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 900;
}

.auth-left-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.auth-left-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}

.auth-testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.auth-testimonial p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 12px;
}

.auth-testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-testimonial .author .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
}

.auth-testimonial .author .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.auth-testimonial .author .role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
}

.auth-card .tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 4px;
  border: 1px solid #E8E8E8;
}

.auth-card .tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 8px;
  border: none;
  background: transparent;
  font-family: var(--font);
}

.auth-card .tab.active {
  background: var(--white);
  color: var(--green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.auth-form .subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E8E8E8;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(13,122,62,0.1);
}

.form-group .hint {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auth-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E8E8E8;
}

.auth-footer-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 24px;
}

.auth-footer-text a {
  color: var(--green);
  font-weight: 600;
  cursor: pointer;
}

.auth-footer-text a:hover {
  text-decoration: underline;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.88rem;
  color: var(--text-light);
}

.form-checkbox label a {
  color: var(--green);
  font-weight: 600;
}

.form-checkbox.age-check {
  background: #FFF3D6;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}

.form-checkbox.age-check label {
  font-size: 0.88rem;
  color: var(--text);
}

.form-checkbox.age-check label strong {
  color: var(--red);
}

.form-group input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  text-transform: uppercase;
  color: var(--text);
}

.highlight-card {
  border: 2px solid rgba(206, 17, 38, 0.15);
  background: linear-gradient(135deg, #FFF5F5, var(--white));
}

.highlight-card:hover {
  border-color: var(--red) !important;
}

/* ========== WHATSAPP BADGE ========== */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* ========== FLASH MESSAGES ========== */
.flash-message {
  padding: 16px 0;
  margin-top: 80px;
  font-size: 0.95rem;
  font-weight: 500;
}

.flash-message.flash-success {
  background: #E8F5E9;
  color: #2E7D32;
  border-bottom: 2px solid #4CAF50;
}

.flash-message.flash-error {
  background: #FFEBEE;
  color: #C62828;
  border-bottom: 2px solid #EF5350;
}

.flash-message p {
  margin: 0;
}

.form-error {
  background: #FFEBEE;
  color: #C62828;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow);
    gap: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-auth {
    display: none;
  }
  .nav-auth.mobile-visible {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .nav-auth.mobile-visible .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .hero p {
    font-size: 1rem;
    padding: 0 4px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
  }
  .hero-stats .stat {
    flex: 1;
    min-width: 100px;
  }
  .hero-stats .stat h3 {
    font-size: 1.3rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 24px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .category-card {
    padding: 24px 16px;
  }
  .category-card .icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
  .category-card h3 {
    font-size: 0.9rem;
  }
  .category-card p {
    font-size: 0.78rem;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .step:not(:last-child)::after {
    display: none;
  }
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .benefit-card {
    padding: 28px 20px;
  }
  .section {
    padding: 48px 0;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .section-header p {
    font-size: 0.95rem;
    padding: 0 8px;
  }
  .cta {
    padding: 60px 0;
  }
  .cta h2 {
    font-size: 1.6rem;
  }
  .cta p {
    font-size: 0.95rem;
  }
  .cta .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .search-bar {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  .search-bar input {
    width: 100%;
    padding: 10px 0;
    font-size: 0.95rem;
  }
  .search-bar .btn {
    width: 100%;
    justify-content: center;
  }
  .auth-page {
    flex-direction: column;
  }
  .auth-left {
    padding: 32px 20px;
    min-height: auto;
  }
  .auth-left-content .logo {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }
  .auth-left-content h2 {
    font-size: 1.3rem;
  }
  .auth-left-content p {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  .auth-testimonials {
    display: none;
  }
  .auth-right {
    padding: 24px 16px;
  }
  .auth-card .tabs {
    margin-bottom: 24px;
  }
  .auth-form h2 {
    font-size: 1.4rem;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .form-group input,
  .form-group select {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-checkbox {
    align-items: flex-start;
  }
  .form-checkbox label {
    font-size: 0.82rem;
  }
  .form-checkbox.age-check {
    padding: 12px;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  .auth-form .btn-primary {
    padding: 14px;
    font-size: 1rem;
  }
  .hero-actions .btn-primary {
    font-size: 0.95rem;
    padding: 14px 28px;
  }
    .container {
      padding: 0 16px;
    }
    .lang-toggle {
      font-size: 0.72rem;
      padding: 5px 12px;
    }
  }

  @media (max-width: 480px) {
    .navbar .container {
      height: 64px;
    }
  .nav-logo {
    font-size: 1.2rem;
  }
  .nav-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .hero {
    padding: 100px 0 48px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .hero-badge {
    font-size: 0.7rem;
  }
  .hero-stats {
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
  }
  .hero-stats .stat h3 {
    font-size: 1.1rem;
  }
  .hero-stats .stat p {
    font-size: 0.75rem;
  }
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .category-card {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .category-card .icon {
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
  }
  .category-card h3 {
    margin-bottom: 4px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  .step-number {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
  .section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 1.4rem;
  }
  .auth-left-content .logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .auth-right {
    padding: 20px 12px;
  }
  .auth-card {
    max-width: 100%;
  }
  .auth-card .tab {
    font-size: 0.85rem;
    padding: 10px 8px;
  }
  .form-group input[type="date"] {
    font-size: 0.9rem;
  }
  .footer {
    padding: 48px 0 0;
  }
  .footer-grid {
    gap: 24px;
  }
  .footer-bottom {
    font-size: 0.75rem;
  }
}

/* ===== DASHBOARD ===== */
.dash-wrapper {
  padding-top: 90px;
  min-height: 100vh;
  background: var(--bg);
}
.dash-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 32px 0 80px;
}
.dash-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
}
.dash-sidebar-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.dash-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  overflow: hidden;
}
.dash-sidebar-inner h3 {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.dash-role {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.dash-sidebar-inner hr {
  border: none;
  border-top: 1px solid #E8E8E8;
  margin: 16px 0;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 2px;
}
.dash-nav-item:hover {
  background: var(--green-light);
  color: var(--green);
}
.dash-nav-item.active {
  background: var(--green-light);
  color: var(--green);
  font-weight: 600;
}
.dash-nav-item.logout:hover {
  background: #FFF0F0;
  color: var(--red);
}
.dash-nav-icon {
  font-size: 1.05rem;
}

.dash-main {
  min-height: 60vh;
}
.dash-section {
  display: none;
  animation: fadeIn 0.25s ease;
}
.dash-section.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.dash-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.dash-section-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.dash-subtitle {
  color: var(--text-light);
  margin: 0;
  width: 100%;
}

/* Stats */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.dash-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.dash-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
}
.dash-stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Quick actions */
.dash-quick-actions h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.dash-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dash-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.dash-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.dash-action-icon {
  font-size: 1.6rem;
}

/* Profile grid */
.dash-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dash-profile-field {
  background: var(--bg);
  padding: 18px;
  border-radius: var(--radius-sm);
}
.dash-profile-field label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.dash-profile-field p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* Edit profile */
.dash-edit-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 600px;
}
.dash-edit-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Service cards */
.dash-service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  gap: 16px;
}
.dash-service-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.dash-service-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0 0 6px;
}
.dash-service-meta {
  font-size: 0.8rem;
  color: var(--text-light);
}
.status-active { color: var(--green); font-weight: 600; }
.dash-service-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn-sm {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-sm-edit {
  background: var(--green-light);
  color: var(--green);
}
.btn-sm-edit:hover {
  background: var(--green);
  color: white;
}
.btn-sm-delete {
  background: #FFF0F0;
  color: var(--red);
}
.btn-sm-delete:hover {
  background: var(--red);
  color: white;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--green);
  color: white;
}

.dash-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-light);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.dash-empty p {
  font-size: 1.05rem;
  margin: 0;
}

/* Dashboard responsive */
@media (max-width: 900px) {
  .dash-layout {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    position: static;
  }
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-actions-grid {
    grid-template-columns: 1fr;
  }
  .dash-profile-grid {
    grid-template-columns: 1fr;
  }
  .dash-service-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .dash-edit-form .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .dash-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== FORM PAGES (service create/edit) ===== */
.form-page {
  padding-top: 110px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--bg);
}
.form-page-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-page-card h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-subtitle {
  color: var(--text-light);
  margin-bottom: 32px;
}
.form-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-decoration: none;
}
.form-back-link:hover {
  color: var(--green);
}
.form-section {
  margin-bottom: 28px;
}
.form-section h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E8E8E8;
}
.lang-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.lang-badge.en {
  background: #FFF0E0;
  color: var(--gold);
}
.form-page-card textarea {
  min-height: 120px;
  resize: vertical;
}
.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .form-page-card {
    padding: 24px 16px;
  }
}

/* ===== SERVICE DETAIL ===== */
.sd-page {
  padding-top: 110px;
  padding-bottom: 80px;
}
.sd-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.sd-main h1 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}
.sd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.sd-cat {
  background: var(--green-light);
  color: var(--green);
  padding: 2px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
}
.sd-desc {
  background: var(--bg);
  padding: 24px;
  border-radius: var(--radius-sm);
  line-height: 1.8;
  white-space: pre-wrap;
}
.sd-sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.sd-price-main {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 20px;
}
.sd-price-main small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-1px);
}
.sd-seller {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sd-seller-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.sd-seller-name {
  font-weight: 600;
}
.sd-seller-role {
  font-size: 0.82rem;
  color: var(--text-light);
}
.sd-not-found {
  text-align: center;
  padding: 120px 0;
}
.sd-not-found h1 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
@media (max-width: 800px) {
  .sd-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FEED PAGE ===== */
.feed-page {
  padding-top: 110px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--bg);
}
.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.feed-header h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.feed-subtitle {
  color: var(--text-light);
  margin: 4px 0 0;
}
.feed-search {
  min-width: 280px;
}
.feed-search input {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #D0D0D0;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.feed-search input:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px var(--green-light);
}
.feed-filters {
  display: flex;
  gap: 8px;
  margin: 20px 0 28px;
}
.feed-filter {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid #D0D0D0;
  background: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
}
.feed-filter:hover {
  border-color: var(--green);
  color: var(--green);
}
.feed-filter.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.feed-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feed-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.feed-card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  overflow: hidden;
}
.feed-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--dark);
}
.feed-card-role {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  background: var(--green-light);
  padding: 2px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}
.feed-card-bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}
.feed-card-bio-empty {
  font-style: italic;
  color: #CCC;
}
.feed-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid #EEE;
}
.feed-card-services {
  font-size: 0.8rem;
  color: var(--text-light);
}
.feed-card-wa {
  padding: 8px 18px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.feed-card-wa:hover {
  background: #1DA851;
  transform: scale(1.02);
}
.feed-loading, .feed-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}
.feed-loading {
  font-size: 1rem;
}

/* ===== DASHBOARD V2 ===== */
.dash-wrapper {
  padding-top: 90px;
  min-height: 100vh;
  background: var(--bg);
}
.dash-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 32px 0 80px;
}
.dash-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
}
.dash-sidebar-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.dash-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  position: relative;
  overflow: hidden;
}
.dash-avatar-badge {
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 22px;
  height: 22px;
  background: #25D366;
  border: 3px solid white;
  border-radius: 50%;
}
.dash-sidebar-inner h3 {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--dark);
}
.dash-role {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.dash-sidebar-inner hr {
  border: none;
  border-top: 1px solid #E8E8E8;
  margin: 16px 0;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 2px;
}
.dash-nav-item:hover {
  background: var(--green-light);
  color: var(--green);
}
.dash-nav-item.active {
  background: var(--green-light);
  color: var(--green);
  font-weight: 600;
}
.dash-nav-item.logout { color: var(--red); }
.dash-nav-item.logout:hover { background: #FFF0F0; color: var(--red); }
.dash-nav-icon { font-size: 1.05rem; width: 22px; text-align: center; }

.dash-main { min-height: 60vh; }
.dash-section {
  display: none;
  animation: fadeSlideIn 0.3s ease;
}
.dash-section.active { display: block; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.dash-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.dash-section-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.dash-subtitle {
  color: var(--text-light);
  margin: 0;
  width: 100%;
}

/* Stats cards */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.dash-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: var(--shadow);
  text-align: center;
}
.dash-stat-card .stat-icon { font-size: 1.4rem; margin-bottom: 6px; }
.dash-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
}
.dash-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Quick actions */
.dash-quick-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.dash-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dash-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}
.dash-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.dash-action-card .dash-action-icon { font-size: 1.6rem; }

/* Profile */
.dash-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dash-profile-field {
  background: var(--bg);
  padding: 18px;
  border-radius: var(--radius-sm);
}
.dash-profile-field label {
  font-size: 0.76rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.dash-profile-field p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.dash-profile-field-full {
  grid-column: 1 / -1;
}
.dash-profile-field-full p {
  line-height: 1.6;
  font-weight: 400;
  white-space: pre-line;
}

/* Edit */
.dash-edit-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 600px;
}
.dash-edit-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Service cards */
.dash-service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  gap: 16px;
  transition: var(--transition);
}
.dash-service-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.dash-service-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.dash-service-info h4 a { color: var(--dark); text-decoration: none; }
.dash-service-info h4 a:hover { color: var(--green); }
.dash-service-info p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin: 0 0 6px;
}
.dash-service-meta {
  font-size: 0.78rem;
  color: var(--text-light);
}
.status-active { color: var(--green); font-weight: 600; }
.status-inactive { color: var(--text-light); }
.dash-service-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn-sm {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-sm-edit { background: var(--green-light); color: var(--green); }
.btn-sm-edit:hover { background: var(--green); color: white; }
.btn-sm-delete { background: #FFF0F0; color: var(--red); }
.btn-sm-delete:hover { background: var(--red); color: white; }

/* Avatar upload */
.avatar-upload {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 16px;
  background: #F9FAFB;
  border-radius: var(--radius-sm);
  border: 2px dashed #D1D5DB;
}
.avatar-upload-preview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.avatar-upload-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.avatar-upload-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--green);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  width: fit-content;
}
.avatar-upload-btn:hover { background: var(--green-dark); }
.avatar-upload-info .hint { font-size: 0.78rem; color: var(--text-light); }

.bio-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E8E8E8;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.92rem;
  resize: vertical;
  transition: var(--transition);
  line-height: 1.6;
  background: #F9FAFB;
}
.bio-textarea:focus {
  outline: none;
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(13,122,62,0.08);
}

.dash-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-light);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.dash-empty p { font-size: 1rem; margin: 0 0 4px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline:hover { background: var(--green); color: white; }

@media (max-width: 900px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-actions-grid { grid-template-columns: 1fr; }
  .dash-profile-grid { grid-template-columns: 1fr; }
  .dash-service-card { flex-direction: column; align-items: flex-start; }
  .dash-edit-form .form-row { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .feed-header { flex-direction: column; }
  .feed-search { min-width: 100%; }
}
@media (max-width: 480px) {
  .dash-stats { grid-template-columns: 1fr; }
  .feed-filters { flex-wrap: wrap; }
}

