/* ============================================================
   Lakeshore Plumbing — Modern Stylesheet
   ============================================================ */

:root {
  --navy:       #0F2A44;
  --navy-mid:   #1A3A5C;
  --navy-light: #224E7A;
  --blue:       #2980B9;
  --blue-mid:   #1D6FA0;
  --blue-light: #E8F4FD;
  --blue-xlight:#F0F8FF;
  --gold:       #C8993A;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-300:   #CBD5E1;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --text:       #0F2A44;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.18);
  --r-sm:       8px;
  --r-md:       12px;
  --r-lg:       18px;
  --ease:       220ms cubic-bezier(0.4,0,0.2,1);
  --mw:         1120px;
}

/* ---- Reset ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--text);background:var(--white);
  line-height:1.6;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
section{scroll-margin-top:80px}

.lp-wrap{max-width:var(--mw);margin:0 auto;padding:0 32px}

/* ============================================================
   TOP BAR
   ============================================================ */
.lp-topbar{
  background:var(--navy);
  padding:10px 0;
  font-size:0.82rem;font-weight:500;
}
.lp-topbar .lp-wrap{
  display:flex;align-items:center;gap:28px;
}
.lp-topbar-item{
  display:flex;align-items:center;gap:7px;
  color:rgba(255,255,255,0.70);
}
.lp-topbar-item a{color:rgba(255,255,255,0.70);transition:color var(--ease)}
.lp-topbar-item a:hover{color:#fff}
.lp-topbar-sep{margin-left:auto}
.lp-topbar-license{
  color:rgba(255,255,255,0.50);
  font-size:0.78rem;letter-spacing:0.03em;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.lp-nav{
  background:var(--white);
  border-bottom:1px solid var(--gray-200);
  position:sticky;top:0;z-index:999;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.lp-nav .lp-wrap{
  display:flex;align-items:center;
  justify-content:space-between;
  height:80px;gap:24px;
}
.lp-nav-brand img{
  height:60px;width:auto;
  object-fit:contain;
}
.lp-nav-links{
  display:flex;align-items:center;gap:2px;
}
.lp-nav-link{
  padding:8px 16px;
  font-size:0.92rem;font-weight:500;
  color:var(--gray-600);border-radius:var(--r-sm);
  transition:background var(--ease),color var(--ease);
  cursor:pointer;display:flex;align-items:center;gap:5px;
  white-space:nowrap;
}
.lp-nav-link:hover,.lp-nav-link.active{
  background:var(--blue-light);color:var(--navy);
}

/* Dropdown */
.lp-nav-drop{position:relative}
.lp-drop-menu{
  display:none;position:absolute;
  top:calc(100% + 8px);left:0;
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--r-md);
  box-shadow:var(--shadow-md);
  min-width:200px;overflow:hidden;z-index:300;
}
.lp-nav-drop:hover .lp-drop-menu,
.lp-nav-drop:focus-within .lp-drop-menu{display:block}
.lp-drop-menu a{
  display:flex;align-items:center;gap:10px;
  padding:13px 18px;
  font-size:0.9rem;font-weight:500;
  color:var(--gray-600);
  transition:background var(--ease),color var(--ease);
  border-bottom:1px solid var(--gray-100);
}
.lp-drop-menu a:last-child{border-bottom:none}
.lp-drop-menu a:hover{background:var(--blue-light);color:var(--navy)}
.lp-drop-dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--blue);opacity:0;
  transition:opacity var(--ease);
}
.lp-drop-menu a:hover .lp-drop-dot{opacity:1}

/* Right side */
.lp-nav-right{display:flex;align-items:center;gap:16px}
.lp-nav-phone{
  display:flex;align-items:center;gap:7px;
  font-size:0.91rem;font-weight:700;color:var(--navy);
  white-space:nowrap;
}
.lp-nav-phone a{color:inherit;transition:color var(--ease)}
.lp-nav-phone a:hover{color:var(--blue)}
.lp-nav-phone svg{color:var(--blue)}
.lp-nav-cta{
  display:inline-flex;align-items:center;gap:7px;
  padding:10px 22px;
  background:var(--blue);color:var(--white);
  font-size:0.89rem;font-weight:600;
  border-radius:var(--r-sm);
  transition:background var(--ease),transform var(--ease),box-shadow var(--ease);
  white-space:nowrap;
}
.lp-nav-cta:hover{
  background:var(--blue-mid);
  transform:translateY(-1px);
  box-shadow:0 4px 14px rgba(41,128,185,0.35);
}

