/* ================================================================
   LOCALMOVER CHILD THEME — blocks.css
   Covers: Header · Footer · Homepage Sections
   All targeting WordPress block editor class names
   ================================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  --lm-navy:        #0A1F44;
  --lm-navy-mid:    #112954;
  --lm-navy-light:  #1a3a6b;
  --lm-gold:        #C9A84C;
  --lm-gold-light:  #E8C97A;
  --lm-gold-dim:    rgba(201, 168, 76, 0.12);
  --lm-white:       #FFFFFF;
  --lm-off-white:   #F8F7F4;
  --lm-text:        #1A1A2E;
  --lm-text-body:   #374151;
  --lm-text-muted:  #6B7280;
  --lm-border:      #E2D9C5;
  --lm-radius-sm:   6px;
  --lm-radius-md:   12px;
  --lm-radius-lg:   20px;
  --lm-shadow-card: 0 4px 24px rgba(10, 31, 68, 0.08);
  --lm-shadow-hover:0 8px 40px rgba(10, 31, 68, 0.16);
  --lm-transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --lm-max-width:   1280px;
}


/* ================================================================
   GLOBAL RESETS & BASE
   ================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default WP padding that breaks full-width sections */
.wp-site-blocks {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.wp-site-blocks > * + * {
  margin-top: 0 !important;
}

/* Remove default paragraph margins inside block groups */
.wp-block-group p:last-child {
  margin-bottom: 0;
}


/* ================================================================
   HEADER
   ================================================================ */

.lm-header {
  /*position: sticky;*/
  top: 0;
  z-index: 200;
  width: 100%;
  transition: box-shadow var(--lm-transition), padding var(--lm-transition);
}

.lm-header.has-navy-background-color {
  background-color: var(--lm-navy) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06),
              0 2px 20px rgba(10, 31, 68, 0.25);
}

/* Scrolled state — added via JS */
.lm-header.is-scrolled {
  box-shadow: 0 2px 40px rgba(10, 31, 68, 0.40);
}

.lm-header__inner {
  max-width: var(--lm-max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  min-height: 72px;
  display: block !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between !important ;
}

/* Let the block-editor flex layout inside the header wrap naturally
   instead of forcing nowrap (which caused mobile overflow) */



/* ── LOGO ── */
.lm-site-logo img {
  max-height: 52px;
  width: auto;
}

.lm-site-title a {
  color: var(--lm-white) !important;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color var(--lm-transition);
}

.lm-site-title a:hover {
  color: var(--lm-gold) !important;
}

/* ── NAVIGATION ── */
.lm-nav .wp-block-navigation__container {
  gap: 2rem;
  align-items: center;
}

.lm-nav .wp-block-navigation-item__content {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--lm-transition);
}

.lm-nav .wp-block-navigation-item__content::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lm-gold);
  border-radius: 2px;
  transition: width var(--lm-transition);
}

.lm-nav .wp-block-navigation-item:hover > .wp-block-navigation-item__content,
.lm-nav .current-menu-item > .wp-block-navigation-item__content {
  color: var(--lm-gold) !important;
}

.lm-nav .wp-block-navigation-item:hover > .wp-block-navigation-item__content::after,
.lm-nav .current-menu-item > .wp-block-navigation-item__content::after {
  width: 100%;
}

/* ── HEADER CTA BUTTON ── */
.lm-header__cta .wp-block-button__link {
  background-color: var(--lm-gold) !important;
  color: var(--lm-navy) !important;
  border: 2px solid var(--lm-gold) !important;
  border-radius: var(--lm-radius-sm) !important;
  padding: 0.625rem 1.625rem !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: all var(--lm-transition) !important;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3) !important;
}

.lm-header__cta .wp-block-button__link:hover {
  background-color: var(--lm-white) !important;
  color: var(--lm-navy) !important;
  border-color: var(--lm-white) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4) !important;
}

/* ── MOBILE HAMBURGER ── */
/* Always available; visibility per breakpoint is controlled below,
   not by a global display:none. */
.wp-block-navigation__responsive-container-open {
  display: flex !important;
  color: var(--lm-white) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 6px !important;
  padding: 6px !important;
}

