/* ============================================================
   Aylesbury Business Directory – Stylesheet
   ============================================================ */

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

:root {
  --color-primary: #1d4ed8;
  --color-primary-dark: #1e40af;
  --color-primary-light: #dbeafe;
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-bg: #f9fafb;
  --color-white: #ffffff;
  --color-featured: #fef3c7;
  --color-featured-border: #fbbf24;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary-light);
  text-decoration: none;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: var(--color-primary-light);
  text-decoration: none;
}

.btn-sm { padding: 7px 14px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 106px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.logo-img { height: 90px; width: 90px; border-radius: 8px; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
  background: var(--color-primary-light);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--color-text);
  padding: 4px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a8a 100%);
  color: var(--color-white);
  padding: 72px 0 56px;
}

.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }

.hero-text h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 700px;
}
.hero-text .highlight { color: var(--color-accent); }
.hero-subtitle { margin-top: 12px; font-size: 18px; opacity: 0.88; max-width: 560px; }

.search-bar-wrap { width: 100%; max-width: 720px; }

.search-form {
  display: flex;
  gap: 8px;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  flex-wrap: wrap;
}

.search-input {
  flex: 1 1 200px;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--color-text);
  background: transparent;
}

.search-select {
  flex: 0 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  cursor: pointer;
  outline: none;
}

.search-btn { flex: 0 0 auto; }

.hero-stats {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  opacity: 0.8;
}
.hero-stats strong { font-weight: 700; }

/* ============================================================
   Section Headers
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 700;
}

.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================================
   Cards Grid
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.cards-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ============================================================
   Business Card
   ============================================================ */
.biz-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.biz-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  text-decoration: none;
}
.biz-card.is-featured {
  border-color: var(--color-featured-border);
  background: var(--color-featured);
}

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

.biz-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.biz-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  overflow: hidden;
}
.biz-avatar img { width: 100%; height: 100%; object-fit: cover; }

.biz-card-title-row { flex: 1; min-width: 0; }

.biz-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.biz-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  flex-wrap: wrap;
}

.cat-badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 2px 8px;
  border-radius: 99px;
}

.subcat-badge {
  font-size: 12px;
  color: var(--color-text-muted);
}

.biz-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.biz-card-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(0,0,0,.015);
}

.biz-phone {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-featured { background: var(--color-accent); color: #78350f; }
.badge-standard { background: #e0e7ff; color: #3730a3; }

/* Tags */
.tags-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tag {
  font-size: 12px;
  background: var(--color-bg);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 2px 8px;
  border-radius: 99px;
}

/* ============================================================
   Category Grid
   ============================================================ */
.categories-section { background: var(--color-white); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  color: var(--color-text);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.category-card:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--color-primary);
}

.cat-icon { font-size: 32px; }
.cat-name { font-size: 14px; font-weight: 600; }
.cat-count { font-size: 13px; color: var(--color-text-muted); }

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, var(--color-primary) 100%);
  color: var(--color-white);
  padding: 56px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-inner h2 { font-size: 26px; font-weight: 700; }
.cta-inner p { margin-top: 6px; opacity: 0.88; font-size: 16px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo { color: var(--color-white); margin-bottom: 10px; }
.footer-brand p { font-size: 14px; }

.footer-links h4 { color: var(--color-white); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #9ca3af; font-size: 14px; }
.footer-links a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 20px 0;
  font-size: 13px;
  color: #6b7280;
}

/* ============================================================
   Page Header
   ============================================================ */
.page-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}
.page-header h1 { font-size: 28px; font-weight: 700; }
.page-header p { color: var(--color-text-muted); margin-top: 4px; }

/* ============================================================
   Businesses Listing Page
   ============================================================ */
.listings-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.filters-sidebar {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 122px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-block h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin-bottom: 10px; }

.filter-input, .filter-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
}
.filter-input:focus, .filter-select:focus { border-color: var(--color-primary); }

.filter-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.filter-label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; padding: 4px 6px; border-radius: var(--radius-sm); transition: background var(--transition); }
.filter-label:hover { background: var(--color-bg); }
.filter-label input { accent-color: var(--color-primary); }

.reset-btn { margin-top: -4px; }

/* Toolbar */
.listings-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.results-count { font-size: 14px; color: var(--color-text-muted); font-weight: 500; }

/* Listing list (horizontal cards) */
.listings-list { display: flex; flex-direction: column; gap: 16px; }

.listing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: var(--color-text);
}
.listing-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
  text-decoration: none;
}
.listing-card.is-featured {
  border-color: var(--color-featured-border);
  background: var(--color-featured);
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.featured-banner {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 20px;
  text-transform: uppercase;
  width: 100%;
}

.listing-card-body {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  width: 100%;
}

.listing-website-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: 99px;
  text-decoration: none;
  white-space: nowrap;
}
.listing-website-link:hover { background: #bfdbfe; text-decoration: none; }

.listing-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  overflow: hidden;
}
.listing-avatar img { width: 100%; height: 100%; object-fit: cover; }

