/* HighLevel Global CSS (single paste block: variables + styles) */

:root {
  /* palette */
  --black: #0E1114;
  --dark-grey: #2A2F36;
  --blue: #1F6BFF;
  --orange: #FF8A00;
  --white: #F5F7FA;

  /* aliases used by the existing layout */
  --nav-dark: var(--black);
  --bg-dark: var(--black);
  --gold: var(--blue);
  --gold-dark: var(--orange);
  --text-light: var(--white);
  --muted: rgba(245, 247, 250, 0.7);

  /* typography */
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-heading: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* spacing */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 40px;
}

/* Reset / base */
* { box-sizing: border-box; }
 :root { --container-max: 1180px; }
body {
  margin: 0;
}

.mh-site {
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.brand-logo { height: 44px; width: auto; }
.about-subline { opacity: 0.9; margin: 0; }
.footer-card { display: flex; flex-direction: column; gap: 12px; }
.footer-fine { opacity: 0.75; }

/* Layout helpers */
.section {
  padding: var(--space-6) var(--space-4);
  max-width: var(--container-max);
  margin: 0 auto;
}
.center { text-align: center; }

/* Top nav + hero wrapper (if using partial) */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,17,20,0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--dark-grey);
}
.topbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.nav-links { display: flex; gap: var(--space-3); font-weight: 700; letter-spacing: 0.4px; }
.nav-links a { opacity: 0.9; }
.nav-links a:hover { opacity: 1; }
.topbar-cta {
  background: var(--gold);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.topbar-cta:hover {
  background: var(--gold-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
  background: linear-gradient(135deg, var(--black) 0%, #1A2330 50%, var(--blue) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://assets.cdn.highlevel.com/XXXX/hero-bg.jpg") center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("https://assets.cdn.highlevel.com/XXXX/hero-overlay.png") center/cover no-repeat;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,10,15,0.35) 0%, rgba(7,10,15,0.65) 60%);
  z-index: 2;
}
.hero-swoosh {
  position: absolute;
  top: 38px;
  left: -20px;
  right: -20px;
  height: 30px;
  pointer-events: none;
  z-index: 4;
}
.hero-swoosh path { fill: #fff; }
.hero > * { position: relative; z-index: 5; }
.hero-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  padding: 60px 28px;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.6);
}
.hero-content h1 { letter-spacing: -0.02em; }
.hero-copy h1 { font-size: 56px; line-height: 1.05; margin: 0 0 8px; font-weight: 800; }
.hero-copy h2 { color: var(--gold); margin: 0 0 12px; font-weight: 700; }
.hero-copy p { max-width: var(--container-max); color: rgba(255,255,255,0.9); line-height: 1.6; margin: 0 0 18px; }
.hero-btn { background: var(--gold); color: #ffffff; border: none; padding: 12px 18px; border-radius: 10px; font-weight: 850; box-shadow: 0 12px 28px rgba(0,0,0,0.35); cursor: pointer; }
.hero-btn:hover { background: var(--gold-dark); }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: end; height: 520px; }
.hero-person { width: 360px; border-radius: 14px; box-shadow: 0 22px 40px rgba(0,0,0,0.45); transform: rotate(-1deg); border: 6px solid rgba(255,255,255,0.06); }
.hero-person { right: 12%; bottom: 0; height: 88%; position: absolute; }
.hero-van { position: absolute; right: 4%; bottom: 6%; width: 380px; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55)); }

/* Services grid */
.services-modern { padding: 70px 18px; background: var(--bg-dark); }
.services-head { max-width: var(--container-max); margin: 0 auto 26px; text-align: center; }
.services-head h2 { font-size: 40px; margin: 0; font-weight: 950; }
.services-head p { margin: 10px auto 0; max-width: var(--container-max); opacity: 0.85; line-height: 1.5; }
.services-cards {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.service-card {
  background: rgba(9,12,18,0.9);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: var(--space-3);
  display: block;
}
.service-body { padding: 20px; flex: 1; }
.service-body h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: #fff; }
.service-body p { margin: 0 0 14px; color: #cbd2d8; line-height: 1.5; }
.service-btn { margin-top: auto; background: rgba(255,255,255,0.10); color: white; border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 10px 14px; font-weight: 800; cursor: pointer; }

@media (hover: hover) {
  .service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }
}

@media (hover: none) {
  .service-card:hover {
    transform: none;
    box-shadow: none;
  }
}
.services-actions { margin-top: 22px; display: flex; justify-content: center; }

/* Utilities for forms/sections */
.card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 14px; padding: 18px; box-shadow: 0 12px 28px rgba(0,0,0,0.4); }
.card-lg { padding: 24px; }
.booking-card { padding: 24px; }
.input { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); color: #fff; }
.button-primary { background: var(--gold); color: #ffffff; border: none; padding: 12px 16px; border-radius: 10px; font-weight: 800; cursor: pointer; }
.button-primary:hover { background: var(--gold-dark); }

/* Generic placeholder box for embedded HL forms */
.embed-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.18);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}
.booking-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.18);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; }
  .hero-person { width: 280px; }
  .hero-van { width: 130px; right: 10px; bottom: 0; }
}

@media (max-width: 900px) {
  .hero-content h1 { line-height: 1.1; }
  .hero-content p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .hero {
    min-height: 75vh;
  }
}

@media (max-width: 900px) {
  .services-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .services-cards { grid-template-columns: 1fr; }
  .service-image { height: 150px; }
}