/* Mobile */
.lp-mob-toggle{
  display:none;background:none;border:none;
  cursor:pointer;padding:8px;color:var(--gray-600);
}
.lp-mob-nav{
  display:none;background:var(--white);
  border-top:1px solid var(--gray-200);
  padding:6px 32px 18px;
}
.lp-mob-nav.is-open{display:block}
.lp-mob-nav a{
  display:block;padding:13px 0;
  font-size:0.97rem;font-weight:500;color:var(--gray-600);
  border-bottom:1px solid var(--gray-100);
  transition:color var(--ease);
}
.lp-mob-nav a:last-child{border-bottom:none}
.lp-mob-nav a:hover{color:var(--navy)}

/* ============================================================
   HERO
   ============================================================ */
.lp-hero{
  position:relative;min-height:90vh;
  display:flex;align-items:center;
  background:url('../images/bg.jpg') center 30% / cover no-repeat;
}
.lp-hero::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(
    110deg,
    rgba(10,24,40,0.93) 0%,
    rgba(15,42,68,0.86) 45%,
    rgba(26,74,122,0.72) 100%
  );
}
.lp-hero-inner{
  position:relative;z-index:1;
  padding:80px 32px;max-width:var(--mw);
  margin:0 auto;width:100%;
}
.lp-hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.22);
  color:rgba(255,255,255,0.85);
  font-size:0.76rem;font-weight:700;
  letter-spacing:0.10em;text-transform:uppercase;
  padding:7px 16px;border-radius:100px;
  margin-bottom:28px;
}
.lp-hero-badge-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--gold);
}
.lp-hero h1{
  font-size:clamp(2.4rem,5.5vw,4.2rem);
  font-weight:800;color:var(--white);
  line-height:1.08;letter-spacing:-0.03em;
  margin-bottom:24px;max-width:780px;
}
.lp-hero h1 em{
  font-style:normal;
  color:transparent;
  -webkit-text-stroke:1.5px rgba(255,255,255,0.6);
}
.lp-hero-sub{
  font-size:clamp(1rem,2vw,1.15rem);
  color:rgba(255,255,255,0.78);
  max-width:540px;line-height:1.78;
  margin-bottom:44px;
}
.lp-hero-btns{display:flex;gap:14px;flex-wrap:wrap}
.lp-hero-trust{
  display:flex;align-items:center;gap:28px;
  margin-top:56px;padding-top:32px;
  border-top:1px solid rgba(255,255,255,0.12);
  flex-wrap:wrap;
}
.lp-hero-trust-item{
  display:flex;align-items:center;gap:10px;
  font-size:0.84rem;font-weight:600;
  color:rgba(255,255,255,0.75);
  letter-spacing:0.01em;
}
.lp-hero-trust-item svg{color:var(--gold);flex-shrink:0}

/* ============================================================
   BUTTONS
   ============================================================ */
