/* ==========================================================
   WALKER'S BUILDING SERVICES — MAIN STYLESHEET
   ========================================================== */

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

/* ----------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #0F4A7D;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* ----------------------------------------------------------
   VARIABLES
   ---------------------------------------------------------- */
:root {
  --blue-brand:   #1E73BE;
  --blue-dark:    #0F4A7D;
  --blue-deep:    #0a1e3c;
  --grey-header:  #E6E6E6;
  --off-white:    #F7F8FA;
  --white:        #ffffff;
  --text-body:    #3a3a3a;
  --text-light:   #666666;
  --transition:   0.3s ease;
}

/* ----------------------------------------------------------
   CONTAINER
   ---------------------------------------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
}

.btn-primary {
  background: var(--blue-brand);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn-hero {
  background: var(--white);
  color: var(--blue-dark);
  margin-top: 12px;
}
.btn-hero:hover {
  background: var(--blue-brand);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}
.btn-outline-blue:hover {
  background: var(--blue-dark);
  color: var(--white);
}

/* ----------------------------------------------------------
   HEADER
   ---------------------------------------------------------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--grey-header);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: box-shadow var(--transition), transform 0.35s ease;
}

#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  #site-header.header-hidden {
    transform: translateY(-100%);
  }
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

/* Logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-walkers {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #1E73BE;
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0F4A7D;
  margin-top: 1px;
}

/* Navigation */
#main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

#main-nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0F4A7D;
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

#main-nav ul li a:hover,
#main-nav ul li a.active {
  color: var(--blue-brand);
  border-bottom-color: var(--blue-brand);
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.nav-toggle-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-dark);
  transition: letter-spacing 0.3s ease;
  line-height: 1;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--blue-dark);
  border-radius: 1px;
  transition: width 0.35s ease;
}

.nav-toggle.open .nav-toggle-label {
  letter-spacing: 0.14em;
}

.nav-toggle.open .nav-toggle-bar {
  width: 16px;
}

/* ----------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background-image: url('../frontpageback.avif');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 30, 60, 0.45) 0%,
    rgba(10, 30, 60, 0.60) 60%,
    rgba(10, 30, 60, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 28px;
  max-width: 820px;
}

.hero-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-content h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.88);
}

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

/* ----------------------------------------------------------
   INTRO SECTION
   ---------------------------------------------------------- */
.intro {
  padding: 100px 28px;
  text-align: center;
  background: var(--white);
}

.intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 22px;
  line-height: 1.3;
}

.intro p {
  font-size: 0.97rem;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.section-rule {
  width: 56px;
  height: 3px;
  background: var(--blue-brand);
  margin: 0 auto 32px;
  border: none;
}

/* ----------------------------------------------------------
   SERVICE BLOCKS (4-grid)
   ---------------------------------------------------------- */
.service-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-block {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: default;
}

.block-new-builds {
  background-color: #1a3a5c;
  background-image: url('../New Builds.avif');
}
.block-commercial {
  background-color: #102a52;
  background-image: url('../Commercial Projects.avif');
}
.block-extensions {
  background-color: #12304a;
  background-image: url('../Extensions & Conversions.avif');
}
.block-renovations {
  background-color: #0e2840;
  background-image: url('../Renovations.avif');
}

.block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 20, 45, 0.94) 0%,
    rgba(8, 20, 45, 0.45) 55%,
    rgba(8, 20, 45, 0.12) 100%
  );
  transition: background 0.4s ease;
}

.service-block:hover .block-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 20, 45, 0.97) 0%,
    rgba(8, 20, 45, 0.72) 65%,
    rgba(8, 20, 45, 0.3) 100%
  );
}

.service-block {
  align-items: stretch;
}

.block-content {
  position: relative;
  z-index: 2;
  padding: 40px 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}

.block-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.25;
}

.block-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 30px;
  opacity: 0.88;
  max-width: 400px;
  flex-grow: 1;
}

