/* ===========================
   Brotherz LLC — Shared Styles
   Modern, fast, mobile-first
   =========================== */

/* Brand palette */
:root {
  --bg: #ffffff;
  --surface: #f6f8fb;
  --text: #0b1220;
  --muted: #5b6476;
  --border: rgba(15, 23, 42, 0.12);

  --primary: #2563eb;     /* Blue */
  --secondary: #22c55e;   /* Green */
  --accent: #0ea5e9;      /* Sky */

  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 18px;

  --container: 1100px;
  --topbar-h: 42px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { left: 10px; }

/* Header */
.site-header {
  position: sticky;
  top: var(--topbar-h);
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
}
.brand-text { display: grid; line-height: 1.1; }
.brand-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

.site-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}
.nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}
.nav-link:hover { background: var(--surface); text-decoration: none; }
.nav-link.active {
  color: var(--text);
  background: rgba(37, 99, 235, 0.10);
}

.header-cta { display: none; gap: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37,99,235,0.25);
}
.btn-primary:hover { filter: brightness(0.98); }

.btn-secondary {
  background: var(--secondary);
  color: #073b1e;
  box-shadow: 0 10px 20px rgba(34,197,94,0.20);
}
.btn-secondary:hover { filter: brightness(0.98); }

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface); }

/* Mobile nav toggle */
.nav-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  place-items: center;
  gap: 4px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 999px;
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
}

/* Hero */
.hero {
  padding: 34px 0 10px;
  background:
    radial-gradient(900px 300px at 15% 20%, rgba(14,165,233,0.18), transparent 60%),
    radial-gradient(900px 300px at 80% 10%, rgba(37,99,235,0.18), transparent 60%),
    linear-gradient(180deg, #ffffff, #ffffff);
}
.hero-inner {
  display: grid;
  gap: 18px;
}
.hero-copy h1 {
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 10px 0 10px;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 16px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.18);
  padding: 8px 12px;
  border-radius: 999px;
  color: #17337a;
  font-weight: 700;
  margin: 0;
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--secondary);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.highlight {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.highlight strong { display: block; }
.highlight span { color: var(--muted); font-size: 14px; }

.hero-card .card { box-shadow: var(--shadow); }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .hero-highlights { grid-template-columns: repeat(3, 1fr); }
}