.listing-content { flex: 1; min-width: 0; }

.listing-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.listing-name { font-size: 17px; font-weight: 700; }
.listing-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.5; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.listing-footer { display: flex; align-items: center; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.listing-address { font-size: 13px; color: var(--color-text-muted); }
.listing-phone { font-size: 13px; color: var(--color-text-muted); }
.listing-cta { margin-left: auto; flex-shrink: 0; }

.no-results { text-align: center; padding: 48px; color: var(--color-text-muted); font-size: 16px; }
.hidden { display: none !important; }

/* ============================================================
   Business Profile Page
   ============================================================ */
.breadcrumb {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-primary); }

.profile-section { padding: 40px 0 64px; }

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.profile-header {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

.profile-header-text { flex: 1; min-width: 0; }
.profile-meta-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }

.cat-tag, .subcat-tag {
  font-size: 13px;
  padding: 2px 10px;
  border-radius: 99px;
}
.cat-tag { background: var(--color-primary-light); color: var(--color-primary); font-weight: 600; }
.subcat-tag { background: var(--color-bg); color: var(--color-text-muted); border: 1px solid var(--color-border); }

.profile-name { font-size: 26px; font-weight: 700; }
.profile-address { color: var(--color-text-muted); font-size: 14px; margin-top: 4px; }