.lp-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 32px;
  font-size:0.95rem;font-weight:600;
  border-radius:var(--r-sm);border:2px solid transparent;
  cursor:pointer;transition:all var(--ease);
  letter-spacing:0.01em;font-family:inherit;line-height:1;
}
.lp-btn-primary{background:var(--blue);color:var(--white);border-color:var(--blue)}
.lp-btn-primary:hover{
  background:var(--blue-mid);border-color:var(--blue-mid);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(41,128,185,0.40);
}
.lp-btn-ghost{
  background:transparent;color:var(--white);
  border-color:rgba(255,255,255,0.50);
}
.lp-btn-ghost:hover{
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.85);
  transform:translateY(-2px);
}
.lp-btn-white{
  background:var(--white);color:var(--navy);
  border-color:var(--white);
}
.lp-btn-white:hover{
  background:var(--blue-light);border-color:var(--blue-light);
  transform:translateY(-2px);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.lp-stats{
  background:var(--navy-mid);
  padding:0;
}
.lp-stats .lp-wrap{
  display:grid;grid-template-columns:repeat(4,1fr);
}
.lp-stat{
  padding:32px 24px;text-align:center;
  border-right:1px solid rgba(255,255,255,0.08);
}
.lp-stat:last-child{border-right:none}
.lp-stat-num{
  font-size:2.2rem;font-weight:800;
  color:var(--white);letter-spacing:-0.03em;
  line-height:1;margin-bottom:6px;
}
.lp-stat-num span{color:var(--gold)}
.lp-stat-label{
  font-size:0.78rem;font-weight:600;
  color:rgba(255,255,255,0.55);
  letter-spacing:0.07em;text-transform:uppercase;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.lp-sh{text-align:center;margin-bottom:60px}
.lp-sh-eyebrow{
  display:inline-block;
  font-size:0.73rem;font-weight:700;
  letter-spacing:0.13em;text-transform:uppercase;
  color:var(--blue);margin-bottom:14px;
}
.lp-sh-title{
  font-size:clamp(1.8rem,3.8vw,2.7rem);
  font-weight:800;color:var(--navy);
  line-height:1.14;letter-spacing:-0.025em;
  margin-bottom:16px;
}
.lp-sh-sub{
  font-size:1rem;color:var(--gray-400);
  max-width:580px;margin:0 auto;line-height:1.78;
}

/* ============================================================
   SERVICES
   ============================================================ */
.lp-services{background:var(--off-white);padding:100px 0}
.lp-svc-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.lp-svc-card{
  position:relative;border-radius:var(--r-lg);
  overflow:hidden;display:block;
  aspect-ratio:16/10;box-shadow:var(--shadow-md);
  transition:transform var(--ease),box-shadow var(--ease);
}
.lp-svc-card:hover{
  transform:translateY(-6px);box-shadow:var(--shadow-xl);
}
.lp-svc-card img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 500ms cubic-bezier(0.4,0,0.2,1);
}
.lp-svc-card:hover img{transform:scale(1.06)}
.lp-svc-overlay{
  position:absolute;inset:0;
  background:linear-gradient(
    to top,
    rgba(10,24,40,0.92) 0%,
    rgba(10,24,40,0.40) 50%,
    rgba(10,24,40,0.08) 100%
  );
  display:flex;flex-direction:column;
  justify-content:flex-end;
  padding:32px 36px;
}
.lp-svc-tag{
  display:inline-block;
  background:rgba(41,128,185,0.85);
  color:rgba(255,255,255,0.95);
  font-size:0.7rem;font-weight:700;
  letter-spacing:0.09em;text-transform:uppercase;
  padding:5px 12px;border-radius:100px;
  margin-bottom:12px;width:fit-content;
}
.lp-svc-overlay h3{
  font-size:1.6rem;font-weight:800;
  color:var(--white);letter-spacing:-0.02em;
  margin-bottom:10px;
}
.lp-svc-overlay p{
  font-size:0.87rem;color:rgba(255,255,255,0.72);
  line-height:1.6;margin-bottom:18px;
  max-width:360px;
}
.lp-svc-link{
  display:inline-flex;align-items:center;gap:8px;
  font-size:0.84rem;font-weight:700;
  color:var(--white);letter-spacing:0.01em;
  transition:gap var(--ease);
}
.lp-svc-card:hover .lp-svc-link{gap:13px}
.lp-svc-link-arrow{
  width:32px;height:32px;border-radius:50%;
  background:rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;
  transition:background var(--ease);
  flex-shrink:0;
}
.lp-svc-card:hover .lp-svc-link-arrow{background:var(--blue)}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.lp-why{background:var(--white);padding:100px 0}
.lp-why-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.lp-why-card{
  padding:40px 32px;
  border-radius:var(--r-lg);
  border:1.5px solid var(--gray-200);
  background:var(--white);
  transition:border-color var(--ease),box-shadow var(--ease),transform var(--ease);
}
.lp-why-card:hover{
  border-color:var(--blue);
  box-shadow:0 8px 32px rgba(41,128,185,0.12);
  transform:translateY(-5px);
}
.lp-why-icon-wrap{
  width:68px;height:68px;
  background:var(--blue-light);border-radius:var(--r-md);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:24px;
  transition:background var(--ease);
}
.lp-why-card:hover .lp-why-icon-wrap{background:var(--blue)}
.lp-why-icon-wrap img{
  width:36px;height:36px;object-fit:contain;
  transition:filter var(--ease);
}
.lp-why-card:hover .lp-why-icon-wrap img{
  filter:brightness(0) invert(1);
}
.lp-why-card h3{
  font-size:1.1rem;font-weight:700;
  color:var(--navy);margin-bottom:12px;
  letter-spacing:-0.01em;
}
.lp-why-card p{
  font-size:0.9rem;color:var(--gray-400);
  line-height:1.72;
}

/* ============================================================
   CONTACT
   ============================================================ */
.lp-contact{
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);
  padding:100px 0;
}
.lp-contact .lp-sh-eyebrow{color:rgba(255,255,255,0.55)}
.lp-contact .lp-sh-title{color:var(--white)}
.lp-contact .lp-sh-sub{color:rgba(255,255,255,0.55)}
.lp-contact-grid{
  display:grid;grid-template-columns:1fr 1.15fr;
  gap:72px;align-items:start;
}
.lp-contact-info h3{
  font-size:1.25rem;font-weight:700;
  color:var(--white);margin-bottom:36px;
  letter-spacing:-0.01em;
}
.lp-contact-item{
  display:flex;align-items:flex-start;gap:18px;
  margin-bottom:30px;
}
.lp-contact-item:last-child{margin-bottom:0}
.lp-ci-icon{
  width:48px;height:48px;flex-shrink:0;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
}
.lp-ci-icon svg{color:rgba(255,255,255,0.80)}
.lp-ci-label{
  font-size:0.72rem;font-weight:700;
  letter-spacing:0.09em;text-transform:uppercase;
  color:rgba(255,255,255,0.45);
  margin-bottom:5px;
}
.lp-ci-value{
  font-size:0.97rem;font-weight:600;
  color:rgba(255,255,255,0.90);line-height:1.55;
}
.lp-ci-value a{
  color:rgba(255,255,255,0.90);
  transition:color var(--ease);
}
.lp-ci-value a:hover{color:var(--white)}

