/* ============================================================
   YES PRESSURE — style.css
   Brand colour: Teal #2BBFBF
   To change any colour site-wide, edit the variables below.
   ============================================================ */

:root {
  --teal:    #2BBFBF;   /* Main brand colour — buttons, accents, highlights */
  --teal-dk: #1a9090;   /* Darker teal — hover states */
  --teal-lt: #d4f4f4;   /* Light teal — subtle backgrounds */
  --navy:    #0f1f2e;   /* Dark background — hero, footer, quote section */
  --ink:     #1C2B3A;   /* Body text */
  --muted:   #5e7282;   /* Secondary / grey text */
  --border:  #dde8ee;   /* Dividers and card borders */
  --grey:    #f5f8fa;   /* Light section backgrounds */
  --white:   #ffffff;
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43, 191, 191, 0.35);
}
.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.btn-outline-w:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo img {
  height: 40px;   /* ← Change this number to resize your logo */
  display: block;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

/* Very subtle dark gradient — just enough for text legibility on the left */
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 31, 46, 0.88) 0%,
    rgba(15, 31, 46, 0.6) 45%,
    rgba(15, 31, 46, 0.0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── HERO SPLIT PHOTOS ── */
.hero-split {
  position: absolute;
  right: 0; top: 68px; bottom: 0;
  width: 50%;
  display: flex;
  z-index: 0;
}
.hero-split-side {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.hero-split-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* NO filter — photos look their natural best */
}

/* Tiny dark gradient at very bottom of each photo so BEFORE/AFTER labels are readable */
.hero-split-side::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  pointer-events: none;
}
.split-label {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  z-index: 2;
}
.split-bar {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), rgba(43, 191, 191, 0.4));
  box-shadow: 0 0 18px rgba(43, 191, 191, 0.7);
  z-index: 2;
}
.split-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--teal);
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  font-family: 'Barlow Condensed', sans-serif;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 4rem 4rem;
  max-width: 52%;
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(43, 191, 191, 0.12);
  border: 1px solid rgba(43, 191, 191, 0.4);
  border-radius: 2px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  width: fit-content;
  animation: fadeUp 0.6s ease forwards;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }

.hero-title {
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .hl   { color: var(--teal); }
.hero-title .dirty { color: rgba(200, 180, 130, 0.95); font-style: italic; }

.hero-guilt {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 0.75rem;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-guilt strong { color: var(--teal); font-weight: 700; }

.hero-question {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-ctas .btn { font-size: 1.1rem; padding: 0.9rem 2rem; }

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  animation: fadeUp 0.7s 0.5s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.trust-icon { color: var(--teal); }

.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
}

/* ── GUILT STRIP ── */
.guilt-strip {
  background: var(--teal);
  padding: 1.1rem 2rem;
  text-align: center;
}
.guilt-strip p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.guilt-strip span { color: var(--navy); }

/* ── SECTION COMMONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
#services { background: var(--grey); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2rem 1.75rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(43, 191, 191, 0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(43, 191, 191, 0.15);
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.service-name {
  font-size: 1.25rem; font-weight: 800;
  text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem;
}
.service-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── WHY / WAKE-UP CALL ── */
#why { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.dirty-checklist {
  list-style: none;
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2rem;
}
.dirty-checklist li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 4px;
  background: var(--grey);
  border-left: 3px solid var(--border);
  transition: border-color 0.2s;
}
.dirty-checklist li:hover { border-left-color: var(--teal); }
.check-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.check-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.15rem; }
.check-text span { font-size: 0.85rem; color: var(--muted); }