/* ----------------------------------------------------------
   OUR SERVICES DETAIL
   ---------------------------------------------------------- */
.services-detail {
  background: var(--off-white);
  padding: 100px 28px;
  text-align: center;
}

.services-detail h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--blue-dark);
  margin-bottom: 18px;
}

.section-intro {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 64px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  text-align: left;
  border-top: 3px solid var(--blue-brand);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(15, 74, 125, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(30, 115, 190, 0.07);
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(30, 115, 190, 0.13);
  transform: scale(1.06);
}

.service-icon svg {
  flex-shrink: 0;
}

.service-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--blue-dark);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials {
  padding: 100px 28px;
  background: var(--white);
  text-align: center;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--blue-dark);
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  padding: 40px 36px 36px;
  background: var(--off-white);
  border-left: 3px solid var(--blue-brand);
  text-align: left;
  position: relative;
  opacity: 1;
  transition: box-shadow var(--transition);
}

.testimonial:hover {
  box-shadow: 0 8px 32px rgba(15, 74, 125, 0.09);
}

.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--blue-brand);
  opacity: 0.12;
  position: absolute;
  top: 4px;
  left: 18px;
  line-height: 1;
  pointer-events: none;
}

.testimonial p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------
   AVAILABILITY CTA BANNER
   ---------------------------------------------------------- */
.cta-banner {
  background: var(--blue-dark);
  color: var(--white);
  padding: 90px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,115,190,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 20px;
  position: relative;
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.88;
  font-size: 0.97rem;
  line-height: 1.8;
  position: relative;
}

/* ----------------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------------- */
.contact-section {
  padding: 100px 28px;
  background: var(--off-white);
  text-align: center;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--blue-dark);
  margin-bottom: 18px;
}

.contact-section p {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 0.97rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 28px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.footer-brand-col .footer-walkers {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.footer-brand-col .footer-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-top: 5px;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
}

.footer-links h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.footer-links ul li a:hover {
  color: var(--white);
}

.footer-contact-col p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

.footer-contact-col a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-col a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding: 20px 28px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-quillo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.footer-quillo:hover {
  opacity: 0.85;
}

.footer-quillo img {
  height: 28px;
  width: auto;
  display: block;
}

/* ----------------------------------------------------------
   INNER PAGE — PAGE HERO
   ---------------------------------------------------------- */
.page-hero {
  padding-top: 82px; /* header height */
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,115,190,0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Grain texture overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 28px 60px;
}

.page-hero-content .breadcrumb {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 16px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 0.97rem;
  opacity: 0.82;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Inner page content sections */
.page-section {
  padding: 90px 28px;
}

.page-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.page-section p {
  font-size: 0.95rem;
  color: var(--text-body);
  max-width: 760px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.page-section .page-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 74, 125, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-brand);
  flex-shrink: 0;
}

/* Privacy Policy */
.privacy-content {
  max-width: 800px;
}

.privacy-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin: 40px 0 12px;
}

.privacy-content p,
.privacy-content li {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.blog-card {
  background: var(--white);
  border-top: 3px solid var(--blue-brand);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 74, 125, 0.1);
}

.blog-card-body {
  padding: 32px;
}

.blog-card-date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-brand);
  margin-bottom: 10px;
}

.blog-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.blog-card a.read-more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-brand);
  transition: color var(--transition);
}

.blog-card a.read-more:hover {
  color: var(--blue-dark);
}

/* ----------------------------------------------------------
   RENOVATION & RESTORATION — PAGE STYLES
   ---------------------------------------------------------- */

.rr-hero {
  min-height: 0;
  background: #0c3361;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(30,115,190,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(10,30,60,0.5) 0%, transparent 55%);
}

/* Warm intro */
.rr-intro {
  background: #FAF8F5;
  padding: 90px 28px;
  display: flex;
  justify-content: center;
}

.rr-intro-inner {
  max-width: 720px;
  width: 100%;
}

