/*
Theme Name: BuildPro
Theme URI: https://buildpro.com
Author: BuildPro Team
Description: Construction job marketplace, blog, and shop theme with full admin control.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: buildpro
Tags: construction, jobs, marketplace, blog, shop
*/

/* ============================================================
   DESIGN TOKENS
   Palette: Steel (#1A2332 deep navy), Amber (#F5A623 safety orange),
   Concrete (#8C8C8C), Offwhite (#F7F5F0), White (#FFFFFF)
   Type: 'Barlow Condensed' display, 'Inter' body
   Signature: Diagonal cut dividers + amber underline accents
============================================================ */

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

:root {
  --steel:    #1A2332;
  --amber:    #F5A623;
  --amber-dk: #C8841A;
  --concrete: #8C8C8C;
  --dust:     #D4CFC6;
  --offwhite: #F7F5F0;
  --white:    #FFFFFF;
  --danger:   #D0021B;
  --success:  #2E7D32;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius: 4px;
  --shadow: 0 2px 12px rgba(26,35,50,0.10);
  --shadow-lg: 0 8px 32px rgba(26,35,50,0.16);
  --transition: 0.2s ease;
}

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

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

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

a { color: var(--amber-dk); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--steel);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section--dark { background: var(--steel); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--amber { background: var(--amber); color: var(--steel); }
.section--light { background: var(--white); }

/* Diagonal cut divider — signature element */
.diagonal-cut {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding-bottom: 100px !important;
}
.diagonal-cut-reverse {
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  padding-top: 100px !important;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--steel);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dk);
  border-color: var(--amber-dk);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--steel);
}
.btn-outline-dark {
  background: transparent;
  color: var(--steel);
  border-color: var(--steel);
}
.btn-outline-dark:hover {
  background: var(--steel);
  color: var(--white);
}
.btn-danger {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header / Nav ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--steel);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.site-logo span { color: var(--amber); }

.nav-main { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-main a {
  color: var(--dust);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-main a:hover,
.nav-main .current a { color: var(--amber); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Footer ── */
#site-footer {
  background: var(--steel);
  color: var(--dust);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 12px; color: var(--concrete); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: var(--concrete); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--concrete);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-body { padding: 24px; }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--offwhite); background: var(--offwhite); }

/* Job card accent */
.job-card { border-left: 4px solid var(--amber); }
.job-card .job-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0; }
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--concrete);
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-amber   { background: rgba(245,166,35,0.15); color: var(--amber-dk); }
.badge-success { background: rgba(46,125,50,0.12);  color: var(--success); }
.badge-danger  { background: rgba(208,2,27,0.1);   color: var(--danger); }
.badge-gray    { background: var(--offwhite); color: var(--concrete); }
.badge-steel   { background: var(--steel); color: var(--white); }

/* ── Grid layouts ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--dust);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--steel);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.18);
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }

/* ── Hero ── */
.hero {
  background: var(--steel);
  color: var(--white);
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 600px; height: 100%;
  background: url('assets/images/hero-pattern.svg') no-repeat center/cover;
  opacity: 0.06;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero p { font-size: 1.1rem; color: var(--dust); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.hero-stat-label { font-size: 0.82rem; color: var(--concrete); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Dashboard ── */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; min-height: 80vh; }
.dashboard-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 0;
  height: fit-content;
  position: sticky;
  top: 88px;
}
.sidebar-nav { list-style: none; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--concrete);
  font-weight: 500;
  font-size: 0.92rem;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.sidebar-nav a:hover,
.sidebar-nav .active a {
  color: var(--steel);
  background: var(--offwhite);
  border-left-color: var(--amber);
}
.sidebar-nav .icon { width: 18px; text-align: center; }
.dashboard-main { min-width: 0; }
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--amber);
}
.stat-card .value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--steel);
  line-height: 1;
}
.stat-card .label { font-size: 0.8rem; color: var(--concrete); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ── Tables ── */
.data-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.data-table th {
  background: var(--steel);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
}
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--offwhite); font-size: 0.92rem; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(247,245,240,0.6); }
.data-table .actions { display: flex; gap: 8px; }

