/* WC Property Services — site styles
   Brand: Navy #1B3A5F · Lime #A4C639 · Light Blue #5DADE2
   Build: 21 May 2026 · Clarigen
*/

:root {
  --navy: #1B3A5F;
  --navy-deep: #122842;
  --navy-soft: #234974;
  --lime: #A4C639;
  --lime-dark: #8FAE2E;
  --lime-light: #b8d34d;
  --blue: #5DADE2;
  --white: #FFFFFF;
  --offwhite: #F5F5F7;
  --grey-100: #F1F4F7;
  --grey-200: #E4E9EE;
  --grey-300: #C8D0D8;
  --grey-500: #6B7686;
  --grey-700: #3F4754;
  --text: #1B3A5F;
  --text-soft: #4A5666;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(27,58,95,0.06);
  --shadow: 0 4px 16px rgba(27,58,95,0.08);
  --shadow-lg: 0 20px 50px rgba(27,58,95,0.12);
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; }

/* === MOCKUP BANNER === */
.mockup-banner {
  background: #FFF6CC;
  color: var(--navy);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-bottom: 1px solid #F4E59A;
}

/* === TOP BAR === */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a { color: inherit; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; opacity: .92; }

/* === HEADER === */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container); margin: 0 auto; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; }
.brand-text small { display: block; font-size: 10px; letter-spacing: 0.14em; color: var(--grey-500); font-weight: 700; }
.brand-text strong { display: block; font-size: 19px; color: var(--navy); font-weight: 800; line-height: 1.1; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a { font-weight: 600; color: var(--navy); font-size: 15px; }
.nav a:hover { color: var(--lime-dark); }
.header-cta { display: flex; gap: 12px; align-items: center; }
.whatsapp-bubble {
  width: 40px; height: 40px;
  background: #25D366; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-weight: 700; font-size: 15px;
  border-radius: 10px;
  border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--lime); color: var(--navy); }
.btn-primary:hover { background: var(--lime-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 10px 20px; }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid var(--white); padding: 10px 20px; }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.mobile-toggle { display: none; background: transparent; border: none; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

/* === HERO === */
.hero {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(93, 173, 226, 0.08);
  z-index: 0;
}
.hero::before { width: 600px; height: 600px; right: -150px; top: -200px; }
.hero::after { width: 400px; height: 400px; right: 200px; bottom: -200px; background: rgba(164, 198, 57, 0.05); }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero h1 { color: white; margin-bottom: 24px; }
.hero h1 .accent { color: var(--lime); }
.hero-sub {
  font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 520px; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .check { color: var(--lime); font-weight: 700; }

/* Before/After slider */
.ba-wrapper {
  position: relative;
  width: 100%; max-width: 480px; aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,255,255,0.1);
  user-select: none;
  max-height: 640px;
  margin: 0 auto;
}
.ba-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ba-before {
  background-image: url('hero-before.jpg');
}
.ba-after {
  background-image: url('hero-after.jpg');
  clip-path: inset(0 0 0 50%);
}
.ba-label {
  position: absolute;
  top: 18px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.ba-label-before { left: 18px; background: var(--navy-deep); color: white; }
.ba-label-after { right: 18px; background: var(--lime); color: var(--navy); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: white;
  cursor: ew-resize;
  transform: translateX(-1.5px);
}
.ba-handle-knob {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* === TRUST STRIP === */
.trust-strip {
  background: var(--offwhite);
  padding: 28px 0;
  border-bottom: 1px solid var(--grey-200);
}
.trust-strip-inner {
  display: flex; justify-content: space-around; gap: 16px;
  flex-wrap: wrap;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 15px;
  color: var(--navy);
}
.trust-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--lime);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--lime-dark);
  font-weight: 800;
}

/* === SECTION === */
.section { padding: 80px 0; }
.section-tight { padding: 64px 0; }
.section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: #ECF6D1;
  color: var(--lime-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-head p { color: var(--text-soft); font-size: 17px; margin-top: 12px; }

/* === SERVICES === */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.service-card {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--lime); }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin-bottom: 28px;
}
.service-icon-blue { background: #E3F1FB; }
.service-icon-green { background: #ECF6D1; }
.service-card h3 { margin-bottom: 14px; }
.service-card .lead { color: var(--text-soft); margin-bottom: 24px; }
.service-list { list-style: none; margin: 0 0 28px; padding: 0; }
.service-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; padding: 6px 0;
  color: var(--text);
}
.service-list li::before {
  content: "✓"; color: var(--lime-dark); font-weight: 800;
  flex-shrink: 0;
}
.service-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 2px;
}
.service-link:hover { color: var(--lime-dark); }

