/* ══════════════════════════════════════
   PRIMOS PAVERS — STYLESHEET
   ══════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --primary:       #0A7B8C;   /* Caribbean teal */
  --primary-light: #0FA3B8;   /* Lagoon teal */
  --gold:          #C4A87C;   /* Warm sand */
  --gold-light:    #D9C4A0;   /* Light sand */
  --stone:         #7AABB0;   /* Sea-glass */
  --dark:          #063A48;   /* Deep ocean navy */
  --light:         #F2FAFB;   /* Aqua white */
  --white:         #FFFFFF;
  --border:        #BAE0E6;   /* Soft aqua border */
  --text:          #1A3640;   /* Deep sea text */
  --text-muted:    #2E5F6A;   /* Muted sea */
  --shadow:        0 4px 24px rgba(0, 0, 0, .08);
  --shadow-lg:     0 12px 48px rgba(0, 0, 0, .16);
  --radius:        14px;
  --nav-h:         76px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    0.3s var(--ease);
}

/* ── RESET / BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: .2px;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 168, 124, .45);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: rgba(6, 58, 72, .5);
}
.btn-outline:hover {
  background: rgba(6, 58, 72, .08);
  border-color: var(--dark);
}
#hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
}
#hero .btn-outline:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
}
#hero .btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 22px rgba(196, 168, 124, .55);
}
#hero .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(196, 168, 124, .65);
}
.btn-lg { padding: .9rem 2.1rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 55, 70, .92);
  backdrop-filter: blur(14px);
  transition: box-shadow .35s var(--ease);
}
#navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, .25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 2rem;
}

/* Logo — white by default (dark-overlay hero), white when nav is scrolled */
.logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #fff;
  flex-shrink: 0;
}
.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.logo strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -.3px;
  color: #fff;
}
.logo small { font-size: .68rem; opacity: .65; }

.logo-img {
  height: 76px;
  width: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.9))
    drop-shadow(0 0 14px rgba(255,255,255,0.5))
    drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.logo-img-footer {
  width: 600px;
  height: auto;
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,1))
    drop-shadow(0 0 12px rgba(255,255,255,0.95))
    drop-shadow(0 0 24px rgba(255,255,255,0.75))
    drop-shadow(0 0 48px rgba(255,255,255,0.4));
}

/* Nav links — white by default (dark-overlay hero), white when scrolled */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links .btn { color: #fff; }

/* When scrolled — restore white text on dark nav */
#navbar.scrolled .logo { color: #fff; }
#navbar.scrolled .logo strong { color: #fff; }
#navbar.scrolled .nav-links a { color: rgba(255, 255, 255, .85); }
#navbar.scrolled .nav-links a:hover { color: #fff; }
#navbar.scrolled .hamburger span { background: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  padding-block: calc(var(--nav-h) + 3rem) 5rem;
}

/* Photo background — natural colors, slightly brightened */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero-bg.jpg') center / cover no-repeat;
  filter: saturate(0.8) brightness(0.85);
}

/* Dark overlay — keeps image visible but ensures text contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.30) 50%,
    rgba(0, 0, 0, 0.52) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Prominent company name in hero */
.hero-company-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .45);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(196, 168, 124, .25);
  border: 1px solid rgba(196, 168, 124, .75);
  color: #fff;
  padding: .38rem 1.1rem;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.13;
  margin-bottom: 1.25rem;
  text-shadow: none;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-content > p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .88);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .28);
}
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .72);
  margin-top: .3rem;
  display: block;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════ */