/* Sections */
.section { padding: 56px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { margin-bottom: 18px; }
.section-head h2 { margin: 0 0 6px; font-size: 28px; letter-spacing: -0.01em; }
.section-head p { margin: 0; color: var(--muted); }

/* Cards + grids */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.card-title { margin: 0 0 6px; font-size: 20px; }
.card-sub { margin: 0 0 14px; color: var(--muted); }

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 25px rgba(2,6,23,0.05);
}
.service-card h3 { margin: 10px 0 8px; }
.service-card p { margin: 0 0 14px; color: var(--muted); }
.icon-badge {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(14,165,233,0.15);
  border: 1px solid rgba(14,165,233,0.25);
  font-size: 20px;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.link { font-weight: 800; color: #1d4ed8; }
.link:hover { text-decoration: underline; }

/* Anchors */
.anchors {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.anchor-card {
  background: rgba(255,255,255,0.7);
  border: 1px dashed rgba(37,99,235,0.30);
  border-radius: var(--radius);
  padding: 14px;
}
.anchor-card h3 { margin: 0 0 4px; }
.anchor-card p { margin: 0; color: var(--muted); }

/* Features list */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.features li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(34,197,94,0.18);
  border: 1px solid rgba(34,197,94,0.25);
  font-weight: 900;
  margin-bottom: 10px;
}
.step h3 { margin: 0 0 6px; }
.step p { margin: 0; color: var(--muted); }

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

/* Quote cards */
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.quote blockquote { margin: 0 0 10px; color: var(--text); font-weight: 650; }
.quote figcaption { color: var(--muted); font-size: 14px; }

/* Coverage */
.coverage {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(37,99,235,0.25);
  background: rgba(37,99,235,0.06);
}
.coverage-actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (min-width: 900px) {
  .coverage { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* FAQ */
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}
.faq p { margin: 10px 0 0; color: var(--muted); }

/* Page hero */
.page-hero {
  padding: 34px 0;
  background:
    radial-gradient(800px 260px at 25% 0%, rgba(34,197,94,0.14), transparent 55%),
    radial-gradient(800px 260px at 85% 20%, rgba(14,165,233,0.14), transparent 60%),
    #fff;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.02em; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* Forms */
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field span { font-weight: 800; font-size: 14px; }
input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  outline: none;
  background: #fff;
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(37,99,235,0.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 900px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
.error { color: #b91c1c; min-height: 18px; }
.form-success {
  margin-top: 14px;
  background: rgba(34,197,94,0.16);
  border: 1px solid rgba(34,197,94,0.28);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
}

/* Contact bits */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 900px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.hours { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.hours li { display: flex; justify-content: space-between; border: 1px solid var(--border); border-radius: 14px; padding: 10px 12px; background: #fff; }

.callout {
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(14,165,233,0.10);
  border: 1px solid rgba(14,165,233,0.22);
}
.row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }

/* Map placeholder */
.map-placeholder {
  height: 180px;
  border-radius: 14px;
  border: 1px dashed rgba(15,23,42,0.2);
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255,255,255,0.7);
}

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 1fr; }
}
.footer-title { margin: 0 0 10px; font-size: 14px; color: var(--muted); letter-spacing: 0.02em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a { color: var(--muted); font-weight: 650; }
.footer-links a:hover { color: var(--text); text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 10px; }

.footer-bottom {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.tiny { font-size: 12px; }
.muted { color: var(--muted); }
.mt { margin-top: 18px; }

/* Trust strip */
.trust-strip {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.trust-item {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--muted);
}


/* Customer care slider */
.slider{
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.slides{
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slides::-webkit-scrollbar{ display:none; }
.slides img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  flex: 0 0 100%;
  scroll-snap-align: start;
}
@media (min-width: 900px){
  .slides img{ height: 380px; }
}
.slider-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  display:grid;
  place-items:center;
  font-size: 24px;
  font-weight: 900;
  cursor:pointer;
}
.slider-btn:hover{ background: #fff; }
.slider-btn.prev{ left: 12px; }
.slider-btn.next{ right: 12px; }



/* ===========================
   Visual Enhancements (2026)
   Hover • Gradients • Motion
   =========================== */

body {
  background:
    radial-gradient(900px 600px at 10% 0%, rgba(37, 99, 235, 0.12), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(34, 197, 94, 0.12), transparent 60%),
    var(--bg);
}

/* Top sticky call bar (above header) */
.topbar{
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(37,99,235,1), rgba(14,165,233,1));
  color: #fff;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
}
.topbar-inner{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.topbar-label{ opacity: 0.95; }
.topbar-phone{
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.topbar-phone:hover{
  text-decoration: none;
  background: rgba(255,255,255,0.2);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.18);
}
.topbar-sep{ opacity: 0.85; }
.topbar-loc{ opacity: 0.95; }

@media (max-width: 520px){
  :root{ --topbar-h: 48px; }
  .topbar-inner{ gap: 8px; font-size: 13px; }
  .topbar-label, .topbar-loc { display: none; }
}

/* Buttons: richer hover */
.btn{
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.16);
  text-decoration: none;
}
.btn:active{ transform: translateY(0px); }

/* Nav links: underline animation */
.site-nav .nav-link{
  position: relative;
  text-decoration: none;
}
.site-nav .nav-link::after{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
  opacity: 0.9;
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after{
  transform: scaleX(1);
}

/* Card hover lift */
.card, .quote, .price-card, .faq-item, .highlight{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover, .quote:hover, .price-card:hover, .faq-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.14);
  border-color: rgba(37,99,235,0.28);
}

/* Hero layout with visual */
.hero-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.hero-media{
  position: relative;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.10);
}
.hero-media img{
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
}
.hero-badge{
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: min(58%, 280px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  border: 1px solid rgba(255,255,255,0.5);
}
.hero-badge img{ width: 100%; display: block; }

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-media{ order: -1; }
  .hero-badge{ width: min(70%, 320px); }
}

/* Slider polish */
.slider{
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.14);
}
.slider-btn{
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.slider-btn:hover{
  transform: scale(1.06);
  opacity: 1;
  background: rgba(255,255,255,0.85);
}

/* Notice block (privacy disclaimer) */
.notice{
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 14px 16px;
  border-radius: 16px;
  margin: 14px 0 22px;
}
.notice em{ font-style: normal; font-weight: 800; }

/* Forms: more visible focus */
input, textarea, select{
  transition: box-shadow .18s ease, border-color .18s ease;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(37,99,235,0.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.18);
}

/* Improve section separation */
.section-alt{
  background:
    radial-gradient(800px 520px at 15% 20%, rgba(14,165,233,0.12), transparent 60%),
    radial-gradient(800px 520px at 85% 60%, rgba(34,197,94,0.10), transparent 60%),
    var(--surface);
}

/* Subtle entrance motion (reduced motion friendly) */
@media (prefers-reduced-motion: no-preference){
  .hero-copy, .hero-media, .grid-3 > *, .grid-2 > *, .price-grid > *{
    animation: rise .6s ease both;
  }
  .hero-media{ animation-delay: .08s; }
  .grid-3 > *:nth-child(2){ animation-delay: .06s; }
  .grid-3 > *:nth-child(3){ animation-delay: .12s; }
  @keyframes rise{
    from{ transform: translateY(10px); opacity: 0; }
    to{ transform: translateY(0); opacity: 1; }
  }
}