.profile-body {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.profile-body h2 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.profile-body p { color: var(--color-text-muted); line-height: 1.7; font-size: 15px; }
.profile-body .tags-row { margin-top: 20px; }

/* Contact Card */
.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-card h3 { font-size: 16px; font-weight: 700; }
.contact-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.contact-icon { flex-shrink: 0; font-size: 16px; }
.contact-link { color: var(--color-primary); word-break: break-all; }
.contact-address { color: var(--color-text-muted); }

.social-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.social-link {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  text-decoration: none;
}
.social-facebook { background: #1877f2; color: white; }
.social-facebook:hover { background: #166fe5; color: white; }
.social-instagram { background: linear-gradient(135deg, #e1306c, #f77737); color: white; }
.social-instagram:hover { opacity: 0.9; color: white; }

.listing-info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.listing-info-card a { color: var(--color-primary); }

/* ============================================================
   Skeleton Loading
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton-card {
  height: 220px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
}

/* ============================================================
   Error state
   ============================================================ */
.error-state {
  text-align: center;
  padding: 64px 20px;
}
.error-state h2 { font-size: 22px; margin-bottom: 10px; }

/* ============================================================
   Add Listing Page
   ============================================================ */
.form-section { padding: 48px 0 80px; }

.form-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-card h2 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group .hint { font-size: 13px; color: var(--color-text-muted); margin-top: 4px; }

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--color-text);
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
  background: var(--color-white);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--color-primary); }
.form-textarea { resize: vertical; min-height: 100px; }

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

.tier-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tier-card { border: 2px solid var(--color-border); border-radius: var(--radius); padding: 16px; cursor: pointer; transition: border-color var(--transition), background var(--transition); }
.tier-card input[type="radio"] { display: none; }
.tier-card:has(input:checked), .tier-card.selected { border-color: var(--color-primary); background: var(--color-primary-light); }
.tier-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.tier-card p { font-size: 12px; color: var(--color-text-muted); }
/* Logo upload */
.logo-upload-area {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.logo-upload-area:hover { border-color: var(--color-primary); background: var(--color-primary-light); }
.logo-file-input { display: none; }
.logo-upload-prompt { display: flex; flex-direction: column; align-items: center; gap: 6px; pointer-events: none; }
.logo-upload-icon { font-size: 32px; }
.logo-upload-text { font-size: 15px; font-weight: 600; color: var(--color-primary); }
.logo-upload-hint { font-size: 12px; color: var(--color-text-muted); }
.logo-preview { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.logo-preview img { max-height: 120px; max-width: 240px; border-radius: var(--radius-sm); border: 1px solid var(--color-border); object-fit: contain; }
.logo-remove-btn { font-size: 13px; color: #dc2626; background: none; border: 1px solid #dc2626; border-radius: 99px; padding: 4px 12px; cursor: pointer; }
.logo-remove-btn:hover { background: #fee2e2; }

.tier-price { font-size: 16px; font-weight: 700; color: var(--color-primary); margin-top: 6px; }
.tier-payment-note { font-size: 11px; color: var(--color-text-muted); margin-top: 4px; display: block; }
.tier-card--featured .tier-price { color: var(--color-accent-dark); }

/* ============================================================
   Grow / MJL Online Services page
   ============================================================ */

/* Accent button (amber) */
.btn-accent {
  background: var(--color-accent);
  color: #78350f;
  border-color: var(--color-accent);
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #78350f;
  text-decoration: none;
}

/* Hero */
.grow-hero {
  background: linear-gradient(135deg, #1B2A4A 0%, #0f1e36 100%);
  color: var(--color-white);
  padding: 80px 0 72px;
  text-align: center;
}
.grow-hero-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.grow-hero-badge {
  display: inline-block;
  background: rgba(245,158,11,.15);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,.35);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 99px;
}
.grow-hero h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 700; line-height: 1.15; max-width: 700px; }
.grow-hero-sub { font-size: 18px; opacity: 0.88; max-width: 560px; }
.grow-hero-trust { display: flex; gap: 12px; align-items: center; font-size: 14px; opacity: 0.7; flex-wrap: wrap; justify-content: center; }

/* Section helpers */
.section-header.centered { text-align: center; justify-content: center; flex-direction: column; gap: 8px; }
.section-intro { color: var(--color-text-muted); font-size: 16px; max-width: 540px; margin: 0 auto; }

/* Services */
.grow-services-section { background: var(--color-white); }
.grow-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.grow-service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.grow-service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.grow-service-card--highlight {
  background: #1B2A4A;
  border-color: #f59e0b;
  color: var(--color-white);
}
.grow-service-card--highlight p, .grow-service-card--highlight .grow-service-points li { color: #cbd5e1; }
.grow-service-card--highlight h3 { color: var(--color-white); }
.grow-service-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #78350f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.grow-service-icon { font-size: 40px; }
.grow-service-card h3 { font-size: 19px; font-weight: 700; line-height: 1.3; }
.grow-service-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; }
.grow-service-points { list-style: none; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.grow-service-points li { font-size: 14px; color: var(--color-text-muted); }
.grow-service-card--highlight .grow-service-points li { color: #94a3b8; }

/* Why Us */
.grow-why-section { background: var(--color-bg); }
.grow-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.grow-why-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.grow-why-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.grow-why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.grow-why-item p { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }

/* Pricing */
.grow-pricing-section {
  background: linear-gradient(135deg, #1B2A4A 0%, #0f1e36 100%);
  color: var(--color-white);
}
.grow-pricing-section .section-header.centered h2 { color: var(--color-white); }
.grow-pricing-section .section-intro { color: #94a3b8; }
.grow-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.grow-pricing-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.grow-pricing-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.grow-pricing-card--popular {
  background: rgba(245,158,11,.12);
  border-color: #f59e0b;
}
.grow-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #78350f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.grow-pricing-icon { font-size: 36px; }
.grow-pricing-card h3 { font-size: 18px; font-weight: 700; color: var(--color-white); }
.grow-pricing-price { font-size: 28px; color: #fbbf24; }
.grow-pricing-price strong { font-size: 36px; font-weight: 700; }
.grow-pricing-period { font-size: 16px; opacity: 0.7; }
.grow-pricing-card p { font-size: 13px; color: #94a3b8; line-height: 1.6; flex: 1; }
.grow-pricing-smallprint {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: #64748b;
}
.grow-pricing-smallprint a { color: #94a3b8; }
.grow-pricing-smallprint a:hover { color: #fbbf24; }

/* Contact */
.grow-contact-section { background: var(--color-bg); }
.grow-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: start;
}
.grow-contact-text h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.grow-contact-text > p { color: var(--color-text-muted); font-size: 16px; margin-bottom: 28px; }
.grow-contact-details { display: flex; flex-direction: column; gap: 14px; }
.grow-contact-detail { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--color-text-muted); }
.grow-contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

@media (max-width: 1024px) {
  .grow-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .grow-services-grid { grid-template-columns: 1fr; }
  .grow-pricing-grid { grid-template-columns: 1fr; }
  .grow-contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .grow-why-grid { grid-template-columns: 1fr; }
  .grow-hero { padding: 56px 0 48px; }
  .grow-hero-trust { gap: 8px; font-size: 13px; }
}

/* ============================================================
   About / Contact pages
   ============================================================ */
.content-page { padding: 48px 0 80px; }
.content-wrap { max-width: 740px; margin: 0 auto; }
.content-wrap h2 { font-size: 22px; font-weight: 700; margin: 28px 0 12px; }
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap p { color: var(--color-text-muted); margin-bottom: 12px; line-height: 1.7; font-size: 15px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .listings-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .profile-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--color-white); border-bottom: 1px solid var(--color-border); padding: 16px 20px; gap: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.1); z-index: 99; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 40px 0; }
  .hero { padding: 48px 0 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .search-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .tier-cards { grid-template-columns: 1fr; }
  .profile-header { flex-direction: column; }
  .listing-card { flex-direction: column; }
  .listing-cta { margin-left: 0; }
}