/* ── Alerts / Notices ── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 20px;
  border-left: 4px solid;
}
.alert-success { background: rgba(46,125,50,0.08); border-color: var(--success); color: var(--success); }
.alert-error   { background: rgba(208,2,27,0.07); border-color: var(--danger); color: var(--danger); }
.alert-info    { background: rgba(245,166,35,0.1); border-color: var(--amber); color: var(--amber-dk); }

/* ── Blog ── */
.blog-card .blog-thumb { height: 200px; overflow: hidden; }
.blog-card .blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-cat {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dk);
  margin-bottom: 8px;
}
.blog-meta { font-size: 0.82rem; color: var(--concrete); margin-top: 10px; }

/* ── Shop ── */
.product-card .product-img { height: 220px; overflow: hidden; background: var(--offwhite); display: flex; align-items: center; justify-content: center; }
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--steel);
}
.product-price span { font-size: 0.9rem; font-weight: 400; color: var(--concrete); }

/* ── Page header ── */
.page-header {
  background: var(--steel);
  padding: 48px 0;
  color: var(--white);
}
.page-header h1 { color: var(--white); }
.page-header .breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: var(--concrete); margin-bottom: 12px; }
.page-header .breadcrumb a { color: var(--amber); }

/* ── Bid Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,35,50,0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.modal-header {
  background: var(--steel);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 { color: var(--white); font-size: 1.3rem; }
.modal-close { background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; line-height: 1; }
.modal-body { padding: 28px 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--offwhite); display: flex; gap: 12px; justify-content: flex-end; }

/* ── Auth pages ── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--steel);
  padding: 40px 20px;
}
.auth-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  padding: 40px;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-tabs { display: flex; border-bottom: 2px solid var(--offwhite); margin-bottom: 28px; }
.auth-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--concrete);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.auth-tab.active { color: var(--steel); border-bottom-color: var(--amber); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-main { display: none; }
  .nav-main.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--steel);
    padding: 16px;
    z-index: 999;
  }
  .mobile-menu-toggle { display: block; }
  .header-actions .btn { display: none; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 64px 0 80px; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}














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

  :root {
    --steel: #1a1f2e;
    --concrete: #2d3447;
    --iron: #3d4560;
    --amber: #f5a623;
    --amber-dark: #d4881a;
    --white: #f4f1eb;
    --muted: #8891a8;
    --danger: #e05252;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--steel);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* Background texture */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px),
      repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
    pointer-events: none;
    z-index: 0;
  }

  .page { position: relative; z-index: 1; }

  /* NAV */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--amber);
  }

  .logo span { color: var(--white); }

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

  .btn {
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    display: inline-block;
  }

  .btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
  }

  .btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

  .btn-primary {
    background: var(--amber);
    color: var(--steel);
  }

  .btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }

  /* HERO */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    text-align: center;
  }

  .hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.95;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.4s;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--amber);
  }

  .hero p {
    max-width: 540px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.6s;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.8s;
  }

  .btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }

  /* CARDS */
  .role-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 1s;
  }

  .role-card {
    background: var(--concrete);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
  }

  .role-card:hover { border-color: var(--amber); transform: translateY(-3px); }

  .role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .role-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--amber);
    margin-bottom: 0.75rem;
  }

  .role-card p { color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }

  /* LOGIN MODAL */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 100;
    align-items: center;
    justify-content: center;
  }

  .modal-overlay.active { display: flex; }

  .modal {
    background: var(--concrete);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    position: relative;
    animation: scaleIn 0.3s ease;
  }

  .modal-close {
    position: absolute;
    top: 1rem; right: 1.2rem;
    background: none; border: none;
    color: var(--muted); font-size: 1.5rem;
    cursor: pointer;
  }

  .modal h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }

  .modal-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

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

  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
  }

  .form-group input, .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--steel);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus, .form-group select:focus {
    border-color: var(--amber);
  }

  .form-group select option { background: var(--steel); }

  .tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .tab {
    padding: 0.6rem 1.2rem;
    background: none;
    border: none;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
  }

  .tab.active { color: var(--amber); border-bottom-color: var(--amber); }

  .tab-content { display: none; }
  .tab-content.active { display: block; }

  .form-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
  }

  .form-footer a { color: var(--amber); cursor: pointer; text-decoration: none; }

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

  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  /* DEMO NOTICE */
  .demo-notice {
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--amber);
    margin-bottom: 1.5rem;
    text-align: center;
  }