.wp-block-navigation__responsive-container-open svg,
.wp-block-navigation__responsive-container-close svg {
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Ensure the overlay actually shows above everything when open */
.wp-block-navigation__responsive-container.is-menu-open {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background-color: var(--lm-navy) !important;
  padding: 2rem !important;
  z-index: 9999 !important;
}

.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content {
  display: flex !important;
  flex-direction: column !important;
}

.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item__content {
  color: var(--lm-white) !important;
  font-size: 1.125rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-close {
  color: var(--lm-white) !important;
}

/* Hide the hamburger by default on large desktop; the breakpoints
   below turn it back on for tablet + mobile. This avoids the
   "hidden everywhere, then forced on at 768px only" gap that left
   tablet widths (769px–1024px) with no visible hamburger. */
@media (min-width: 1025px) {
  .wp-block-navigation__responsive-container-open {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .wp-block-navigation__responsive-container-open {
    display: flex !important;
  }
  
  button.wp-block-navigation__responsive-container-open {
    display: none !important;
}

  .wp-block-navigation:not(.is-responsive)
    .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }
}


/* ================================================================
   FOOTER
   ================================================================ */

.lm-footer {
  position: relative;
}

.lm-footer.has-navy-background-color {
  background-color: var(--lm-navy) !important;
}

.lm-footer__top {
  max-width: var(--lm-max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* Footer Logo */
.lm-footer__logo img {
  max-height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Footer list links */
.lm-footer__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.lm-footer__list li {
  margin-bottom: 0.75rem;
}

.lm-footer__list li a {
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
  font-size: 0.9375rem;
  transition: color var(--lm-transition);
  display: inline-block;
}

.lm-footer__list li a:hover {
  color: var(--lm-gold) !important;
  transform: translateX(3px);
}

/* Footer headings */
.lm-footer__col-heading {
  position: relative;
  padding-bottom: 0.75rem;
}

.lm-footer__col-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--lm-gold);
  border-radius: 2px;
}

/* Contact items */
.lm-footer__contact-list .lm-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.lm-contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.lm-footer__contact-item a:hover {
  color: var(--lm-gold) !important;
}

/* Social buttons */
.lm-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--lm-transition);
  text-decoration: none !important;
}

.lm-social-btn:hover {
  background: var(--lm-gold);
  color: var(--lm-navy) !important;
  border-color: var(--lm-gold);
  transform: translateY(-2px);
}

/* Footer bottom bar */
.lm-footer__bottom {
  max-width: var(--lm-max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lm-footer__legal a:hover {
  color: var(--lm-gold) !important;
}


/* ================================================================
   GLOBAL BUTTON STYLES
   ================================================================ */

/* Primary — Gold */
.wp-block-button.is-style-lm-gold .wp-block-button__link,
.wp-block-button__link.wp-element-button {
  background-color: var(--lm-gold) !important;
  color: var(--lm-navy) !important;
  border: 2px solid var(--lm-gold) !important;
  border-radius: var(--lm-radius-sm) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: all var(--lm-transition) !important;
  box-shadow: 0 2px 16px rgba(201, 168, 76, 0.25) !important;
  display: inline-block;
}

.wp-block-button.is-style-lm-gold .wp-block-button__link:hover,
.wp-block-button__link.wp-element-button:hover {
  background-color: var(--lm-navy) !important;
  color: var(--lm-white) !important;
  border-color: var(--lm-navy) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 28px rgba(10, 31, 68, 0.22) !important;
}

/* Outline — Navy */
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent !important;
  color: var(--lm-navy) !important;
  border: 2px solid var(--lm-navy) !important;
  transition: all var(--lm-transition) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--lm-navy) !important;
  color: var(--lm-white) !important;
}

/* Ghost White (on dark bg) */
.wp-block-button.is-style-lm-ghost-white .wp-block-button__link {
  background-color: transparent !important;
  color: var(--lm-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  transition: all var(--lm-transition) !important;
}

.wp-block-button.is-style-lm-ghost-white .wp-block-button__link:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}


/* ================================================================
   SECTION HEADER (shared label + title pattern)
   ================================================================ */

.lm-section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.lm-label {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.lm-section-title {
  margin-bottom: 1rem;
}

.lm-section-sub {
  max-width: 600px;
  margin-inline: auto;
}


/* ================================================================
   HERO SECTION
   ================================================================ */

.lm-hero {
  overflow: hidden;
}

.lm-hero__inner.wp-block-columns {
  min-height: 600px;
  margin-bottom: 0 !important;
  align-items: stretch;
}

.lm-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Badge */
.lm-badge {
  display: inline-block !important;
}

/* Heading gold italic */
.lm-hero__em {
  position: relative;
  display: inline-block;
}

.lm-hero__em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--lm-gold);
  border-radius: 2px;
  transform: scaleX(0.85);
  transform-origin: left;
}

/* Trust bar */
.lm-hero__trust .lm-trust-item {
  text-align: center;
  line-height: 1.4;
}

.lm-trust-sep {
  font-size: 1.5rem;
  color: var(--lm-border);
}

/* Hero image column */
.lm-hero__media .wp-block-column {
  padding: 0 !important;
}

.lm-hero__image-wrap {
  height: 100%;
  min-height: 520px;
  width: 100%;
  object-fit: cover;
  position: relative;
}

.lm-hero__image-wrap .wp-block-cover__image-background,
.lm-hero__image-wrap img {
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 0 var(--lm-radius-lg);
}