.dirty-home-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.dirty-home-card::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-conic-gradient(rgba(43,191,191,0.04) 0% 25%, transparent 0% 50%) 0 0 / 40px 40px;
}
.dirty-meter { position: relative; z-index: 1; margin-bottom: 1.5rem; }
.dm-label {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 0.45rem;
}
.dm-track { height: 10px; background: rgba(255,255,255,0.08); border-radius: 5px; overflow: hidden; margin-bottom: 1rem; }
.dm-fill { height: 100%; border-radius: 5px; animation: fillBar 2s ease-out forwards; }
.bar-hi { background: linear-gradient(90deg, #e74c3c, #c0392b); width: 88%; }
.bar-md { background: linear-gradient(90deg, var(--teal), var(--teal-dk)); width: 70%; }
.bar-lo { background: linear-gradient(90deg, #27ae60, #1e8449); width: 28%; }
.dirty-home-card h3 { position: relative; z-index: 1; font-size: 1.6rem; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 0.5rem; }
.dirty-home-card p { position: relative; z-index: 1; font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.55; margin-bottom: 1.5rem; }

/* ── BEFORE & AFTER ── */
#before-after { background: var(--grey); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.ba-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.ba-visual { display: flex; height: 260px; position: relative; }
.ba-photo { flex: 1; overflow: hidden; position: relative; }
.ba-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  /* No filter — let the real photos speak */
}
.ba-tag {
  position: absolute; top: 0.6rem; left: 50%; transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.18em;
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.9);
  padding: 0.2rem 0.6rem; border-radius: 2px; white-space: nowrap;
}
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), rgba(43,191,191,0.3));
  box-shadow: 0 0 10px rgba(43,191,191,0.5);
  z-index: 10;
}
.ba-divider-dot {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff; border: 2px solid var(--teal);
  border-radius: 50%; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; color: var(--teal); z-index: 11;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-family: 'Barlow Condensed', sans-serif;
}
.ba-info { padding: 1.2rem 1.5rem; border-top: 1px solid var(--border); }
.ba-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 0.2rem; }
.ba-desc { font-size: 0.85rem; color: var(--muted); }

/* ── FAQ ── */
#faq { background: #fff; }
.faq-list { max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.35rem 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700; text-transform: uppercase;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover, .faq-q.open { color: var(--teal); }
.faq-icon { font-size: 1.4rem; font-weight: 300; transition: transform 0.3s; flex-shrink: 0; color: var(--teal); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease, padding 0.3s; }
.faq-a.open { max-height: 300px; padding-bottom: 1.2rem; }
.faq-a p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ── QUOTE / CTA ── */
#quote {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1e2e 100%);
  position: relative; overflow: hidden; padding: 6rem 2rem;
}
#quote::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-conic-gradient(rgba(43,191,191,0.04) 0% 25%, transparent 0% 50%) 0 0 / 40px 40px;
}
.quote-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; }
.quote-inner .section-label { color: var(--teal); }
.quote-title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; text-transform: uppercase; color: #fff; line-height: 1; margin-bottom: 1rem; }
.quote-title span { color: var(--teal); }
.quote-sub { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.6; }

.quote-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; text-align: left;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px; padding: 0.75rem 1rem;
  color: #fff; font-family: 'Lato', sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group select option { background: var(--navy); }
.form-group textarea { resize: none; height: 90px; }
.form-submit { grid-column: 1 / -1; }
.form-submit .btn { width: 100%; font-size: 1.2rem; padding: 1rem; text-align: center; }
.form-note { grid-column: 1 / -1; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

.thank-you { display: none; text-align: center; padding: 2rem; }
.thank-you .ty-icon { font-size: 3rem; margin-bottom: 1rem; }
.thank-you h3 { font-size: 2rem; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 0.5rem; }
.thank-you p { color: rgba(255,255,255,0.6); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo img {
  height: 30px;   /* ← Resize footer logo here */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
  text-decoration: none; font-size: 0.82rem; color: rgba(255,255,255,0.45);
  transition: color 0.2s; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.footer-links a:hover { color: var(--teal); }
.footer-contact { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-contact a { color: var(--teal); text-decoration: none; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes fillBar { from { width: 0; } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-split { display: none; }
  .hero-content { max-width: 100%; padding: 4rem 1.5rem; min-height: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--border);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 999;
  }
}
@media (max-width: 600px) {
  .quote-form { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