section { padding-block: 5.5rem; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .8rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.section-header.light h2    { color: #fff; }
.section-header.light .section-sub { color: rgba(255, 255, 255, .7); }

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
#services { background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.service-card.featured:hover { border-color: var(--gold); }
.service-card.featured .service-icon { color: var(--gold-light); }
.service-card.featured h3 { color: #fff; }
.service-card.featured > p { color: rgba(255, 255, 255, .78); }
.service-card.featured ul li { color: rgba(255, 255, 255, .72); }
.service-card.featured ul li::before { color: var(--gold-light); }

.featured-label {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--primary);
  margin-bottom: 1.35rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: .8rem;
}
.service-card > p {
  color: var(--text-muted);
  font-size: .96rem;
  margin-bottom: 1.35rem;
  line-height: 1.72;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.service-card ul li {
  font-size: .9rem;
  color: var(--text-muted);
  padding-left: 1.35rem;
  position: relative;
}
.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
#about { background: var(--light); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* CSS paver texture pattern */
.paver-texture {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.08) 0px, rgba(0,0,0,.08) 1px,
      transparent 1px, transparent 42px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,.08) 0px, rgba(0,0,0,.08) 1px,
      transparent 1px, transparent 28px
    ),
    linear-gradient(145deg, #A0876A 0%, #8B7355 25%, #7A6545 50%, #9E8460 75%, #6B5535 100%);
}

.about-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.75rem;
  background: var(--gold);
  color: #fff;
  padding: 1.35rem 1.6rem;
  border-radius: var(--radius);
  max-width: 230px;
  box-shadow: var(--shadow-lg);
}
.about-accent-card strong { display: block; font-size: 1rem; margin-bottom: .4rem; }
.about-accent-card p { font-size: .85rem; opacity: .9; line-height: 1.5; }

.about-content .section-label { text-align: left; }
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.18;
}
.about-content > p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.78;
}

.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.35rem; }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 38px;
  height: 38px;
  background: rgba(196, 168, 124, .15);
  color: var(--gold);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.feature strong { display: block; margin-bottom: .2rem; font-size: .95rem; }
.feature p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
#testimonials { background: var(--light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.75;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.reviewer {
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .3px;
}

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

/* ══════════════════════════════════════
   GALLERY
   ══════════════════════════════════════ */
#gallery { background: #fff; }

.gallery-filter {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: .5rem 1.3rem;
  border: 2px solid var(--border);
  background: none;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: opacity .35s, transform .35s;
  background: #1A3640;
}
.gallery-item.large { grid-row: span 2; }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: .9rem; }


.gallery-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: .85rem;
  font-style: italic;
}

/* ══════════════════════════════════════
   REFERRALS
   ══════════════════════════════════════ */
#referrals {
  background: var(--primary);
  color: #fff;
}
#referrals .section-label { color: var(--gold-light); }

.referral-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 270px;
  text-align: center;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: rgba(196, 168, 124, .28);
  font-weight: 900;
  line-height: 1;
  margin-bottom: .8rem;
}
.step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--gold-light);
}
.step p { font-size: .9rem; opacity: .85; line-height: 1.65; }
.step-arrow {
  font-size: 2rem;
  color: var(--gold);
  opacity: .35;
  padding-top: 1.8rem;
  flex-shrink: 0;
}

.referral-form-wrapper {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 2.75rem;
  max-width: 720px;
  margin: 0 auto;
  backdrop-filter: blur(4px);
}
.referral-form-wrapper h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
  color: #fff;
}

/* ══════════════════════════════════════
   FORMS (shared)
   ══════════════════════════════════════ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: .83rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
  letter-spacing: .3px;
}

/* Referral form (dark) inputs */
.referral-form input,
.referral-form select,
.referral-form textarea {
  padding: .75rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s, background .2s;
  outline: none;
  width: 100%;
}
.referral-form input::placeholder,
.referral-form textarea::placeholder { color: rgba(255, 255, 255, .38); }
.referral-form input:focus,
.referral-form select:focus,
.referral-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .13);
}
.referral-form select option { background: #063A48; color: #fff; }
.referral-form textarea { resize: vertical; min-height: 100px; }

/* ── ESTIMATE FORM (light) ── */
.estimate-form .form-group label { color: var(--text); }

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--light);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.estimate-form input::placeholder,
.estimate-form textarea::placeholder { color: #aaa; }
.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 123, 140, .15);
}
.estimate-form select option { background: #fff; color: var(--text); }
.estimate-form textarea { resize: vertical; min-height: 110px; }

.checkbox-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: .25rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-muted);
  user-select: none;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

/* ── SUCCESS STATE ── */
.form-success {
  text-align: center;
  padding: 3.5rem 2rem;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
  font-weight: 700;
}
.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: .6rem;
  color: #fff;
}
.form-success p { opacity: .72; font-size: .95rem; }
.estimate-form + .form-success h4 { color: var(--dark); }
.estimate-form + .form-success p { color: var(--text-muted); opacity: 1; }

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
#contact { background: var(--light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-label { text-align: left; }
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.service-area-tagline {
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
  letter-spacing: .2px;
}