/* === REASONS (Navy bg) === */
.reasons {
  background: var(--navy);
  color: white;
  padding: 96px 0;
}
.reasons h2 { color: white; }
.reasons-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.reasons-head .section-eyebrow { background: rgba(164,198,57,0.15); color: var(--lime); }
.reasons-head p { color: rgba(255,255,255,0.75); margin-top: 12px; }
.reasons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.reason-card {
  background: var(--navy-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.reason-icon {
  width: 56px; height: 56px;
  background: var(--lime);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
}
.reason-card h4 { color: white; font-size: 19px; margin-bottom: 10px; }
.reason-card p { color: rgba(255,255,255,0.75); font-size: 14.5px; }

/* === GALLERY === */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.gallery-tile {
  aspect-ratio: 1.1/1;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-tile:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--navy);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gallery-tile-1 { background: linear-gradient(135deg, #847050 0%, #6b5840 100%); }
.gallery-tile-2 { background: linear-gradient(135deg, #d4b48a 0%, #b89870 100%); }
.gallery-tile-3 { background: linear-gradient(135deg, #4a6638 0%, #324626 100%); }
.gallery-tile-4 { background: linear-gradient(135deg, #5dadeb 0%, #3a8fce 100%); }
.gallery-tile-5 { background: linear-gradient(135deg, #b09576 0%, #91795a 100%); }
.gallery-tile-6 { background: linear-gradient(135deg, #98a695 0%, #76876f 100%); }
.gallery-tile-7 { background: linear-gradient(135deg, #3d5a2a 0%, #2a401d 100%); }
.gallery-tile-8 { background: linear-gradient(135deg, #b09576 0%, #97805e 100%); }

.gallery-cta { text-align: center; margin-top: 36px; }

/* === REVIEWS === */
.reviews {
  background: var(--offwhite);
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border-top: 4px solid var(--lime);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: #FFB400; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { color: var(--text); font-size: 15.5px; line-height: 1.6; margin-bottom: 24px; }
.review-name { font-weight: 700; color: var(--navy); }
.review-meta { font-size: 13px; color: var(--text-soft); margin-top: 2px; }

/* === QR === */
.contact-options {
  padding: 96px 0;
}
.contact-options-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.qr-card {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.qr-img {
  width: 200px; height: 200px;
  margin: 0 auto 24px;
  background: white;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  padding: 12px;
}
.qr-img svg { width: 100%; height: 100%; }
.qr-card h4 { color: var(--navy); font-size: 19px; margin-bottom: 8px; }
.qr-card p { font-size: 14px; color: var(--text-soft); }

/* === FINAL CTA === */
.final-cta {
  background: var(--lime);
  padding: 80px 0;
}
.final-cta-inner { text-align: center; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.final-cta h2 { color: var(--navy); margin-bottom: 18px; }
.final-cta p { color: var(--navy); opacity: 0.85; margin-bottom: 32px; font-size: 18px; }
.final-cta .btn-primary { background: var(--navy); color: white; }
.final-cta .btn-primary:hover { background: var(--navy-deep); }
.final-cta .btn-outline { color: var(--navy); border-color: var(--navy); }
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  margin-bottom: 48px;
}
.footer h5 {
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer a { color: rgba(255,255,255,0.75); display: block; padding: 5px 0; }
.footer a:hover { color: var(--lime); }
.footer-brand p { margin-top: 18px; max-width: 320px; line-height: 1.55; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
  font-weight: 700;
  font-size: 13px;
}
.footer-social a:hover { background: var(--lime); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow);
  }
  .nav.open a { padding: 12px 0; border-bottom: 1px solid var(--grey-100); }
  .mobile-toggle { display: inline-flex; flex-direction: column; }
  .header-cta .btn { display: none; }
  .topbar { font-size: 12px; }
  .section { padding: 56px 0; }
  .reasons { padding: 64px 0; }
  .reasons-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* === UTILITY === */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* === INNER PAGES === */
.page-hero {
  background: var(--navy);
  color: white;
  padding: 80px 0 64px;
}
.page-hero-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; text-align: center; }
.page-hero .section-eyebrow { background: rgba(164,198,57,0.15); color: var(--lime); }
.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,0.85); margin-top: 16px; font-size: 18px; max-width: 700px; margin-left: auto; margin-right: auto; }

.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  margin: 40px 0;
}
.process-step {
  background: white; border: 1px solid var(--grey-200);
  border-radius: var(--radius); padding: 24px;
  text-align: center;
}
.process-num {
  width: 36px; height: 36px;
  background: var(--lime); color: var(--navy);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 14px;
}
.process-step h4 { font-size: 15px; margin-bottom: 6px; }
.process-step p { font-size: 13.5px; color: var(--text-soft); }

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

.detail-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  list-style: none; margin: 0 0 32px;
}
.detail-list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 14px;
  background: var(--offwhite);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}
.detail-list li::before {
  content: "✓"; color: var(--lime-dark); font-weight: 800; flex-shrink: 0;
}
@media (max-width: 720px) { .detail-list { grid-template-columns: 1fr; } }

/* contact form */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: flex-start;
}
.form-card {
  background: white; border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: block; margin-bottom: 14px; }
.form-field label, .form-row label {
  display: block; font-weight: 600; font-size: 13px; color: var(--navy);
  margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea,
.form-row input, .form-row select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  font-size: 15px; font-family: inherit;
  background: white;
  color: var(--text);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus,
.form-row input:focus, .form-row select:focus {
  outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(164,198,57,0.15);
}
.contact-side h3 { margin-bottom: 18px; }
.contact-side-item { padding: 16px 0; border-bottom: 1px solid var(--grey-200); }
.contact-side-item:last-child { border-bottom: none; }
.contact-side-item strong { display: block; color: var(--navy); font-size: 13px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-side-item a, .contact-side-item span { font-size: 17px; color: var(--text); }

@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* gallery page filters */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 36px;
}
.filter-bar button {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--grey-300);
  background: white;
  font-weight: 600; font-size: 14px;
  color: var(--navy);
}
.filter-bar button:hover, .filter-bar button.active {
  border-color: var(--navy); background: var(--navy); color: white;
}