.rr-intro-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #0F4A7D;
  margin-bottom: 22px;
  line-height: 1.25;
}

.rr-intro-inner p {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.95;
  margin-bottom: 28px;
}

.rr-text-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1E73BE;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(30,115,190,0.3);
  padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.rr-text-link:hover {
  color: #0F4A7D;
  border-color: #0F4A7D;
}

/* Panel sections */
.rr-panel {
  padding: 90px 28px;
}

.rr-panel-warm {
  background: #ffffff;
}

.rr-panel-stone {
  background: #F2EDE8;
}

/* Chapter heading — feels hand-set, not corporate */
.rr-chapter {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: #0F4A7D;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 18px;
}

.rr-chapter::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #1E73BE;
}

.rr-text p {
  font-size: 0.97rem;
  color: #3a3a3a;
  line-height: 1.92;
}

.rr-text-gap {
  margin-top: 18px;
}

/* Simple list — no bullets, just spaced lines */
.rr-simple-list {
  list-style: none;
  margin-top: 28px;
  padding: 0;
}

.rr-simple-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: #3a3a3a;
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative;
  line-height: 1.5;
}

.rr-simple-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1E73BE;
  opacity: 0.6;
}

/* Closing section */
.rr-closing {
  background: #FAF8F5;
  padding: 90px 28px;
  display: flex;
  justify-content: center;
}

.rr-closing-inner {
  max-width: 680px;
  width: 100%;
}

.rr-closing-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: #0F4A7D;
  margin-bottom: 20px;
  font-weight: 600;
}

.rr-closing-inner p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.92;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .rr-intro,
  .rr-closing {
    padding: 64px 28px;
  }
  .rr-panel {
    padding: 64px 28px;
  }
}

/* ----------------------------------------------------------
   RENOVATION & RESTORATION — SPLIT SECTIONS
   ---------------------------------------------------------- */
.rr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.rr-split-reverse {
  direction: rtl;
}

.rr-split-reverse > * {
  direction: ltr;
}

.rr-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--blue-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}

.rr-text p {
  font-size: 0.93rem;
  color: #3a3a3a;
  line-height: 1.85;
}

.rr-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grey-header);
  position: relative;
}

.rr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.rr-image:hover img {
  transform: scale(1.03);
}