/* Decorative gold accent on hero */
.lm-hero__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 80px;
  background: var(--lm-gold);
  border-radius: 0 4px 4px 0;
  display: none; /* enable if desired */
}


/* ================================================================
   SERVICE CARDS
   ================================================================ */

.lm-service-card .lm-service-card__inner {
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color var(--lm-transition),
              box-shadow var(--lm-transition),
              transform var(--lm-transition);
}

.lm-service-card .lm-service-card__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lm-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--lm-transition);
  border-radius: var(--lm-radius-md) var(--lm-radius-md) 0 0;
}

.lm-service-card:hover .lm-service-card__inner {
  border-color: var(--lm-gold) !important;
  box-shadow: var(--lm-shadow-hover);
  transform: translateY(-4px);
}

.lm-service-card:hover .lm-service-card__inner::before {
  transform: scaleX(1);
}

.lm-service-icon {
  transition: transform var(--lm-transition);
  display: block !important;
}

.lm-service-card:hover .lm-service-icon {
  transform: scale(1.15);
}

.lm-service-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--lm-transition), color var(--lm-transition);
}

.lm-service-card:hover .lm-service-link a {
  gap: 0.5rem;
  color: var(--lm-navy) !important;
}


/* ================================================================
   WHY SECTION
   ================================================================ */

.lm-why .wp-block-columns {
  align-items: center;
}

.lm-feature-item {
  transition: background var(--lm-transition),
              border-color var(--lm-transition),
              transform var(--lm-transition);
}

.lm-feature-item:hover {
  background: rgba(201, 168, 76, 0.08) !important;
  border-color: rgba(201, 168, 76, 0.3) !important;
  transform: translateY(-3px);
}

.lm-why__grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}


/* ================================================================
   PROCESS / HOW IT WORKS
   ================================================================ */

.lm-step__inner {
  position: relative;
  height: 100%;
  overflow: hidden;
  transition: box-shadow var(--lm-transition), transform var(--lm-transition);
}

.lm-step__inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--lm-gold), transparent);
  opacity: 0;
  transition: opacity var(--lm-transition);
}

.lm-step:hover .lm-step__inner {
  box-shadow: var(--lm-shadow-hover);
  transform: translateY(-4px);
}

.lm-step:hover .lm-step__inner::after {
  opacity: 1;
}

.lm-step__number {
  font-family: var(--wp--preset--font-family--jakarta, 'Plus Jakarta Sans', sans-serif);
  line-height: 1 !important;
}


/* ================================================================
   TESTIMONIALS
   ================================================================ */

.lm-review-card .lm-review-card__inner {
  height: 100%;
  position: relative;
  transition: box-shadow var(--lm-transition),
              border-color var(--lm-transition),
              transform var(--lm-transition);
}

.lm-review-card:hover .lm-review-card__inner {
  border-color: var(--lm-gold) !important;
  box-shadow: var(--lm-shadow-hover);
  transform: translateY(-4px);
}

/* Quote mark decoration */
.lm-review-card .lm-review-card__inner::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--lm-gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}


/* ================================================================
   CTA BANNER
   ================================================================ */

.lm-cta-banner {
  position: relative;
  overflow: hidden;
}

/* Decorative gold orb */
.lm-cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lm-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lm-cta-btn .wp-block-button__link {
  font-size: 1.0625rem !important;
  padding: 1.125rem 3rem !important;
}


/* ================================================================
   SCROLL REVEAL ANIMATION
   ================================================================ */

