/* ==========================================================
   Vadhavan Properties — Custom Stylesheet
   Complements Tailwind CSS CDN
   ========================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Custom Properties */
:root {
  --primary: #1B3A5C;
  --primary-dark: #0f2236;
  --primary-light: #2a5282;
  --accent: #C9A96E;
  --accent-dark: #a8843a;
  --accent-light: #e8c98a;
  --dark: #0F1F2E;
  --surface: #F8F5F0;
  --white: #FFFFFF;
  --text: #2d3748;
  --text-muted: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(27,58,92,0.06);
  --shadow: 0 4px 24px rgba(27,58,92,0.10);
  --shadow-lg: 0 12px 48px rgba(27,58,92,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background-color: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── Navbar ── */
#navbar {
  transition: var(--transition);
  will-change: background-color, box-shadow;
}

#navbar.scrolled {
  background-color: var(--primary) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

#navbar.scrolled .nav-logo-text { color: #fff; }

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Mobile menu */
#mobile-menu {
  display: none;
  animation: slideDown 0.25s ease;
}

#mobile-menu.open { display: block; }

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

/* ── Hero Section ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,31,46,0.85) 0%,
    rgba(27,58,92,0.70) 60%,
    rgba(15,31,46,0.55) 100%
  );
}

.hero-content { position: relative; z-index: 2; }

/* Search Bar */
.search-bar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.search-select,
.search-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
}

.search-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border);
}

/* ── Section Titles ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--primary);
}

.accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}

/* ── Property Cards ── */
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.property-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.property-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-card-img-wrap img {
  transform: scale(1.08);
}

.property-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.property-card-status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(22,163,74,0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.property-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.property-price {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent-dark);
  font-family: 'Inter', sans-serif;
}

.property-price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.property-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--primary);
  margin: 8px 0 4px;
  line-height: 1.3;
}

.property-location {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-meta {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 12px 0;
}

.property-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.property-meta-item i {
  color: var(--accent);
  font-size: 0.875rem;
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  margin-top: auto;
}

.btn-view-details:hover {
  background: var(--accent);
  transform: none;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ── Category Cards ── */
.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.category-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(27,58,92,0.08), rgba(201,169,110,0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

/* ── Stats Section ── */
.stat-card {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(201,169,110,0.2);
  line-height: 1;
}

.star-rating { color: #FBBF24; font-size: 1rem; }

/* ── Feature Cards (Why Us) ── */
.feature-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid transparent;
  transition: var(--transition);
}

.feature-card:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(27,58,92,0.08), rgba(201,169,110,0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--accent);
}

/* ── Filter Sidebar ── */
.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.filter-group { margin-bottom: 24px; }

.filter-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.2s;
}

.filter-checkbox:hover { color: var(--accent-dark); }

.filter-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Price Range */
input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ── Property Details ── */
.gallery-thumb {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--accent); }

.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,58,92,0.06);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.info-chip i { color: var(--accent); }

/* ── Admin Sidebar ── */
.admin-sidebar {
  width: 260px;
  min-height: 100vh;
  background: #052e16;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

.admin-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  margin: 2px 0;
}

.admin-sidebar-link:hover,
.admin-sidebar-link.active {
  background: rgba(201,169,110,0.15);
  color: var(--accent);
}

.admin-sidebar-link i { width: 20px; text-align: center; }

.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  background: #f1f5f9;
}

.stat-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-widget-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Data Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  background: #f8fafc;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text);
}

.data-table tr:hover td { background: #f8fafc; }

.action-btn {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

/* ── Footer ── */
.footer-link {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: block;
  padding: 4px 0;
}

.footer-link:hover { color: var(--accent); padding-left: 6px; }

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--surface);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── Contact Page ── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* ── Form Styles ── */
.form-group { margin-bottom: 20px; }

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

.form-label span.required { color: #ef4444; margin-left: 4px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.form-textarea { resize: vertical; min-height: 120px; }

/* ── Loading Skeleton ── */
.skeleton {
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Scroll to Top ── */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(201,169,110,0.4);
  transition: var(--transition);
  border: none;
}

#scroll-top.visible {
  display: flex;
  animation: popIn 0.3s ease;
}

#scroll-top:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-3px);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Pagination ── */
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ── Responsive Admin ── */
@media (max-width: 768px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-content {
    margin-left: 0;
  }
}

/* ── Utility Animations ── */
.fade-in {
  animation: fadeIn 0.6s ease both;
}

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

.slide-in-left {
  animation: slideLeft 0.6s ease both;
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Image Upload Preview ── */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: #f8fafc;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--accent);
  background: rgba(201,169,110,0.05);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* ── Map Placeholder ── */
.map-placeholder {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.map-placeholder::after {
  content: '📍 Map View — Google Maps will be integrated here';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Toast Notification ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Admin Nav Links (PHP backend) ─────────────────────────── */
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.65);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}
.admin-nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
}
.admin-nav-link.active {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}
.admin-nav-section {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  padding: 12px 14px 4px;
  margin: 0;
}

/* ── Admin Stat Cards ───────────────────────────────────────── */
.admin-stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-left: 4px solid #14532d;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-stat-icon {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: #14532d;
}
.admin-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: #1a1a2e;
  font-family: 'Inter', sans-serif;
}
.admin-stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Admin Table ────────────────────────────────────────────── */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.admin-table th {
  text-align: left;
  padding: 12px 16px;
  background: #f8fafc;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #e5e7eb;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
  color: #374151;
}
.admin-table tr:hover td { background: #f9fafb; }

/* ── Admin Button Utilities ─────────────────────────────────── */
.btn-admin-sm {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-forest {
  background: #14532d;
  color: #fff;
}
.btn-forest:hover { background: #166534; }
.btn-gray {
  background: #f3f4f6;
  color: #6b7280;
}
.btn-gray:hover { background: #e5e7eb; }
