/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
/* Bohan Machines platform theme - ported directly from the proven Odoo
   module's marketplace.css (navy + safety-amber, deliberately plain/white
   hero so the search box is the focal point, dark navy cards for the
   "most in-demand" carousels). Kept as one global stylesheet for now;
   splits into CSS modules per page as Phase 1 grows. */
:root {
  --smp-navy: #101820;
  --smp-navy-soft: #1c2a3a;
  --smp-steel: #4a5a70;
  --smp-amber: #f5a524;
  --smp-amber-dark: #d6900f;
  --smp-green: #2f9e44;
  --smp-red: #d64545;
  --smp-muted: #5b6472;
  --smp-bg-soft: #f5f6f8;
  --smp-line: rgba(16, 24, 32, 0.08);
  --smp-radius: 10px;
  --smp-shadow: 0 4px 18px rgba(16, 24, 32, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--smp-navy);
  background: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

a { color: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1rem; }

.btn-primary {
  display: inline-block;
  background: var(--smp-amber);
  border: none;
  color: var(--smp-navy);
  font-weight: 700;
  border-radius: 4px;
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary:hover {
  background: var(--smp-amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245, 165, 36, .35);
}

/* Hero */
.hero { background: #fff; text-align: center; padding: 3.5rem 1rem 2.5rem; }
.hero-title { font-weight: 800; font-size: 2.5rem; line-height: 1.2; margin: 0 0 .6rem; }
.hero-subtitle { color: var(--smp-muted); font-size: 1.05rem; margin: 0 0 2rem; }

.search-form { display: flex; max-width: 560px; gap: .5rem; margin: 0 auto; }
.search-input {
  flex: 1 1;
  border: 2px solid var(--smp-navy);
  border-radius: 4px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
}
.search-input:focus { outline: none; border-color: var(--smp-amber-dark); }

.hero-footnote { color: var(--smp-muted); font-size: .85rem; margin: 1.5rem 0 0; }
.hero-footnote a { text-decoration: underline; font-weight: 600; }

/* Category pills */
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; padding: 0 1rem 2.5rem; }
.pill {
  display: inline-block;
  border: 1px solid var(--smp-line);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--smp-muted);
  text-decoration: none;
  background: var(--smp-bg-soft);
}
.pill:hover { border-color: var(--smp-navy); color: var(--smp-navy); }

/* Section titles */
.section-title {
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0; top: 3px; bottom: 3px;
  width: 5px;
  border-radius: 2px;
  background: var(--smp-amber);
}

/* Demand carousel */
.demand-section { padding: 0 1rem 3rem; }
.demand-carousel { position: relative; max-width: 900px; margin: 0 auto; }
.demand-card {
  background: var(--smp-navy);
  color: #fff;
  border-radius: var(--smp-radius);
  border-top: 4px solid var(--smp-amber);
  padding: 2.5rem 3rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .6rem;
}
.demand-index { font-weight: 800; font-size: .85rem; letter-spacing: .08em; color: var(--smp-amber); }
.demand-card h3 { font-weight: 800; margin: 0; color: #fff; }
.demand-card p { color: #c4cbd4; max-width: 640px; margin: 0 0 .4rem; }
.demand-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 1rem; }
.demand-arrow {
  background: var(--smp-navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  font-size: 1.1rem;
}
.demand-dots { display: flex; gap: .4rem; }
.demand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--smp-line); border: none; cursor: pointer; padding: 0; }
.demand-dot.active { background: var(--smp-amber); }

/* Provider cards / directory */
.card {
  background: #fff;
  border-radius: var(--smp-radius);
  box-shadow: var(--smp-shadow);
  border: 1px solid var(--smp-line);
  overflow: hidden;
  height: 100%;
}
.provider-card { display: flex; flex-direction: column; text-decoration: none; transition: transform .15s ease; }
.provider-card:hover { transform: translateY(-4px); }
.card-photo { height: 160px; background: var(--smp-navy-soft); display: flex; align-items: center; justify-content: center; }
.card-photo-placeholder { font-size: 2.5rem; font-weight: 800; color: var(--smp-amber); }
.card-body { padding: 1rem; }
.card-title { font-size: 1.05rem; font-weight: 800; margin: 0 0 .2rem; }
.card-tagline { color: var(--smp-muted); font-size: .9rem; min-height: 2.2em; margin: 0; }
.card-verified { display: inline-flex; align-items: center; gap: .3rem; font-size: .74rem; font-weight: 700; color: var(--smp-green); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .3rem; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .5rem 0; }
.tag { background: var(--smp-bg-soft); border-radius: 4px; padding: .2rem .7rem; font-size: .78rem; font-weight: 700; border: 1px solid var(--smp-line); }

.directory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); grid-gap: 1.5rem; gap: 1.5rem; padding: 2rem 1rem; max-width: 1140px; margin: 0 auto; }

@media (max-width: 767px) {
  .hero-title { font-size: 1.8rem; }
  .demand-card { padding: 2rem 1.5rem; min-height: 240px; }
}

