/* ── LEMOORE'S PROFESSIONAL MOVERS — Shared Stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal:      #1a1f2b;
  --charcoal-dark: #10131a;
  --charcoal-mid:  #252c3a;
  --teal:          #00b8b8;
  --teal-light:    #1ed4d4;
  --teal-dim:      #009898;
  --white:         #ffffff;
  --off-white:     #f5f7f8;
  --gray-100:      #eef0f3;
  --gray-200:      #dde1e8;
  --gray-500:      #7a8494;
  --gray-700:      #3d4554;
  --text:          #1c2331;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TOP BAR ── */
.top-bar { background: var(--charcoal-dark); color: #8a96aa; font-size: 13px; padding: 8px 0; }
.top-bar .inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.top-bar .phone { font-weight: 700; color: var(--teal-light); font-size: 14px; }

/* ── NAV ── */
nav { background: var(--charcoal); border-bottom: 3px solid var(--teal); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.35); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 62px; width: auto; display: block; filter: invert(1) hue-rotate(180deg) brightness(1.3); flex-shrink: 0; }
.nav-logo-name { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name .line1 { font-size: 19px; font-weight: 900; color: var(--white); letter-spacing: -.3px; }
.nav-logo-name .line1 span { color: var(--teal-light); }
.nav-logo-name .line2 { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: .8px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.75); border-radius: 6px; transition: all .15s; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--teal-light); }
.nav-cta { background: var(--teal) !important; color: var(--white) !important; padding: 10px 20px !important; border-radius: 8px !important; font-weight: 700 !important; transition: background .15s !important; }
.nav-cta:hover { background: var(--teal-light) !important; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: linear-gradient(110deg, var(--charcoal-dark) 0%, var(--charcoal-mid) 100%); padding: 64px 0; }
.page-hero .inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-hero .eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal); margin-bottom: 10px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 span { color: var(--teal-light); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 600px; }

/* ── SECTION COMMON ── */
section { padding: 80px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal); margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 40px); color: var(--charcoal); line-height: 1.2; }
.section-sub { font-size: 16px; color: var(--gray-500); margin-top: 12px; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.section-divider { width: 52px; height: 4px; background: var(--teal); border-radius: 2px; margin: 16px auto 0; }

/* ── BUTTONS ── */
.btn-teal { display: inline-block; background: var(--teal); color: var(--white); font-size: 15px; font-weight: 700; padding: 14px 32px; border-radius: 10px; border: none; cursor: pointer; transition: background .15s; letter-spacing: .2px; }
.btn-teal:hover { background: var(--teal-light); }
.btn-outline { display: inline-block; background: transparent; color: var(--teal); font-size: 15px; font-weight: 700; padding: 13px 30px; border-radius: 10px; border: 2px solid var(--teal); cursor: pointer; transition: all .15s; }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-white { display: inline-block; background: var(--white); color: var(--charcoal); font-size: 15px; font-weight: 800; padding: 14px 36px; border-radius: 10px; border: none; cursor: pointer; transition: all .15s; white-space: nowrap; }
.btn-white:hover { background: var(--charcoal); color: var(--white); }

/* ── CARDS ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.card { background: var(--white); border-radius: 14px; padding: 32px 28px; border: 1.5px solid var(--gray-200); transition: all .2s; }
.card:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(0,184,184,0.1); transform: translateY(-3px); }
.card-icon { width: 56px; height: 56px; background: rgba(0,184,184,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon svg { width: 28px; height: 28px; fill: var(--teal-dim); }
.card h3 { font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.card-link { font-size: 13px; font-weight: 700; color: var(--teal-dim); margin-top: 14px; display: flex; align-items: center; gap: 4px; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--teal-dim) 0%, var(--teal) 100%); padding: 64px 0; }
.cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-logo-wrap img { height: 90px; width: auto; filter: invert(1) hue-rotate(180deg) brightness(1.4); }
.cta-copy h2 { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--white); margin-bottom: 8px; }
.cta-copy p { font-size: 16px; color: rgba(255,255,255,0.85); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 24px 0; }
.trust-bar .inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); white-space: nowrap; }
.trust-divider { width: 1px; height: 40px; background: var(--gray-200); }
.trust-logo-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 10px 22px; display: flex; align-items: center; justify-content: center; height: 68px; min-width: 130px; transition: box-shadow .2s, border-color .2s; }
.trust-logo-wrap:hover { border-color: var(--teal); box-shadow: 0 2px 12px rgba(0,184,184,0.18); }
.trust-logo-wrap img { max-height: 46px; max-width: 140px; width: auto; height: auto; display: block; object-fit: contain; }

/* ── STATS BAR ── */
.stats { background: var(--teal); padding: 28px 0; }
.stats .inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-number { font-size: 38px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); margin-top: 5px; text-transform: uppercase; letter-spacing: .5px; }

/* ── FORM STYLES ── */
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 11px; font-weight: 700; color: var(--gray-700); text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text); outline: none; transition: border-color .15s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; background: var(--teal); color: var(--white); font-size: 16px; font-weight: 700; padding: 15px; border: none; border-radius: 10px; cursor: pointer; margin-top: 8px; transition: background .15s; font-family: 'Inter', sans-serif; }
.form-submit:hover { background: var(--teal-light); }

/* ── FOOTER ── */
footer { background: var(--charcoal-dark); color: rgba(255,255,255,0.65); padding: 60px 0 28px; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { height: 52px; width: auto; filter: invert(1) hue-rotate(180deg) brightness(1.3); margin-bottom: 14px; }
.footer-brand .name { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-brand .phone { color: var(--teal-light); font-weight: 700; font-size: 17px; margin-top: 12px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 12px; }
.footer-contact-line svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 24px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--teal-light); }

/* ── DRAFT BANNER ── */
.draft-banner { position: fixed; bottom: 20px; right: 20px; background: var(--charcoal); color: var(--white); padding: 12px 20px; border-radius: 12px; font-size: 13px; font-weight: 600; border-left: 4px solid var(--teal); box-shadow: 0 8px 28px rgba(0,0,0,0.3); z-index: 9999; max-width: 260px; }
.draft-banner .title { font-weight: 800; font-size: 14px; color: var(--teal-light); margin-bottom: 2px; }
.draft-banner p { color: rgba(255,255,255,0.65); font-size: 12px; line-height: 1.5; }
