/* ============ Base ============ */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #e5e7eb;
  color: #0b1120;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color 160ms ease, opacity 160ms ease, transform 160ms ease; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header container width – keeps logo/nav aligned with main content */
.site-header .container {
  max-width: 1000px;
}

section { scroll-margin-top: 120px; }

/* Accessibility: skip link (visible only when tabbed to) */
.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 14px;
  background: #ffffff;
  color: #0b1120;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,0.18);
  box-shadow: 0 8px 18px rgba(15,23,42,0.10);
  z-index: 1000;
}
.skip-link:focus{
  left: 12px;
}

img { max-width: 100%; display: block; }


/* ============ Header ============ */

.site-header {
  background: #d9d6d1;              /* main colour */
  padding: 1.1rem 0;
  border-bottom: 1px solid #d0ccc6;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.2s ease;    /* only height changes */
}

.site-header.header-shrink {
  padding: 0.55rem 0;               /* gets thinner, same colour */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 42px;
}

.logo-main {
  font-size: 1.05rem;
  font-weight: 600;
  color: #06223d;
}

.nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  flex: 1 1 auto;
  min-width: 0; /* allows horizontal scroll without pushing the whole header */
}

.nav a { color: #06223d; padding: 0.35rem 0; transition: color 160ms ease, opacity 160ms ease, transform 160ms ease; }
.nav a:hover { color: #04182c; transform: translateY(-1px); }
.nav a:focus-visible { outline: 2px solid rgba(6,34,61,0.45); outline-offset: 3px; border-radius: 6px; }

/* header right badges */
.header-badges {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

/* LinkedIn icon in header */

.linkedin-icon img {
  height: 26px;
  width: 26px;
  border-radius: 4px;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.linkedin-icon img:hover {
  opacity: 1;
}

/* RICS badge in header */

.rics-header-badge {
  height: 26px;
  width: auto;
  display: block;
  opacity: 0.95;
}


/* ============ Hero (ROW.jpg background) ============ */

.hero {
  position: relative;
  padding: 4rem 0 3.2rem;
  border-bottom: 1px solid #e5e7eb;
  background-image:
    linear-gradient(to bottom, rgba(25, 22, 20, 0.55), rgba(25, 22, 20, 0.75)),
    url("ROW.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.95) sepia(0.0) saturate(1.0);
}


.hero-inner {
  text-align: center;
  max-width: 1120px;   /* wide so desktop sentences don’t wrap */
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.3rem;
  margin: 0 0 0.6rem;
  color: #f9fafb;
}

.hero-tagline {
  margin: 0 0 1.2rem;
  color: #e5e7eb;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.hero-btn {
  max-width: 260px;
}

.hero-subnote {
  margin: 0;
  font-size: 0.95rem;
  color: #cbd5f5;
}


/* ============ Sections ============ */

.section { padding: 3rem 0; }
.section-alt { background: #fff; }

.section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 0.03em;
}

.section-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0.6rem auto 0;
  color: #4b5563;
}

/* extra spacing beneath Services intro line */
.services-intro {
  margin-bottom: 1.3rem;
}


/* ============ Services ============ */

.services-centre {
  display: flex;
  justify-content: center;
  margin-bottom: 0; /* keeps spacing controlled under the cards */
}


/* Space between the Services cards and the process heading */
#services .services-process-heading {
  margin-top: clamp(36px, 4vw, 52px);
}
.services-grid {
  max-width: 900px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 850px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

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

.card {
  background: #fff;
  padding: 1.35rem;
  border-radius: 0.8rem;
  box-shadow: 0 8px 20px rgba(15,23,42,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* Services cards: keep icon + heading on one row */
.services-grid .card{
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
}
.services-grid .card .service-icon{
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
  line-height: 1;
}
.services-grid .card h3{
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
}
.services-grid .card p{
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0.65rem;
}

/* Level 1 note under services */
.level1-note {
  max-width: 650px;
  margin: 1.3rem auto 0;
  font-size: 0.92rem;
  color: #4b5563;
  text-align: center;
}


/* ============ Comparison table ============ */

.comparison-wrapper {
  margin-top: 1.5rem;
}

.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15,23,42,0.06);
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead {
  background: #0f172a;
  color: #f9fafb;
}

.comparison-table tbody tr:nth-child(odd) {
  background: #f9fafb;
}

.comparison-table tbody tr:nth-child(even) {
  background: #eef2ff;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 26%;
  font-weight: 600;
}

.comparison-note {
  margin-top: 1.3rem;
  font-size: 0.95rem;
}


/* ============ Pricing ============ */

.pricing-grid {
  margin-top: 1.5rem;
}

.pricing-card {
  text-align: left;
}

.pricing-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.price-range {
  font-weight: 600;
  margin: 0.2rem 0 0.4rem;
}

.price-note {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}


/* ============ How the process works ============ */

.steps {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.2rem;
  margin-top: 1.6rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  position: relative;
  flex: 1 1 0;
  background: #fff;
  padding: 1.1rem 1.2rem;
  border-radius: 0.8rem;
  box-shadow: 0 8px 20px rgba(15,23,42,0.05);
  border: 1px solid rgba(209, 213, 219, 0.8);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* arrow between cards */
.step::after {
  content: "➝";
  position: absolute;
  top: 50%;
  right: -0.6rem;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #9ca3af;
}

.step:last-child::after {
  display: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #1d4ed8;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.step h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Process steps: keep number + heading on one row */
.step{
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
}
.step-number{
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}
.step h3{
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
}
.step p{
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0.65rem;
}


/* ============ About ============ */

.about-main {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
  max-width: 900px;      /* narrower section */
  margin-left: auto;
  margin-right: auto;
}

.about-photo {
  flex: 0 0 260px;
  max-width: 260px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 22px rgba(15,23,42,0.18);
}

.about-text {
  flex: 1;
  max-width: 580px;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
}

/* Action / tools strip */

.about-action {
  margin-top: 2.4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-action-inner {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  background: #0b1120;
  color: #e5e7eb;
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 10px 24px rgba(15,23,42,0.4);
}

.about-action-inner img {
  flex: 0 0 210px;
  max-width: 210px;
  border-radius: 0.9rem;
  object-fit: cover;
}

.about-action-text h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.about-action-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #d1d5db;
}


/* Qualifications block */

.about-qualifications h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

/* shared list styling so bullets and ticks line up */

.qual-list,
.tick-list {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0.8rem;
}

.qual-list li,
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.qual-list li::before,
.tick-list li::before {
  flex: 0 0 auto;
  font-size: 1.05rem;
  line-height: 1;
  margin-top: 0.15rem;
  content: "";
}

/* bullet for qualifications */
.qual-list li::before {
  content: "•";
  color: #111827;
}

/* tick for Why choose list */
.tick-list li::before {
  content: "✓";
  color: #16a34a;
}

/* RICS bullet – logo inline with text */
.qual-rics {
  display: flex;
  align-items: center;
}

.qual-rics-logo {
  display: inline-block;
  height: 18px;
  width: auto;
  margin-right: 0.2rem;
}

/* Why choose – centred and narrow */
.why-choose {
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose h3 {
  text-align: left;
  margin-bottom: 0.6rem;
}




/* ============ Reviews section spacing tweak ============ */
#reviews .about-reviews {
  margin-top: 1.2rem; /* tighter gap between heading and logo */
}
#reviews .google-reviews-logo {
  margin-bottom: 0.6rem;
}

/* ============ Why choose layout (logo left, content right) ============ */
.why-choose-inner {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
}

.why-choose-logo img {
  width: clamp(180px, 30vw, 240px);
  height: auto;
}

.why-choose-logo{ align-self: center; }

.why-choose-content {
  flex: 1;
  min-width: 0;
}

@media (max-width: 800px) {
  .why-choose-inner {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .why-choose-content h3 {
    text-align: center;
  }
}
/* Google reviews */

.about-reviews {
  margin-top: 2.6rem;
  text-align: center;
}

.google-reviews-logo {
  height: 42px;
  width: auto;
  display: block;
  margin: 0 auto 0.8rem;
}


/* ============ Reviews text ============ */

.quote {
  font-style: italic;
  color: #374151;
  margin-bottom: 0.35rem;
}

.quote-name {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.reviews-link-note {
  font-size: 0.86rem;
  color: #6b7280;
  margin-top: 0.4rem;
}


/* ============ Recent findings ============ */

/* Drone background on the whole section */
#findings {
  position: relative;
  background-image:
    linear-gradient(to bottom, rgba(30, 26, 24, 0.6), rgba(30, 26, 24, 0.85)),
    url("cr=w_600,h_300.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 
}

/* Light text for heading + intro over the dark image */
#findings h2,
#findings .section-intro {
  color: #e5e7eb;
}

.findings-grid {
  margin-top: 1.5rem;
}

/* Override default card style so they sit nicely on dark background */
.finding-card {
  background: rgba(15,23,42,0.88);
  color: #e5e7eb;
}

.finding-card h3 {
  font-size: 1rem;
  color: #e5e7eb;
}


/* ============ FAQ ============ */

/* FAQ background image (subtle overlay so it blends in) */
#faq{
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,0.45), rgba(255,255,255,0.60)),
    url("FAQ.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.faq-grid {
  max-width: 900px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.faq-item {
  background: rgba(249, 250, 251, 0.92);
  border-radius: 0.8rem;
  box-shadow: 0 8px 20px rgba(15,23,42,0.05);
  border: 1px solid rgba(209, 213, 219, 0.85);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.98rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.8;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq-item[open] summary::after {
  content: "–";
  opacity: 1;
}

.faq-item[open] summary {
  background: rgba(255, 255, 255, 0.55);
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.65);
  outline-offset: 4px;
  border-radius: 10px;
}

.faq-answer {
  padding: 0 1.2rem 1.1rem;
  color: #374151;
}

.faq-answer p {
  margin: 0.65rem 0 0;
}



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


/* ============ Contact ============ */

.contact-block {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
}


.contact-block p {
  margin: 0.35rem 0;
}

.contact-block .contact-linkedin {
  margin-bottom: 1.6rem;
}

.contact-block .contact-response-note {
  margin-top: 0;
}
.contact-panel-full {
  max-width: 640px;
  margin: 2rem auto 0;
}

label {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

input,
textarea {
  padding: 0.55rem;
  border: 1px solid #d1d5db;
  border-radius: 0.4rem;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
}

.btn.primary {
  background: #1d4ed8;
  color: white;
  border: none;
  padding: 0.7rem;
  width: 100%;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}


.btn.primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(2,6,23,0.18);
}

.btn.primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(2,6,23,0.14);
}

.full-width {
  width: 100%;
}

.privacy-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #6b7280;
}




/* Contact form status message */
.form-status{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.35;
  display: none;
}

.form-status.is-success{
  display: block;
  border: 1px solid rgba(16, 122, 68, 0.35);
  background: rgba(16, 122, 68, 0.10);
}

.form-status.is-error{
  display: block;
  border: 1px solid rgba(180, 35, 35, 0.35);
  background: rgba(180, 35, 35, 0.10);
}
/* ============ Footer ============ */

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
  font-size: 0.85rem;
}

.footer-text {
  margin: 0;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* LinkedIn icon in footer */

.linkedin-footer img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  opacity: 0.9;
}

.linkedin-footer img:hover {
  opacity: 1;
}

.footer-rics-badge {
  height: 22px;
  width: auto;
  vertical-align: middle;
  opacity: 0.95;
}


/* ============ Hover micro-interactions ============ */

.card:hover,
.step:hover,
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15,23,42,0.12);
}


/* ============ Responsive tweaks ============ */

@media (max-width: 900px) {
  .about-main {
    flex-direction: column;
  }

  .about-photo {
    max-width: 260px;
    flex: 0 0 auto;
    margin: 0 auto;
  }

  .about-photo img {
    height: auto;
  }

  .about-text {
    margin-top: 1rem;
  }

  .about-action-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-action-inner img {
    max-width: 100%;
  }

  .steps {
    flex-direction: column;
  }

  .step::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-inner {
    justify-content: space-between;
  }

  .nav {
    gap: 0.9rem;
    font-size: 0.72rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav a { white-space: nowrap; }
  .nav::-webkit-scrollbar { display: none; }
  .nav { scrollbar-width: none; }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 0 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* Reviews background image (subtle overlay so it blends in) */
#reviews.section-alt{
  /* Override .section-alt white so the image can show through */
  background-color: transparent;
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,0.45), rgba(255,255,255,0.60)),
    url("Reviews.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Keep review content readable on top of the image */
#reviews .about-reviews{
  width: min(820px, 92%);
  margin: 1.2rem auto 0;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(209, 213, 219, 0.75);
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
  text-align: center;
}

#reviews .google-reviews-logo{
  margin: 0 auto 0.55rem;
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ Clickable hero RICS badge ============ */
.rics-badge-link { display: inline-block; line-height: 0; }
.rics-badge-link img { display: block; }
.rics-badge-link:focus-visible {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 4px;
  border-radius: 10px;
}

/* ============ Reviews section: link/button under quotes ============ */
#reviews .reviews-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
#reviews .reviews-actions .btn { text-align: center; }
