:root {
  --bg: #0f1115;
  --bg-soft: #171a21;
  --card: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.1);
  --text: #f5f7fb;
  --muted: #b7becb;
  --accent: #feb43f;
  --accent-dark: #cb9032;

  --text-on-accent: #081017;
  --header-bg: rgba(10,12,18,0.75);
  --header-border: rgba(255,255,255,0.08);
  --menu-bg: rgba(10,12,18,0.98);
  --menu-border: rgba(255,255,255,0.08);
  --overlay-bg: rgba(0,0,0,0.5);
  --input-bg: rgba(9,12,18,0.65);
  --input-border: rgba(255,255,255,0.12);
  --footer-bg: #0c0f14;
  --footer-bottom: #92a0b4;
  --hero-overlay: rgba(0,0,0,0.5);

  --shadow: 0 20px 50px rgba(0,0,0,0.25);
  --radius: 20px;
  --max: 1200px;
  --transition: 0.25s ease;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 800px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap img {
  height: 96px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.menu-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.menu-btn:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(var(--hero-overlay), var(--hero-overlay));
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 35%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.04), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 80px 0;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 32px;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--card);
  border-color: var(--card-border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
}

/* SPLIT SECTIONS */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.image-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--card-border);
  background: var(--card);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.24));
  pointer-events: none;
}

/* ICON BOXES */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.icon-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.icon-box:hover {
  transform: translateY(-6px);
  border-color: var(--card-border);
}

.icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px; /* 👈 key change */
  line-height: 1;
  color: var(--text-on-accent);
  margin-bottom: 18px;
}