/* Form card */
.lp-form-card{
  background:var(--white);
  border-radius:var(--r-lg);
  padding:44px 40px;
  box-shadow:var(--shadow-xl);
}
.lp-form-card h3{
  font-size:1.25rem;font-weight:700;
  color:var(--navy);margin-bottom:30px;
  letter-spacing:-0.01em;
}
.lp-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.lp-fg{margin-bottom:18px}
.lp-flabel{
  display:block;font-size:0.82rem;font-weight:600;
  color:var(--gray-600);margin-bottom:7px;
}
.lp-flabel span{color:#E53E3E}
.form-field,.lp-finput{
  display:block;width:100%;
  padding:12px 15px;
  border:1.5px solid var(--gray-200);
  border-radius:var(--r-sm);
  font-size:0.93rem;color:var(--gray-800);
  background:var(--white);
  transition:border-color var(--ease),box-shadow var(--ease);
  outline:none;font-family:inherit;line-height:1.5;
}
.form-field:focus,.lp-finput:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(41,128,185,0.13);
}
.form-field::placeholder,.lp-finput::placeholder{color:var(--gray-300)}
textarea.form-field,textarea.lp-finput{resize:vertical;min-height:120px}

.lp-recaptcha-wrap{margin:20px 0 22px}
.lp-form-submit,.button.full-width{
  width:100%;padding:15px;
  background:var(--navy);color:var(--white);
  border:none;border-radius:var(--r-sm);
  font-size:1rem;font-weight:700;
  cursor:pointer;
  transition:background var(--ease),transform var(--ease),box-shadow var(--ease);
  font-family:inherit;letter-spacing:0.01em;
}
.lp-form-submit:hover,.button.full-width:hover{
  background:var(--navy-light);
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(15,42,68,0.28);
}

/* Status messages */
.success-wrapper,.error-wrapper{padding:20px 0;text-align:center}
.success-message{
  display:inline-block;background:#ECFDF5;
  border:1.5px solid #86EFAC;color:#14532D;
  padding:14px 28px;border-radius:var(--r-md);
  font-weight:600;font-size:0.95rem;
}
.error-message{
  display:inline-block;background:#FEF2F2;
  border:1.5px solid #FECACA;color:#7F1D1D;
  padding:14px 28px;border-radius:var(--r-md);
  font-weight:600;font-size:0.95rem;
}

/* ============================================================
   CTA BAND (subpages)
   ============================================================ */
.lp-cta{
  background:linear-gradient(110deg,var(--navy) 0%,var(--blue-mid) 100%);
  padding:88px 0;text-align:center;
}
.lp-cta h2{
  font-size:clamp(1.7rem,3.5vw,2.6rem);
  font-weight:800;color:var(--white);
  letter-spacing:-0.025em;margin-bottom:14px;
}
.lp-cta p{
  color:rgba(255,255,255,0.65);font-size:1rem;
  margin-bottom:36px;max-width:480px;
  margin-left:auto;margin-right:auto;
  line-height:1.7;
}
.lp-cta-btns{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
}