.contact-details { display: flex; flex-direction: column; gap: 1.35rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(10, 123, 140, .1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .2rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.contact-item a,
.contact-item span {
  font-size: .98rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-item a:hover { color: var(--primary); }

.contact-form-wrapper {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.75rem;
  box-shadow: var(--shadow);
}

/* ══════════════════════════════════════
   BILLING / PAY INVOICE
   ══════════════════════════════════════ */
#billing { background: #fff; }

.billing-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.billing-step {
  flex: 1;
  min-width: 200px;
  max-width: 270px;
  text-align: center;
}

.billing-step-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: .9rem;
  line-height: 1;
}

.billing-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .45rem;
}

.billing-step p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.billing-step-arrow {
  font-size: 2rem;
  color: var(--gold);
  opacity: .4;
  padding-top: 1.6rem;
  flex-shrink: 0;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.payment-card {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}

.payment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.payment-badge {
  display: inline-block;
  padding: .28rem 1rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.zelle-badge  { background: #6D1ED4; color: #fff; }
.venmo-badge  { background: #3D95CE; color: #fff; }

.payment-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: .4rem;
}

.payment-label {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .6rem;
}

.payment-handle {
  background: var(--dark);
  color: var(--gold-light);
  font-family: 'Courier New', monospace;
  font-size: .98rem;
  font-weight: 700;
  padding: .7rem 1.25rem;
  border-radius: 8px;
  margin-bottom: .85rem;
  letter-spacing: .3px;
  word-break: break-all;
}

.payment-note {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.billing-reminder {
  text-align: center;
  font-size: .95rem;
  color: var(--text-muted);
  background: rgba(196, 168, 124, .1);
  border: 1px solid rgba(196, 168, 124, .35);
  border-radius: 8px;
  padding: .9rem 1.75rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.billing-reminder strong { color: var(--dark); }

.billing-contact {
  text-align: center;
  font-size: .95rem;
  color: var(--text-muted);
}

.billing-contact a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.billing-contact a:hover { color: var(--dark); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
#footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .65);
  padding-block: 4.5rem 0;
}
#footer .logo { color: #fff; }

.footer-logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0 2.5rem;
}
.footer-tagline {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.72;
  text-align: center;
  max-width: 800px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  letter-spacing: .2px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.footer-links a,
.footer-contact a,
.footer-contact p {
  font-size: .9rem;
  transition: color .2s;
  line-height: 1.5;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-light); }

.footer-service-area {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.service-area-text {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}
.service-area-text strong { color: rgba(255,255,255,.6); font-weight: 500; }
.footer-bottom { padding-block: 1.35rem; }
.footer-bottom p {
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

/* ══════════════════════════════════════
   FLOATING ACTION BUTTON
   ══════════════════════════════════════ */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: #fff;
  padding: .85rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 22px rgba(196, 168, 124, .55);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .3s var(--ease), box-shadow .3s;
}
.fab.fab-visible {
  opacity: 1;
  pointer-events: auto;
}
.fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(196, 168, 124, .65);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-visual {
    max-width: 500px;
    margin-inline: auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  section { padding-block: 4rem; }

  /* Mobile nav */
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: rgba(5, 50, 65, .97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; }
  .hamburger { display: flex; }

  .hero-stats { gap: 1.75rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.large { grid-row: auto; }

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

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

  .referral-steps {
    flex-direction: column;
    align-items: center;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
    margin-block: -.25rem;
  }
  .step { max-width: 100%; }

  .contact-form-wrapper { padding: 1.75rem; }
  .referral-form-wrapper { padding: 1.75rem; }

  .payment-methods {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .billing-steps {
    flex-direction: column;
    align-items: center;
  }

  .billing-step-arrow {
    transform: rotate(90deg);
    padding: 0;
    margin-block: -.25rem;
  }

  .billing-step { max-width: 100%; }

  .about-accent-card {
    position: static;
    max-width: 100%;
    margin-top: 1rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.25rem; }
  .stat strong { font-size: 1.7rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .fab {
    bottom: 1rem;
    right: 1rem;
    font-size: .82rem;
    padding: .7rem 1.15rem;
  }
  .checkbox-group { flex-direction: column; gap: .75rem; }
}