.lm-hero__content,
.lm-service-card,
.lm-feature-item,
.lm-step,
.lm-review-card,
.lm-section-header {
  opacity: 1;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lm-hero__content {
  transition-delay: 0.1s;
}

.lm-service-card:nth-child(1) { transition-delay: 0.05s; }
.lm-service-card:nth-child(2) { transition-delay: 0.15s; }
.lm-service-card:nth-child(3) { transition-delay: 0.25s; }
.lm-service-card:nth-child(4) { transition-delay: 0.35s; }

.lm-step:nth-child(1) { transition-delay: 0.05s; }
.lm-step:nth-child(2) { transition-delay: 0.15s; }
.lm-step:nth-child(3) { transition-delay: 0.25s; }
.lm-step:nth-child(4) { transition-delay: 0.35s; }

.lm-review-card:nth-child(1) { transition-delay: 0.05s; }
.lm-review-card:nth-child(2) { transition-delay: 0.15s; }
.lm-review-card:nth-child(3) { transition-delay: 0.25s; }

/* JS adds this class when element enters viewport */
.lm-animate-in {
  opacity: 1 !important;
  /*transform: translateY(0) !important;*/
}

/* Fallback: if JS is disabled, show everything */
@media (prefers-reduced-motion: reduce) {
  .lm-hero__content,
  .lm-service-card,
  .lm-feature-item,
  .lm-step,
  .lm-review-card,
  .lm-section-header {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
  .lm-header__inner {
    min-height: 64px;
  }

  .lm-hero__inner.wp-block-columns {
    min-height: unset;
  }

  .lm-why__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile: 768px and below */
@media (max-width: 768px) {

  /* Header */
  .lm-header__inner {
    min-height: 60px;
    padding-inline: 1rem;
  }

  .lm-site-logo img {
    max-height: 40px;
  }

  /* Secondary header items (Book Now / phone / trust badge) move into
     the mobile nav overlay instead of cluttering the top bar */
  .lm-header__cta {
    display: none !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open
    .lm-header__cta {
    display: block !important;
    margin-top: 1.5rem;
  }

  /* Hero stacks */
  .lm-hero__inner.wp-block-columns {
    flex-direction: column !important;
  }

  .lm-hero__content,
  .lm-hero__media {
    flex-basis: 100% !important;
    width: 100% !important;
  }

  .lm-hero__content {
    padding: 3rem 1.25rem 2rem !important;
  }

  .lm-hero__media .wp-block-cover {
    min-height: 300px !important;
    border-radius: 0 !important;
  }

  .lm-hero__trust {
    gap: 1.25rem !important;
    flex-wrap: wrap;
  }

  /* Services: 1 col */
  .lm-services__grid.wp-block-columns {
    flex-direction: column !important;
  }

  .lm-services__grid .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
  }

  /* Why section stacks */
  .lm-why__inner.wp-block-columns {
    flex-direction: column !important;
  }

  .lm-why__content,
  .lm-why__features {
    flex-basis: 100% !important;
    width: 100% !important;
  }

  /* Why grid: single col on small screens */
  .lm-why__grid {
    grid-template-columns: 1fr;
  }

  /* Process: 2 col then 1 */
  .lm-process__steps.wp-block-columns {
    flex-direction: column !important;
  }

  .lm-process__steps .wp-block-column {
    flex-basis: 100% !important;
  }

  /* Testimonials: single col */
  .lm-testimonials__grid.wp-block-columns {
    flex-direction: column !important;
  }

  .lm-testimonials__grid .wp-block-column {
    flex-basis: 100% !important;
  }

  /* CTA */
  .lm-cta-banner .wp-block-buttons {
    flex-direction: column !important;
    align-items: center;
  }

  .lm-cta-btn .wp-block-button__link {
    padding: 1rem 2rem !important;
    width: 100%;
    text-align: center;
  }

  /* Footer columns stack */
  .lm-footer__cols.wp-block-columns {
    flex-direction: column !important;
  }

  .lm-footer__cols .wp-block-column {
    flex-basis: 100% !important;
  }

  .lm-footer__bottom {
    flex-direction: column !important;
    text-align: center;
    gap: 0.75rem;
  }
  
  
  
  .lm-header__inner .is-layout-flex {
      flex-wrap: nowrap !important;
      gap: 10px;
  }
  
  .lm-header__inner {
    display: block !important;
  }
  
  .wp-block-group.lm-header__nav-wrap.is-content-justification-right.is-nowrap.is-layout-flex.wp-container-core-group-is-layout-e839407d.wp-block-group-is-layout-flex.reveal-on-scroll.is-visible
 {
    display: block;
}
  
  
  
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .lm-header__inner {
    gap: 0.75rem;
    display: block !important;
  }
  
  .lm-header__inner .is-layout-flex {
      flex-wrap: nowrap !important;
  }
  
  button.wp-block-navigation__responsive-container-open {
    display: block !important;
}

  .lm-hero__actions .wp-block-buttons {
    flex-direction: column !important;
  }

  .lm-hero__actions .wp-block-button {
    width: 100%;
  }

  .lm-hero__actions .wp-block-button__link {
    text-align: center;
    width: 100%;
  }
}


/* ================================================================
   UTILITIES
   ================================================================ */

/* Constrain section content to max width */
.lm-hero,
.lm-services,
.lm-why,
.lm-process,
.lm-testimonials,
.lm-cta-banner {
  width: 100%;
}

/* Full-bleed sections use inner padding */
.lm-services .wp-block-group__inner-container,
.lm-process .wp-block-group__inner-container,
.lm-testimonials .wp-block-group__inner-container {
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* Smooth link transitions everywhere */
a {
  transition: color var(--lm-transition);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
.wp-block-button__link:focus-visible {
  outline: 3px solid var(--lm-gold);
  outline-offset: 3px;
  border-radius: 4px;
}





.lm-areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: var(--lm-max-width);
    margin-inline: auto;
    justify-content: center;
}


.lm-area-tag {
    display: inline-block;
    padding: 9px 18px;
    background: #c9a84c2e;
    border: 1.5px solid var(--lm-border);
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--lm-navy);
    transition: background-color var(--lm-transition), border-color var(--lm-transition), color var(--lm-transition), transform var(--lm-transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}


.lm-area-tag:hover {
    background: #0a1f44;
    color: #fff;
}


.lm-eyebrow {
    text-align: center;
}

svg.lm_service_icon {
    height: 120px;
}


.contact_div {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    color: #C9A84C;
}

svg.lm_contact_icon {
    height: 24px;
    margin-right: 5px;
}

.contact_div p {
    margin-top: 0px;
}









/* NOTE: primary/outline/ghost button rules were defined twice in
   this file (once near "GLOBAL BUTTON STYLES" above using --lm-*
   vars, once here using --color-* vars). Since both now resolve
   to the same values via the alias block above, the duplicate
   block has been removed to avoid two competing rule sets. */

/* Ghost Gold variant (only unique addition from the duplicate block) */
.wp-block-button.is-style-ghost-gold .wp-block-button__link {
  background-color: transparent !important;
  color: var(--lm-gold) !important;
  border: 2px solid var(--lm-gold) !important;
}








/* ================================================================
   LOCALMOVER — contact-form.css
   Minimal Contact Form 7 styling — matches brand tokens
   ================================================================ */

/* ── WRAPPER ──────────────────────────────────────────────────── */
.lm-cf7-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

/* ── ROWS & COLUMNS ───────────────────────────────────────────── */
.lm-cf7-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lm-cf7-two-col .lm-cf7-field {
  flex: 1;
}

.lm-cf7-row:not(.lm-cf7-two-col) .lm-cf7-field {
  flex: 1;
}

/* ── FIELD SPANS (CF7 wraps inputs in <span>) ─────────────────── */
.lm-cf7-field span {
  display: block;
  width: 100%;
}

/* ── ALL INPUTS, SELECTS, TEXTAREA ───────────────────────────── */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  display: block;
  background: #ffffff;
  border: 1.5px solid var(--color-border, #E2D9C5);
  border-radius: var(--radius-sm, 4px);
  color: var(--color-text, #1A1A2E);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

/* ── PLACEHOLDER ──────────────────────────────────────────────── */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: var(--color-muted, #6B7280);
  opacity: 1;
}

/* ── FOCUS STATES ─────────────────────────────────────────────── */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--color-gold, #C9A84C);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* ── SELECT ARROW ─────────────────────────────────────────────── */
.wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── TEXTAREA ─────────────────────────────────────────────────── */
.wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── SUBMIT BUTTON ────────────────────────────────────────────── */
.lm-cf7-submit {
  margin-top: 0.5rem;
}

.wpcf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-gold, #C9A84C);
  color: var(--color-navy, #0A1F44);
  border: none;
  border-radius: var(--radius-sm, 4px);
  padding: 0.875rem 2rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: var(--color-navy, #0A1F44);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.2);
}

.wpcf7-form input[type="submit"]:active {
  transform: translateY(0);
}

/* ── VALIDATION MESSAGES ──────────────────────────────────────── */
.wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #c0392b;
}

.wpcf7-form .wpcf7-not-valid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}

/* ── RESPONSE OUTPUT (success / error message) ────────────────── */
.wpcf7-response-output {
  margin-top: 1.25rem !important;
  padding: 0.75rem 1rem !important;
  border-radius: var(--radius-sm, 4px) !important;
  font-size: 0.9rem !important;
  border: none !important;
}

.wpcf7-mail-sent-ok {
  background-color: #f0faf4 !important;
  color: #1a6635 !important;
  border-left: 3px solid #2e9954 !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked,
.wpcf7-aborted {
  background-color: #fdf2f2 !important;
  color: #922b21 !important;
  border-left: 3px solid #c0392b !important;
}

/* ── SPINNER ──────────────────────────────────────────────────── */
.wpcf7-spinner {
  display: none !important;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 600px) {
  .lm-cf7-row,
  .lm-cf7-two-col {
    flex-direction: column;
    gap: 0.75rem;
  }

  .wpcf7-form input[type="submit"] {
    width: 100%;
    justify-content: center;
  }
}



/* ================================================================
   LOCALMOVER — booking-bar.css
   Horizontal booking / quote bar — CF7 styled
   ================================================================ */

/* ── OUTER SHELL ─────────────────────────────────────────────── */
.lm-booking-bar {
  display: grid;
  grid-template-columns: 0.6fr 0.6fr 0.6fr 0.6fr 0.6fr auto;
  gap: 10px;
  align-items: end;
  background: var(--color-navy, #0A1F44);
  border-radius: 12px;
  padding: 0px 24px 24px;
}

/* ── FIELD WRAPPER ───────────────────────────────────────────── */
.lm-bk-field {
  display: flex;
  flex-direction: column;
}

/* ── LABELS ──────────────────────────────────────────────────── */
.lm-bk-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

/* ── CF7 SPAN WRAPPER ────────────────────────────────────────── */
.lm-booking-bar .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ── INPUTS & SELECT ─────────────────────────────────────────── */
.lm-booking-bar input[type="email"],
.lm-booking-bar input[type="text"],
.lm-booking-bar input[type="date"],
.lm-booking-bar select {
  width: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #ffffff !important;
  font-size: 14px;
  font-family: inherit;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}


.lm-booking-bar select option {
    color: #000;
}

.lm-booking-bar input::placeholder,
.lm-booking-bar select::placeholder {
  color: #fff !important;
}

.lm-booking-bar input[type="email"]:focus,
.lm-booking-bar input[type="text"]:focus,
.lm-booking-bar input[type="date"]:focus,
.lm-booking-bar select:focus {
  border-color: var(--color-gold, #C9A84C);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

/* ── SELECT ARROW ────────────────────────────────────────────── */
.lm-booking-bar select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ── DATE PICKER ICON ────────────────────────────────────────── */
.lm-booking-bar input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

/* ── SUBMIT BUTTON WRAPPER ───────────────────────────────────── */
.lm-bk-submit {
  display: flex;
  align-items: flex-end;
}

/* ── SUBMIT BUTTON ───────────────────────────────────────────── */
.lm-booking-bar input[type="submit"] {
  background: var(--color-gold, #C9A84C);
  color: var(--color-navy, #0A1F44);
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.lm-booking-bar input[type="submit"]:hover {
  background: #b8942e;
  transform: translateY(-1px);
}

.lm-booking-bar input[type="submit"]:active {
  transform: translateY(0);
}

/* ── VALIDATION ──────────────────────────────────────────────── */
.lm-booking-bar .wpcf7-not-valid {
  border-color: #e74c3c !important;
}

.lm-booking-bar .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #ff8a80;
  margin-top: 4px;
  display: block;
}

/* ── RESPONSE OUTPUT ─────────────────────────────────────────── */
.lm-booking-bar + .wpcf7-response-output {
  margin-top: 12px !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  border: none !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* ── RESPONSIVE — stack on mobile ───────────────────────────── */
@media (max-width: 768px) {
  .lm-booking-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 16px;
  }

  .lm-bk-submit {
    width: 100%;
  }

  .lm-booking-bar input[type="submit"] {
    width: 100%;
    text-align: center;
    padding: 13px;
  }
}






.lm-service-card__inner svg, .lm-feature-item svg {
    height: 100px;
}

.lm-why__inner p, .lm-why__inner h2 {
    color: #fff !important;
}

.has-global-padding {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.has-global-padding > .alignfull {
    margin-right: auto !important;
    margin-left: auto !important;
}

.lm-why__grid h4 {
    color: #fff !important;
}

.wp-block-button.is-style-lm-ghost-white .wp-block-button__link {
    color: #c9a84c !important;
    border: 2px solid #c9a84c !important;
}

.lm-review-card .lm-review-card__inner::before {
    opacity: 1 !important;
}

footer .has-text-color {
    color: #fff !important;
}

.lm-contact-trust-card h3 {
    color: #fff !important;
}








/* Aliases so --color-* and --transition keep working
   wherever they're used below, while --lm-* (defined at the
   top of this file) stays the single source of truth. */
:root {
  --color-navy:       var(--lm-navy);
  --color-gold:        var(--lm-gold);
  --color-gold-light:  var(--lm-gold-light);
  --color-white:       var(--lm-white);
  --color-off-white:   var(--lm-off-white);
  --color-text:        var(--lm-text);
  --color-muted:       var(--lm-text-muted);
  --color-border:      var(--lm-border);
  --radius-sm:         var(--lm-radius-sm);
  --radius-md:         var(--lm-radius-md);
  --radius-lg:         var(--lm-radius-lg);
  --transition:        var(--lm-transition);
  --max-width:         var(--lm-max-width);
  --content-width:     780px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }

.wp-site-blocks { padding-top: 0 !important; }

/* Section padding utility */
.is-style-section-padded {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.reveal-on-scroll {
  /*opacity: 0;*/
  /*transform: translateY(24px);*/
  /*transition: opacity 0.6s ease, transform 0.6s ease;*/
}
.reveal-on-scroll.is-visible {
  /*opacity: 1;*/
  /*transform: none !important;*/
}









/* Header */
.wp-block-site-header,
header.wp-block-template-part {
  background-color: var(--color-navy);
  box-shadow: 0 2px 20px rgba(10,31,68,0.15);
}

/* Logo */
.wp-block-site-logo img {
  max-height: 56px;
  width: auto;
}

/* Nav links */
.wp-block-navigation a {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color var(--transition);
  padding: 0.25rem 0;
  position: relative;
}

.wp-block-navigation a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.wp-block-navigation a:hover,
.wp-block-navigation .current-menu-item > a {
  color: var(--color-gold) !important;
}

.wp-block-navigation a:hover::after,
.wp-block-navigation .current-menu-item > a::after {
  width: 100%;
}

/* CTA button in nav */
.wp-block-navigation .wp-block-navigation-item.is-style-cta > a {
  background: var(--color-gold);
  color: var(--color-navy) !important;
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
}












/* ================================================================
   LOCALMOVER — pages.css
   Services · About · Contact + Block Editor Color Override Fix
   ================================================================ */


/* ================================================================
   FIX: BLOCK EDITOR COLOR OVERRIDES
   Problem: Our blocks.css was too specific, blocking editor color
   changes. These rules ensure any inline has-*-color class wins.
   ================================================================ */

/* Let editor-set text colors always win */
/*[class*="has-"][class*="-color"] {*/
/*  color: var(--wp--custom--color, inherit) !important;*/
/*}*/

/* More surgical: any block with inline color style wins */
/*.wp-block-paragraph[style*="color"],*/
/*.wp-block-heading[style*="color"],*/
/*.wp-block-list[style*="color"],*/
/*.wp-block-group[style*="color"] > p,*/
/*.wp-block-group[style*="color"] > h1,*/
/*.wp-block-group[style*="color"] > h2,*/
/*.wp-block-group[style*="color"] > h3,*/
/*.wp-block-group[style*="color"] > h4 {*/
/*  color: inherit !important;*/
/*}*/

/* Named palette classes always override our defaults */
.has-navy-color          { color: #0A1F44 !important; }
.has-gold-color          { color: #C9A84C !important; }
.has-gold-light-color    { color: #E8C97A !important; }
.has-white-color         { color: #FFFFFF !important; }
.has-off-white-color     { color: #F8F7F4 !important; }
.has-text-color          { color: #1A1A2E !important; }
.has-muted-color         { color: #6B7280 !important; }

/* Background palette overrides */
.has-navy-background-color       { background-color: #0A1F44 !important; }
.has-gold-background-color       { background-color: #C9A84C !important; }
.has-white-background-color      { background-color: #FFFFFF !important; }
.has-off-white-background-color  { background-color: #F8F7F4 !important; }

/* Allow any inline style="color:..." to override our CSS */
.wp-block-paragraph,
.wp-block-heading,
.wp-block-list {
  color: inherit;
}

/* Headings: our theme.json sets navy by default but editor can override */
h1.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading {
  color: inherit;
}

/* Inline style always wins (specificity fix) */
[style*="color:"] {
  color: unset;
}
[style*="color:"] {
  color: revert;
}


/* ================================================================
   PAGE HERO (shared across all inner pages)
   ================================================================ */

.lm-page-hero {
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative radial glow */
.lm-page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lm-page-hero .lm-label {
  display: inline-block;
}

/* Gold underline on hero H1 span */
.lm-page-hero h1 span[style*="color:#C9A84C"],
.lm-page-hero h1 span[style*="color: #C9A84C"] {
  position: relative;
  display: inline-block;
}


/* ================================================================
   SERVICES PAGE
   ================================================================ */

.lm-services-page .wp-block-group__inner-container,
.lm-services-page > .wp-block-group__inner-container {
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* Service card grid */
.lm-services-page__grid.wp-block-columns {
  align-items: stretch;
}

/* Service card */
.lm-svc-card {
  display: flex;
  flex-direction: column;
}

.lm-svc-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Gold top bar on hover */
.lm-svc-card__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lm-gold, #C9A84C);
  border-radius: 14px 14px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.lm-svc-card:hover .lm-svc-card__inner {
  border-color: #C9A84C !important;
  box-shadow: 0 12px 40px rgba(10,31,68,0.14);
  transform: translateY(-5px);
}

.lm-svc-card:hover .lm-svc-card__inner::before {
  transform: scaleX(1);
}

/* Service icon */
.lm-svc-icon-wrap {
  display: flex;
  align-items: flex-start;
}

.lm-svc-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.lm-svc-card:hover .lm-svc-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* Feature checklist */
.lm-svc-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lm-svc-feature {
  display: flex !important;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem !important;
  color: #374151 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.lm-check-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.lm-check-icon svg {
  width: 16px;
  height: 16px;
}

/* Push button to bottom */
.lm-svc-card__inner .wp-block-buttons {
  margin-top: auto;
}


/* ================================================================
   ABOUT PAGE
   ================================================================ */

.lm-about-story .wp-block-columns {
  align-items: center;
}

/* SVG illustration */
.lm-about-illustration {
  width: 100%;
  max-width: 340px;
  height: auto;
}

/* Stats row */
.lm-about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.lm-stat {
  min-width: 90px;
}

.lm-stat .wp-block-heading {
  color: #0A1F44 !important;
  margin-bottom: 0.25rem !important;
}

.lm-stat p {
  margin: 0 !important;
}

/* Values cards */
.lm-values .wp-block-columns {
  align-items: stretch;
}

.lm-value-card {
  display: flex;
  flex-direction: column;
}

.lm-value-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.lm-value-card:hover .lm-value-card__inner {
  box-shadow: 0 10px 36px rgba(10,31,68,0.12);
  transform: translateY(-4px);
}

/* Value icon */
.lm-value-icon {
  display: flex;
}

.lm-value-icon svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.lm-value-card:hover .lm-value-icon svg {
  transform: scale(1.12);
}

.lm-value-card__inner .wp-block-heading {
  color: #0A1F44 !important;
}

.lm-value-card__inner p {
  color: #6B7280 !important;
}


/* ================================================================
   CONTACT PAGE
   ================================================================ */

.lm-contact-body .wp-block-columns {
  align-items: flex-start;
}

/* ── FORM ── */
.lm-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lm-form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.lm-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lm-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}

.lm-required {
  color: #C9A84C;
  margin-left: 2px;
}

.lm-form__input {
  width: 100%;
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #1A1A2E;
  background: #FAFAF9;
  border: 1.5px solid #E2D9C5;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.lm-form__input::placeholder {
  color: #9CA3AF;
}

.lm-form__input:focus {
  border-color: #C9A84C;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.lm-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.lm-form__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.lm-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2.25rem;
  background: #C9A84C;
  color: #0A1F44;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 16px rgba(201,168,76,0.3);
}

.lm-form__submit:hover {
  background: #0A1F44;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(10,31,68,0.22);
}

.lm-form__submit svg {
  width: 18px;
  height: 18px;
}

.lm-form__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #9CA3AF;
  margin: 0;
  line-height: 1.5;
}

.lm-form__note svg {
  flex-shrink: 0;
}

/* ── CONTACT INFO CARD ── */
.lm-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lm-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.lm-contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.lm-contact-item:hover .lm-contact-item__icon {
  background: rgba(201,168,76,0.22);
}

.lm-contact-item__icon svg {
  width: 18px;
  height: 18px;
}

.lm-contact-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.lm-contact-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lm-contact-item__value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1A1A2E;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.lm-contact-item__value:hover {
  color: #C9A84C;
}

/* ── TRUST LIST (dark card) ── */
.lm-trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.lm-trust-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.lm-trust-list__icon {
  display: flex;
  flex-shrink: 0;
}

.lm-trust-list__icon svg {
  width: 20px;
  height: 20px;
}


/* ================================================================
   RESPONSIVE — PAGES
   ================================================================ */

@media (max-width: 1024px) {
  .lm-services-page__grid.wp-block-columns {
    flex-wrap: wrap !important;
  }
  .lm-svc-card {
    flex-basis: calc(50% - 1rem) !important;
    min-width: calc(50% - 1rem) !important;
  }
}

@media (max-width: 768px) {

  /* Services: single col */
  .lm-services-page__grid.wp-block-columns {
    flex-direction: column !important;
  }
  .lm-svc-card {
    flex-basis: 100% !important;
    width: 100% !important;
  }

  /* About: stack */
  .lm-about-story__inner.wp-block-columns,
  .lm-values .wp-block-columns {
    flex-direction: column !important;
  }
  .lm-about-story__media,
  .lm-about-story__content {
    flex-basis: 100% !important;
    width: 100% !important;
  }
  .lm-value-card {
    flex-basis: 100% !important;
  }
  .lm-about-stats {
    gap: 1.25rem;
  }

  /* Contact: stack */
  .lm-contact-body__inner.wp-block-columns {
    flex-direction: column !important;
  }
  .lm-contact-form-col,
  .lm-contact-info-col {
    flex-basis: 100% !important;
    width: 100% !important;
  }
  .lm-form__row--2col {
    grid-template-columns: 1fr;
  }
  .lm-contact-form-wrap {
    padding: 1.5rem !important;
  }
  
  
  
  .has-global-padding .reveal-on-scroll {
    padding: 0 24px;
}

  .lm-header__inner .reveal-on-scroll {
    padding: 0;
}

.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: auto !important;
    }
  
  .lm-nav .wp-block-navigation__container {
    gap: 10px;
}
  
  
}

@media (max-width: 480px) {
  .lm-about-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .lm-contact-info-card,
  .lm-contact-trust-card {
    padding: 1.5rem !important;
  }
  
  
  .has-global-padding .reveal-on-scroll {
    padding: 0 24px;
}

  .lm-header__inner .reveal-on-scroll {
    padding: 0;
}
  
  
}




ul.wp-block-navigation__submenu-container.lm-nav__item.wp-block-navigation-submenu li a span {
    color: #000 !important;
}

.wp-block-navigation .wp-block-navigation__submenu-icon {
    color: rgb(255 255 255);
}








