/* ============================================================
   Bin Drop — shared stylesheet (working brand name)
   Reusable moving-tote rental · Jacksonville, FL
   Rename: swap the brand name in HTML; recolor via :root vars.
   ============================================================ */

:root {
  --navy: #132C5A;
  --navy-700: #0D2144;
  --green: #4FA23E;
  --green-600: #3E8A32;
  --amber: #F4B400;
  --amber-600: #D69E00;
  --coral: #E4572E;
  --mist: #F4F7F5;
  --sand: #FBFBF9;
  --ink: #1A2430;
  --gray: #5A6B78;
  --line: #E4E9ED;
  --white: #FFFFFF;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(16,58,90,.06);
  --shadow: 0 10px 30px rgba(16,58,90,.10);
  --shadow-lg: 0 24px 60px rgba(16,58,90,.16);
  --maxw: 1160px;
  --font-head: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; font-weight: 700; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.bg-mist { background: var(--mist); }
.bg-navy { background: var(--navy); color: #DDE7EF; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; font-size: .74rem;
  color: var(--green); margin-bottom: 14px;
}
.bg-navy .eyebrow { color: var(--amber); }
h1.display { font-size: clamp(2.15rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2.title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -.01em; margin-bottom: 14px; }
.lead { font-size: 1.15rem; color: var(--gray); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--amber); color: var(--navy-700); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--amber-600); box-shadow: var(--shadow); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-600); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.bg-navy .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.bg-navy .btn-outline:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(251,251,249,.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--navy); }
.brand .loop { color: var(--navy); }
.brand .totes { color: var(--green); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; background: var(--navy);
  display: grid; place-items: center; color: #fff; flex: none;
}
.brand-logo { height: 52px; width: auto; display: block; }
.footer-logo { height: 78px; width: auto; display: block; margin-bottom: 12px; }
@media (max-width: 620px){ .brand-logo { height: 44px; } }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-weight: 500; color: var(--ink); font-size: .98rem; }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--font-head); font-weight: 600; color: var(--navy); white-space: nowrap; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

/* Hero */
.hero { padding: 74px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: .88rem; font-weight: 500; box-shadow: var(--shadow-sm); }
.pill svg { color: var(--green); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: .92rem; color: var(--gray); margin-top: 16px; }
.hero-visual {
  background: linear-gradient(150deg, var(--navy), #1E5A85);
  border-radius: var(--radius-lg); padding: 34px; color: #fff; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.hero-visual h3 { color: #fff; font-size: 1.2rem; margin-bottom: 18px; }
.tote-stack { display: grid; gap: 12px; }
.tote {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px; padding: 16px 18px; display: flex; justify-content: space-between; align-items: center;
}
.tote .lid { width: 46px; height: 10px; border-radius: 4px; background: var(--amber); }
.tote strong { color: #fff; }

/* Cards / grids */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card .icon {
  width: 54px; height: 54px; border-radius: 13px; background: var(--mist);
  display: grid; place-items: center; color: var(--green); margin-bottom: 18px;
}
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--gray); font-size: 1rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px 28px; }
.step .num {
  counter-increment: step; width: 44px; height: 44px; border-radius: 50%;
  background: var(--amber); color: var(--navy-700); font-family: var(--font-head);
  font-weight: 700; display: grid; place-items: center; font-size: 1.15rem; margin-bottom: 16px;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--gray); }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; position: relative; }