.icon-box h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.icon-box p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* FORM / QUOTE */
.form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--card-border);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* FOOTER */
.site-footer {
  padding: 70px 0 120px;
  background: var(--footer-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.footer-brand img {
  height: 300px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-details p,
.footer-social a {
  color: var(--muted);
  font-size: 0.98rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social a:hover {
  color: var(--accent);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
  border: 1px solid var(--card-border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
  color: var(--footer-bottom);
  font-size: 0.9rem;
  text-align: center;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(88vw, 340px);
  height: 100vh;
  background: var(--menu-bg);
  backdrop-filter: blur(18px);
  z-index: 1001;
  padding: 28px;
  transition: right 0.3s ease;
  border-left: 1px solid var(--menu-border);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mobile-menu h4 {
  font-size: 1.1rem;
}

.close-menu {
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu nav a {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
  font-weight: 600;
}

.mobile-menu nav a:hover {
  background: var(--bg-soft);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .split,
  .split.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .icon-grid {
    grid-template-columns: 1fr;
  }

  .image-card img {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 86vh;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 72px;
  }

  .logo-wrap img {
    height: 38px;
  }
}
/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--card-border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.22));
  pointer-events: none;
}

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

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 260px;
  }
}
/* STICKY BOTTOM BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}

.sticky-bar a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 50%;
  min-height: 64px;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
  text-decoration: none;
}

/* If only one button exists, make it full width */
.sticky-bar a:only-child {
  flex: 1 1 100%;
  width: 100%;
}

/* LEFT BUTTON */
.sticky-call {
  color: var(--text);
  border-top: 1px solid var(--card-border);
}

.sticky-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  z-index: 0;
}

.sticky-call::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.sticky-call span {
  position: relative;
  z-index: 2;
}

.sticky-call:hover::after {
  background: rgba(0,0,0,0.4);
}

/* RIGHT BUTTON */
.sticky-cta {
  background: var(--accent);
  color: var(--text-on-accent);
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

@media (max-width: 640px) {
  .sticky-bar a {
    min-height: 58px;
    font-size: 1rem;
  }
}
.logo-wrap img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.mobile-menu nav a {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: var(--transition);
}
@media (max-width: 640px) {
  .mobile-menu {
    padding: 20px;
  }

  .mobile-menu-header {
    margin-bottom: 18px;
  }

  .mobile-menu nav {
    gap: 8px;
  }

  .mobile-menu nav a {
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.92rem;
  }
}

.mobile-menu nav a:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.mobile-menu nav a.mobile-quote-link {
  background: var(--accent) !important;
  color: var(--text-on-accent) !important;
  border-color: transparent !important;
}
.footer-details a {
  color: var(--muted);
  transition: var(--transition);
}

.footer-details a:hover {
  color: var(--accent);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.footer-nav a:hover::after {
  width: 100%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-layout > .form-card:only-child {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr !important;
  }

  .contact-layout > :first-child {
    order: 2;
  }

  .contact-layout > :last-child {
    order: 1;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-card-content {
  padding: 22px;
}

.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.team-title {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.team-description {
  color: var(--muted);
}

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

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.image-wrap {
  position: relative;
  display: block;
}

.image-wrap img {
  width: 100%;
  display: block;
}

.image-credit-overlay {
  position: absolute;
  bottom: 8px;
  right: 10px;
  z-index: 3;
  font-size: 11px;
  line-height: 1.3;
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 6px;
  border-radius: 4px;
  color: #fff;
  max-width: 75%;
  text-align: right;
}

.image-credit-overlay a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .sticky-call {
    display: none !important;
  }
}
.sidebar-topbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.sidebar-toggle-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #333;
    border-radius: 10px;
    background: #0f1115;
    color: #46cae9;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sidebar-toggle-btn:hover {
    background: #1a212b;
    border-color: #46cae9;
}

.wrap:not(.editor-open) .sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 900px) {
    .sidebar-topbar {
        justify-content: flex-start;
        margin-bottom: 8px;
    }

    .sidebar-toggle-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* HEADER LOGO BIGGER */
.header-inner {
  min-height: 110px !important;
  align-items: center !important;
}

.logo-wrap img {
  height: 96px !important;
  width: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

.logo-wrap {
  display: flex !important;
  align-items: center !important;
}

/* MOBILE MENU LOGO BIGGER */
.mobile-menu-logo {
  height: 70px !important;
  width: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

/* =========================
   FOOTER LOGO CENTERING (FINAL)
   ========================= */

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  min-height: 160px; /* keeps it balanced */
}

.footer-brand img {
  margin: 0 auto !important;
  height: 300px; /* adjust if needed */
  width: auto;
  object-fit: contain;
}

/* =========================
   MINIMAL THEME ONLY FIXES
   ========================= */

.minimal-hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.minimal-hero .minimal-hero-content {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}

.minimal-hero .minimal-hero-content h1,
.minimal-hero .minimal-hero-content p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.minimal-hero .hero-actions {
  justify-content: center !important;
  align-items: center;
}

.minimal-footer .minimal-footer-inner,
.minimal-footer .minimal-footer-details,
.minimal-footer .minimal-footer-bottom {
  text-align: center;
}

.minimal-footer .minimal-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.minimal-footer .footer-brand img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   MINIMAL CONTENT CENTER FIX
   ========================= */

.minimal-intro-text,
.minimal-section-heading-wrap,
.minimal-form-heading,
.minimal-text-section .container,
.minimal-alt-section .container,
.minimal-services-intro .container,
.minimal-lead-section .container,
.minimal-thankyou-followup .container,
.minimal-quote-intro,
.minimal-team-section .container,
.minimal-feature-section > .container > div:first-child,
.minimal-trust-section > .container > div:first-child,
.minimal-points-section > .container > div:first-child,
.minimal-process-section > .container > div:first-child,
.minimal-faq-section .form-card,
.minimal-emphasis-section .form-card {
  text-align: center !important;
}

.minimal-intro-text .section-text,
.minimal-section-heading-wrap .section-text,
.minimal-form-heading .section-text,
.minimal-text-section .section-text,
.minimal-alt-section .section-text,
.minimal-services-intro .section-text,
.minimal-lead-section .section-text,
.minimal-quote-intro .section-text,
.minimal-feature-section .section-text,
.minimal-trust-section .section-text,
.minimal-points-section .section-text,
.minimal-process-section .section-text,
.minimal-emphasis-section .section-text,
.minimal-faq-section .section-text,
.minimal-thankyou-followup .section-text {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.minimal-text-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .minimal-text-split-grid {
    grid-template-columns: 1fr;
  }
}

.minimal-two-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .minimal-two-text-grid {
    grid-template-columns: 1fr;
  }
}

/* LANDING CTA BANNERS */
.landing-cta-banner {
  padding: 34px 0;
}

.landing-cta-banner-inner {
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(rgba(255,255,255,0.16), rgba(255,255,255,0.16)), var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.landing-cta-banner-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: inherit;
}

.landing-cta-banner-inner p {
  margin: 0;
  color: inherit;
  opacity: 0.92;
}

.landing-inline-cta {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .landing-cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-cta-banner-inner .btn,
  .landing-inline-cta .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container.split.reverse {
    display: flex !important;
    flex-direction: column !important;
  }

  .container.split.reverse .image-card {
    order: 2 !important;
  }

  .container.split.reverse > div:not(.image-card) {
    order: 1 !important;
  }
}

.section + .section {
  padding-top: 0 !important;
}

.landing-cta-banner-inner .btn {
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 150px;
  text-align: center;
}

 /* =========================
   SCROLLABLE MENUS FIX
   ========================= */

/* MOBILE MENU - vertical scroll */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Optional: prevent header overlap issues */
.mobile-menu nav {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

/* DESKTOP MENU (if horizontal nav exists) */
.header-inner nav {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* Hide ugly scrollbar but keep functionality */
.header-inner nav::-webkit-scrollbar,
.mobile-menu::-webkit-scrollbar {
  display: none;
}

.header-inner nav {
  scrollbar-width: none;
}
/* MOBILE SLIDE MENU - force scroll */
.mobile-menu {
  height: 100dvh !important;
  max-height: 100dvh !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  z-index: 10001 !important;
}

.mobile-menu nav {
  max-height: none !important;
  overflow-y: visible !important;
}

/* Keep sticky footer behind slide-out menu */
.sticky-bar {
  z-index: 999 !important;
}

.menu-overlay {
  z-index: 10000 !important;
}

/* =========================
   EDITOR SECTION CONTROLS
   ========================= */

.section-editor-toolbar {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9998;
  display: flex;
  gap: 6px;
  background: rgba(0,0,0,0.72);
  padding: 6px;
  border-radius: 12px;
}

.section-editor-toolbar button {
  border: 0;
  background: #ffffff;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
}

[data-editor-section] {
  position: relative;
}

.section-hidden-editor {
  opacity: 0.35 !important;
  outline: 2px dashed #ff4d4d !important;
}

[data-section-hidden="1"] {
  display: none !important;
}

.custom-html-box iframe {
  max-width: 100%;
}

.google-reviews-section {
  text-align: center;
}

.google-reviews-summary {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.google-reviews-carousel {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 18px;
  -webkit-overflow-scrolling: touch;
}

.google-review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-height: 420px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 26px;
  text-align: left;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  color: #222;
}

.google-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.google-review-stars {
  color: #f6b400;
  font-size: 20px;
  letter-spacing: 1px;
}

.google-review-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #4285f4;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: Arial, sans-serif;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.google-review-text {
  margin: 0 0 14px;
  line-height: 1.7;
  color: #2b2b2b;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-review-card.expanded .google-review-text {
  -webkit-line-clamp: unset;
  display: block;
}

.google-review-read-more {
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: #4285f4;
  font-weight: 800;
  padding: 0;
  margin: 0 0 20px;
  cursor: pointer;
}

.google-review-footer {
  margin-top: auto;
  padding-top: 18px;
}

.google-review-author {
  font-weight: 800;
  color: #111;
}

.google-review-time {
  margin-top: 4px;
  font-size: 13px;
  color: #777;
}

@media (max-width: 1000px) {
  .google-review-card {
    flex-basis: 70%;
  }
}

@media (max-width: 640px) {
  .google-review-card {
    flex-basis: 88%;
    min-height: 360px;
  }
}

.footer-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-menu-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-menu-column a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 700px) {
  .footer-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* =========================
   SELECT DROPDOWNS
   ========================= */

select {
  width: 100%;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* custom arrow */
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;

  cursor: pointer;
}

select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--card-border);
}

select option {
  background: #111827;
  color: #ffffff;
}

/* =========================
   RADIO BUTTONS
   ========================= */

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-group label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.radio-group label:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.radio-group input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--muted);
  background: transparent;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.radio-group input[type="radio"]:checked {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}

.radio-group input[type="radio"]::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: var(--text-on-accent);
  opacity: 0;
  transition: var(--transition);
}

.radio-group input[type="radio"]:checked::after {
  opacity: 1;
}

/* Box content images only - excludes hero/gallery/header/footer */
.image-card > img[data-edit-image="section_1_image"],
.image-card > img[data-edit-image="section_2_image"],
.image-card > img[data-edit-image="section_3_image"] {
  width: 100% !important;
  height: 420px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Keep the card itself consistent */
.image-card:has(> img[data-edit-image="section_1_image"]),
.image-card:has(> img[data-edit-image="section_2_image"]),
.image-card:has(> img[data-edit-image="section_3_image"]) {
  height: 420px !important;
  overflow: hidden !important;
}

/* Mobile */
@media (max-width: 768px) {
  .image-card > img[data-edit-image="section_1_image"],
  .image-card > img[data-edit-image="section_2_image"],
  .image-card > img[data-edit-image="section_3_image"] {
    height: 300px !important;
  }

  .image-card:has(> img[data-edit-image="section_1_image"]),
  .image-card:has(> img[data-edit-image="section_2_image"]),
  .image-card:has(> img[data-edit-image="section_3_image"]) {
    height: 300px !important;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  position: relative;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}
/* Prevent animation overflow on core layout wrappers */
.hero,
.section,
.site-footer {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .hero,
  .section,
  .site-footer {
    overflow-x: hidden;
  }
}

.legal-link {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.85;
}

.legal-link:hover {
  opacity: 1;
}

.legal-separator {
  margin: 0 8px;
  opacity: 0.45;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.legal-modal.is-open {
  display: block;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.legal-modal-box {
  position: relative;
  width: min(92%, 760px);
  max-height: 82vh;
  overflow-y: auto;
  margin: 8vh auto;
  background: var(--card-color, #ffffff);
  color: var(--text-color, #111111);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.legal-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 999px;

  background: var(--accent);
  color: var(--text-on-accent);

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  transition: var(--transition);

  padding: 0;
}

.legal-modal-close:hover {
  transform: scale(1.08);
  background: var(--accent-dark);
}

.legal-content h2 {
  margin-top: 0;
}

.legal-content p {
  line-height: 1.7;
}

.legal-modal-open {
  overflow: hidden;
}






.webnow-editor-cta {
  display: block;
  padding: 34px 0;
}

.webnow-editor-cta-inner {
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(rgba(255,255,255,0.16), rgba(255,255,255,0.16)), var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.webnow-editor-cta-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: inherit;
}

.webnow-editor-cta-inner p {
  margin: 0;
  color: inherit;
  opacity: 0.92;
}

.webnow-editor-cta-inner .btn {
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 150px;
  text-align: center;
}

@media (max-width: 768px) {
  .webnow-editor-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .webnow-editor-cta-inner .btn {
    width: 100%;
    text-align: center;
  }
}




.webnow-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

.webnow-video-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.webnow-video-iframe,
.webnow-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.webnow-video-text-section .split {
  align-items: center;
}