/* ============================================================
   PAGE HEADER (subpages)
   ============================================================ */
.lp-page-hdr{
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 60%,var(--navy-light) 100%);
  padding:80px 0 72px;
}
.lp-page-hdr .lp-wrap{text-align:center}
.lp-page-hdr h1{
  font-size:clamp(2rem,4.5vw,3.2rem);
  font-weight:800;color:var(--white);
  letter-spacing:-0.025em;margin-bottom:14px;
}
.lp-crumb{
  font-size:0.85rem;color:rgba(255,255,255,0.50);
}
.lp-crumb a{color:rgba(255,255,255,0.50);transition:color var(--ease)}
.lp-crumb a:hover{color:rgba(255,255,255,0.85)}
.lp-crumb span{margin:0 8px}

/* ============================================================
   CONTENT (subpages)
   ============================================================ */
.lp-content-sec{background:var(--white);padding:88px 0}
.lp-content-wrap{max-width:740px;margin:0 auto}
.lp-content-wrap>p{
  font-size:1.02rem;color:var(--gray-600);
  line-height:1.85;margin-bottom:24px;
}
.lp-content-wrap>p:last-child{margin-bottom:0}
.lp-content-h{
  font-size:1.3rem;font-weight:700;
  color:var(--navy);margin:44px 0 14px;
  letter-spacing:-0.01em;
  padding-left:18px;
  border-left:4px solid var(--blue);
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer{background:var(--navy);padding:48px 0 36px}
.lp-footer-top{
  display:grid;grid-template-columns:1.4fr 1fr 1fr;
  gap:48px;padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.lp-footer-brand img{
  height:44px;width:auto;margin-bottom:16px;
  filter:brightness(0) invert(1);opacity:0.85;
}
.lp-footer-tagline{
  font-size:0.88rem;color:rgba(255,255,255,0.45);
  line-height:1.7;max-width:240px;
}
.lp-footer-col h4{
  font-size:0.76rem;font-weight:700;
  letter-spacing:0.10em;text-transform:uppercase;
  color:rgba(255,255,255,0.40);
  margin-bottom:18px;
}
.lp-footer-col a{
  display:block;
  font-size:0.9rem;font-weight:500;
  color:rgba(255,255,255,0.62);
  margin-bottom:12px;
  transition:color var(--ease);
}
.lp-footer-col a:last-child{margin-bottom:0}
.lp-footer-col a:hover{color:var(--white)}
.lp-footer-bottom{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:28px;flex-wrap:wrap;gap:12px;
}
.lp-footer-copy{
  font-size:0.81rem;color:rgba(255,255,255,0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:960px){
  .lp-stats .lp-wrap{grid-template-columns:repeat(2,1fr)}
  .lp-stat{border-right:none;border-bottom:1px solid rgba(255,255,255,0.08)}
  .lp-stat:nth-child(odd){border-right:1px solid rgba(255,255,255,0.08)}
  .lp-stat:nth-child(3),.lp-stat:nth-child(4){border-bottom:none}
  .lp-why-grid{grid-template-columns:1fr 1fr}
  .lp-contact-grid{grid-template-columns:1fr;gap:44px}
  .lp-footer-top{grid-template-columns:1fr 1fr;gap:36px}
}

@media(max-width:768px){
  .lp-wrap{padding:0 22px}
  .lp-nav-links,.lp-nav-right{display:none}
  .lp-mob-toggle{display:flex}
  .lp-hero{min-height:80vh}
  .lp-hero-inner{padding:60px 22px}
  .lp-hero-trust{gap:18px}
  .lp-svc-grid{grid-template-columns:1fr}
  .lp-svc-card{aspect-ratio:16/9}
  .lp-form-row{grid-template-columns:1fr}
  .lp-form-card{padding:32px 26px}
  .lp-footer-top{grid-template-columns:1fr}
  .lp-footer-bottom{flex-direction:column;align-items:flex-start}
}

@media(max-width:580px){
  .lp-why-grid{grid-template-columns:1fr}
  .lp-hero-btns{flex-direction:column;align-items:flex-start}
  .lp-btn{width:100%;max-width:300px;justify-content:center}
  .lp-stats .lp-wrap{grid-template-columns:repeat(2,1fr)}
  .lp-cta-btns{flex-direction:column;align-items:center}
}