/* Placeholder style when image is missing */
.rr-image-placeholder {
  background: linear-gradient(135deg, #dce6f0 0%, #c8d9ec 100%);
}

.rr-image-placeholder::after {
  content: 'Image coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 74, 125, 0.35);
}

@media (max-width: 768px) {
  .rr-split {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }

  .rr-split-reverse {
    direction: ltr;
  }

  .rr-image {
    aspect-ratio: 16 / 9;
  }
}

/* ----------------------------------------------------------
   WHATSAPP FLOATING BUTTON
   ---------------------------------------------------------- */
/* Floating action buttons */
.float-actions {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Toggle button — neutral, always visible */
.float-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, transform 0.35s ease;
}

.float-toggle:hover {
  background: rgba(15, 15, 15, 0.38);
}

.float-actions.open .float-toggle {
  transform: rotate(45deg);
  background: rgba(15, 15, 15, 0.48);
}

/* Contact buttons — hidden until opened */
.whatsapp-float,
.email-float {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.5) translateY(6px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.email-float { transition-delay: 0.05s; }

.float-actions.open .whatsapp-float,
.float-actions.open .email-float {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.whatsapp-float {
  background: #25D366;
  box-shadow: 0 3px 14px rgba(37, 211, 102, 0.45);
  color: #fff;
}
.whatsapp-float:hover {
  box-shadow: 0 5px 22px rgba(37, 211, 102, 0.6);
}

.email-float {
  background: #1E73BE;
  box-shadow: 0 3px 14px rgba(30, 115, 190, 0.4);
  color: #fff;
}
.email-float:hover {
  box-shadow: 0 5px 22px rgba(30, 115, 190, 0.55);
}

.whatsapp-float svg,
.email-float svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.whatsapp-float-label,
.email-float-label {
  display: none;
}

@media (max-width: 480px) {
  .float-actions {
    bottom: 18px;
    right: 16px;
  }
  .float-toggle {
    width: 44px;
    height: 44px;
  }
}

/* ----------------------------------------------------------
   SCROLL FADE-IN ANIMATION
   ---------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-cards {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-contact-col {
    grid-column: 1 / -1;
  }
  .page-section .page-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  #main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--grey-header);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, border-color 0.3s ease;
    border-top: 1px solid transparent;
  }

  #main-nav.open {
    max-height: 80vh;
    overflow-y: auto;
    border-top-color: rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  #main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 28px 24px;
    gap: 0;
  }

  #main-nav ul li {
    width: 100%;
  }

  #main-nav ul li a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 0.8rem;
  }

  /* Service blocks — 4 in a row on tablet, shorter */
  .service-blocks {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-block {
    min-height: 380px;
  }

  .block-content {
    padding: 28px 20px;
  }

  .block-content h3 {
    font-size: 1.1rem;
  }

  .block-content p {
    font-size: 0.78rem;
    margin-bottom: 18px;
  }

  /* Services & testimonials */
  .testimonials h2 {
    margin-bottom: 28px;
  }

  .services-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: none;
  }

  .service-card {
    padding: 18px 10px 16px;
    text-align: center;
    border-top-width: 2px;
  }

  .service-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-card h4 {
    font-size: 0.78rem;
    margin-bottom: 0;
    line-height: 1.3;
  }

  .service-card p {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro,
  .services-detail,
  .testimonials,
  .cta-banner,
  .contact-section,
  .page-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 18px;
    height: 72px;
  }

  #main-nav {
    top: 72px;
  }

  .logo-img {
    height: 46px;
  }

  .logo-walkers {
    font-size: 1.25rem;
  }

  /* Service blocks — 4 thin stacked on mobile */
  .service-blocks {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-block {
    min-height: 130px;
  }

  .block-content {
    padding: 16px 20px;
    justify-content: flex-end;
  }

  .block-content p {
    display: none;
  }

  .block-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .block-content .btn {
    padding: 9px 22px;
    font-size: 0.7rem;
  }

  /* Tighten up general content on mobile */
  .intro h2,
  .services-detail h2,
  .testimonials h2,
  .cta-banner h2 {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }

  .services-detail h2 {
    margin-bottom: 10px;
  }

  .section-intro {
    margin-bottom: 28px;
  }

  .intro p,
  .services-detail p,
  .section-intro {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .btn {
    padding: 11px 28px;
    font-size: 0.72rem;
  }

  .section-rule {
    margin-bottom: 24px;
  }

  /* Testimonials — auto-rotating fade on mobile */
  .testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonials h2 {
    font-size: 1.35rem;
    margin-bottom: 20px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .testimonial {
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    transition: opacity 1.4s ease;
    pointer-events: none;
    padding: 22px 20px 18px;
  }

  .testimonial.active {
    opacity: 1;
    pointer-events: auto;
  }

  .testimonial::before {
    font-size: 3.5rem;
  }

  .testimonial p {
    font-size: 0.83rem;
    line-height: 1.65;
  }

  /* rr-* panels — condense on mobile */
  .rr-intro,
  .rr-closing {
    padding: 44px 22px;
  }

  .rr-panel {
    padding: 44px 22px;
  }

  .rr-intro-inner h2 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  .rr-intro-inner p {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .rr-split {
    gap: 24px;
  }

  .rr-image {
    aspect-ratio: 16 / 9;
  }

  .rr-chapter {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .rr-text p {
    font-size: 0.86rem;
    line-height: 1.75;
  }

  .rr-simple-list li {
    font-size: 0.84rem;
    padding: 7px 0;
  }
}
