/* ===== Vegas Epoxy Pro — Stylesheet ===== */
:root {
  --primary: #0a7c5a;
  --primary-dark: #065f46;
  --primary-light: #d1fae5;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --max-width: 1140px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); text-decoration: underline; }

/* ===== Header / Nav ===== */
.navbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; color: var(--primary); }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 24px; align-items: center; list-style: none; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--text-muted); }
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); text-decoration: none; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #065f46 0%, #0a7c5a 50%, #10b981 100%);
  color: #fff;
  padding: 60px 20px 50px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 28px;
}

/* ===== Search Bar ===== */
.search-bar {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  background: #fff;
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: var(--shadow-lg);
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text);
}
.search-bar input:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.search-bar button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.search-bar button:hover { background: var(--primary-dark); }

/* ===== Filter Pills ===== */
.filters {
  max-width: var(--max-width);
  margin: 28px auto 8px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.filter-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-right: 4px; }
.filter-pill {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ===== Listings Grid ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 32px auto 16px;
  max-width: var(--max-width);
  padding: 0 20px;
  letter-spacing: -0.02em;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 60px;
}

.listing-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.listing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.listing-card.featured {
  border: 2px solid var(--accent);
  background: #fffbeb;
}
.featured-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.premium-badge {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}
.listing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.listing-card h3 a { color: var(--text); }
.listing-card h3 a:hover { color: var(--primary); text-decoration: none; }
.listing-area {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.listing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.listing-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.listing-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); text-decoration: none; }
.btn-sm { padding: 6px 14px; font-size: 0.82rem; }

/* ===== No results ===== */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.no-results h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  color: #fff;
  margin: 40px auto;
  max-width: var(--max-width);
}
.cta-banner h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.cta-banner p { font-size: 1.05rem; opacity: 0.95; margin-bottom: 20px; }
.cta-banner .btn { background: #fff; color: var(--accent-dark); font-size: 1rem; padding: 12px 28px; }
.cta-banner .btn:hover { background: #fef3c7; }

/* ===== Detail Page ===== */
.detail-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 40px 20px;
}
.detail-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.detail-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.detail-section { margin-bottom: 32px; }
.detail-section h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.info-label { font-weight: 600; min-width: 120px; color: var(--text-muted); }
.info-value { flex: 1; }

/* ===== Forms ===== */
.form-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 580px;
  margin: 40px auto;
}
.form-card h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.form-card p { color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }

/* ===== Pricing Tiers ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 0 20px;
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  position: relative;
}
.pricing-card.featured-tier { border: 2px solid var(--primary); }
.pricing-card.premium-tier { border: 2px solid var(--accent); }
.pricing-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin: 12px 0; }
.pricing-card.premium-tier .price { color: var(--accent-dark); }
.pricing-card .price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-features { list-style: none; margin: 20px 0 28px; text-align: left; }
.pricing-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ===== Content / SEO ===== */
.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.content-section h2 { font-size: 1.5rem; font-weight: 800; margin: 28px 0 12px; }
.content-section h3 { font-size: 1.15rem; font-weight: 700; margin: 20px 0 8px; }
.content-section p { margin-bottom: 14px; color: var(--text-muted); }
.content-section ul, .content-section ol { margin: 12px 0 14px 20px; color: var(--text-muted); }
.content-section li { margin-bottom: 6px; }

.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.92rem;
}
.cost-table th, .cost-table td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.cost-table th { background: var(--primary-light); color: var(--primary-dark); font-weight: 700; }
.cost-table tr:nth-child(even) { background: var(--bg); }

/* ===== Footer ===== */
.footer {
  background: #1e293b;
  color: #94a3b8;
  padding: 48px 20px 24px;
  margin-top: 40px;
}
.footer-container { max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: #94a3b8; font-size: 0.9rem; }
.footer ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 8px;
  font-style: italic;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav-links { display: flex; flex-wrap: wrap; gap: 12px; }
  .nav-container { height: auto; padding: 12px 20px; flex-wrap: wrap; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .listing-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .detail-header h1 { font-size: 1.4rem; }
  .info-label { min-width: 80px; }
  .search-bar { flex-direction: column; }
  .search-bar button { width: 100%; }
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none !important; }
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.alert-info { background: var(--primary-light); color: var(--primary-dark); }
.alert-success { background: #dcfce7; color: #166534; }