.price-card.popular { border: 2px solid var(--amber); box-shadow: var(--shadow); }
.price-card .flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--amber); color: var(--navy-700); font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.price-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.price-card .size { color: var(--gray); font-size: .92rem; margin-bottom: 14px; }
.price-card .amt { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--navy); }
.price-card .amt span { font-size: .95rem; color: var(--gray); font-weight: 500; }
.price-card ul { list-style: none; margin: 18px 0 22px; }
.price-card li { padding: 7px 0 7px 26px; position: relative; color: var(--ink); font-size: .97rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.checklist { list-style: none; margin-top: 18px; }
.checklist li { padding: 9px 0 9px 34px; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 22px; height: 22px; background: var(--green); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.visual-panel { background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }

/* Reviews */
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-style: italic; color: var(--ink); }
.review .who { margin-top: 14px; font-weight: 600; color: var(--navy); font-style: normal; font-size: .95rem; }
.review .where { color: var(--gray); font-size: .88rem; }
.placeholder-note { background: #FFF6E6; border: 1px dashed var(--amber-600); color: #7a5a12; border-radius: var(--radius); padding: 14px 18px; font-size: .9rem; }

/* Service area */
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.area-list span { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; font-size: .92rem; font-weight: 500; }

/* FAQ */
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; padding: 4px 4px; }
.faq summary { cursor: pointer; padding: 18px 20px; font-family: var(--font-head); font-weight: 600; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 20px 18px; color: var(--gray); }

/* Forms */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 7px; font-size: .95rem; color: var(--navy); }
.field .req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--font-body); font-size: 1rem; background: var(--sand); color: var(--ink); transition: border .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-help { font-size: .85rem; color: var(--gray); margin-top: 5px; }
.form-success { display: none; background: #EAF7EF; border: 1px solid var(--green); border-radius: var(--radius); padding: 26px; text-align: center; }
.form-success h3 { color: var(--green-600); margin-bottom: 8px; }

/* Package selector (reserve) */
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 8px; }
.pkg-opt { position: relative; }
.pkg-opt input { position: absolute; opacity: 0; }
.pkg-opt label { display: block; border: 2px solid var(--line); border-radius: 12px; padding: 16px; cursor: pointer; text-align: center; transition: all .15s ease; background: var(--sand); }
.pkg-opt input:checked + label { border-color: var(--amber); background: #FFF8EC; box-shadow: var(--shadow-sm); }
.pkg-opt .p-name { font-family: var(--font-head); font-weight: 700; color: var(--navy); display: block; }
.pkg-opt .p-price { color: var(--green-600); font-weight: 700; }
.pkg-opt .p-size { font-size: .8rem; color: var(--gray); display: block; }

/* Stat band */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat .n { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--amber); }
.bg-navy .stat .n { color: var(--amber); }
.stat .l { color: #C9D6E0; font-size: .95rem; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--green), var(--green-600)); border-radius: var(--radius-lg); padding: 52px 40px; text-align: center; color: #fff; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #E7F5EC; max-width: 560px; margin: 0 auto 24px; }

/* Dashboard mock (realtors) */
.dash { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.dash-top { background: var(--navy); color: #fff; padding: 16px 22px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-head); font-weight: 600; }
.dash-body { padding: 24px; }
.dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 20px; }
.kpi { background: var(--mist); border-radius: 12px; padding: 16px; }
.kpi .n { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--navy); }
.kpi .l { font-size: .82rem; color: var(--gray); }
.dash-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.dash-table th { text-align: left; color: var(--gray); font-weight: 600; padding: 10px 8px; border-bottom: 2px solid var(--line); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.dash-table td { padding: 12px 8px; border-bottom: 1px solid var(--line); }
.tag { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .78rem; font-weight: 600; }
.tag-green { background: #EAF7EF; color: var(--green-600); }
.tag-amber { background: #FFF3DE; color: var(--amber-600); }
.tag-navy { background: #E7EEF4; color: var(--navy); }

/* Blog */
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.post-card .thumb { height: 160px; background: linear-gradient(135deg, var(--navy), #1E5A85); }
.post-card .thumb.g { background: linear-gradient(135deg, var(--green), var(--green-600)); }
.post-card .thumb.a { background: linear-gradient(135deg, var(--amber), var(--coral)); }
.post-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { font-size: .78rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .06em; }
.post-card h3 { font-size: 1.12rem; margin: 8px 0 10px; }
.post-card p { color: var(--gray); font-size: .95rem; flex: 1; }
.post-card .read { margin-top: 14px; font-weight: 600; color: var(--navy); }

/* Footer */
.site-footer { background: var(--navy-700); color: #AEC2D2; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: #AEC2D2; display: block; padding: 5px 0; font-size: .94rem; }
.site-footer a:hover { color: var(--amber); }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; color: #7E95A8; }

/* Content pages (legal/about) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 32px 0 10px; }
.prose h3 { font-size: 1.15rem; margin: 22px 0 8px; }
.prose p, .prose li { color: var(--ink); margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.breadcrumb { color: var(--gray); font-size: .9rem; margin-bottom: 8px; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 620px; margin: 0 auto; background: var(--navy); color: #E4EEF5; border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-lg); z-index: 100; display: none; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between; }
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: .9rem; flex: 1; min-width: 240px; }
.cookie-banner a { color: var(--amber); }

/* Utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 14px; } .mt-2 { margin-top: 28px; } .mt-3 { margin-top: 42px; }
.hide-mobile { }
.text-gray { color: var(--gray); }

/* Responsive */
@media (max-width: 940px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .pricing, .steps, .stats, .dash-kpis, .pkg-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--sand); flex-direction: column; padding: 18px 22px; border-bottom: 1px solid var(--line); gap: 6px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .menu-toggle { display: block; }
  .hero-visual { order: -1; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .grid-3, .grid-4, .pricing, .steps, .stats, .dash-kpis, .pkg-grid, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .nav-phone { display: none; }
  .dash-table { font-size: .82rem; }
  .dash-table .hide-sm { display: none; }
}
