/* =========================================
   Long Island Waterscapes — Global Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --deep:    #0d1f1a;
  --forest:  #1b3a2f;
  --moss:    #2e5c45;
  --sage:    #4a7c5e;
  --stone:   #8b9e8a;
  --cream:   #f4f0e8;
  --parchment: #ede8dc;
  --gold:    #c9a84c;
  --gold-lt: #e2c97e;
  --white:   #ffffff;
  --text:    #1a1a1a;
  --text-lt: #4a4a4a;
  --radius:  4px;
  --shadow:  0 4px 24px rgba(13,31,26,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--deep);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.1rem; color: var(--text-lt); }
a { color: var(--moss); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAVIGATION ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep);
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--deep);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--gold-lt); color: var(--deep); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--deep);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 18px;
  border-radius: 0;
  font-size: 0.85rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--forest) 60%, var(--moss) 100%);
  color: var(--white);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.longislandpondconstruction.com/assets/images/hero.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero .sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}
.btn-gold {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: var(--deep); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-green {
  background: var(--moss);
  color: var(--white);
  border-color: var(--moss);
}
.btn-green:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }

/* ---- SECTIONS ---- */
.section { padding: 72px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--deep); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 0.75rem; }
.section-intro { font-size: 1.05rem; color: var(--text-lt); max-width: 680px; margin-bottom: 2.5rem; }

/* ---- GRID ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,31,26,0.18); }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.card-body p { margin-bottom: 1rem; font-size: 0.95rem; }
.card-img { width: 100%; height: 220px; object-fit: cover; }

/* ---- SERVICE ICON CARDS ---- */
.icon-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.icon-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.icon-card .icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.icon-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.icon-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.icon-card a { font-size: 0.88rem; font-weight: 600; color: var(--moss); }
.icon-card a:hover { color: var(--gold); }

/* ---- WHY CHOOSE US ---- */
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 2rem; }
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
}
.why-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { color: var(--gold-lt); margin-bottom: 4px; }
.why-item p { font-size: 0.92rem; margin: 0; color: rgba(255,255,255,0.72); }

/* ---- PROCESS ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.process-step {
  text-align: center;
  padding: 28px 16px;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; }

/* ---- TESTIMONIALS ---- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 28px 24px;
}
.testimonial .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial p { font-style: italic; font-size: 0.95rem; margin-bottom: 16px; }
.testimonial .author { font-weight: 600; font-size: 0.88rem; color: var(--moss); }
.testimonial .location { font-size: 0.82rem; color: var(--stone); }

/* ---- LOCATIONS LIST ---- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2rem;
}
.locations-grid a {
  display: block;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--moss);
  border: 1px solid var(--parchment);
  transition: background 0.2s, border-color 0.2s;
}
.locations-grid a:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--parchment);
  padding: 18px 0;
}
.faq-item h4 { color: var(--deep); margin-bottom: 8px; cursor: pointer; }
.faq-item p { font-size: 0.95rem; margin: 0; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--forest), var(--moss));
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 auto 2rem; }

/* ---- STAT BAR ---- */
.stat-bar {
  background: var(--forest);
  padding: 36px 24px;
}
.stat-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; text-align: center; }
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; }
.footer-brand .phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
}
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: 1140px;
  margin: 0 auto;
}

/* ---- CONTENT PAGE ---- */
.content-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--forest) 60%, var(--moss) 100%);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.content-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.longislandpondconstruction.com/assets/images/hero.jpg') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.content-hero > *, .content-hero .hero-badge, .content-hero h1, .content-hero .sub, .content-hero p, .content-hero div { position: relative; z-index: 1; }
.content-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.content-hero .sub { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

.content-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px;
}
.content-body h2 { margin: 2rem 0 0.75rem; color: var(--deep); }
.content-body h3 { margin: 1.5rem 0 0.5rem; color: var(--forest); }
.content-body ul { list-style: none; margin: 0.5rem 0 1rem 0; }
.content-body ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.96rem;
  color: var(--text-lt);
}
.content-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--moss);
  font-weight: 700;
}

/* ---- INLINE CTA BOX ---- */
.inline-cta {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 2.5rem 0;
}
.inline-cta h3 { margin-bottom: 0.4rem; }
.inline-cta p { margin-bottom: 1rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--deep); padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,0.1); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; border: none; padding: 0 0 0 14px; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .process-steps { grid-template-columns: 1fr; }
  .stat-bar .container { gap: 28px; }
}

/* ---- CALL FLOAT ---- */
.call-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--deep);
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.call-float:hover { background: var(--gold-lt); color: var(--deep); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--forest);
  padding: 10px 24px;
  font-size: 0.82rem;
}
.breadcrumb .container { max-width: 1140px; margin: 0 auto; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 6px; }
.breadcrumb .current { color: var(--gold-lt); }
