/* ============================================
   SIVAKO PROPERTY MANAGEMENT — STYLES
   Design cloned from Ambience framer template
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-size: 18px; line-height: 1.6; color: var(--color-text); background: var(--color-white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #6595a8;
  --color-primary-dark: #365a69;
  --color-white: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-text: #212121;
  --color-text-light: #b8b8b8;
  --color-black: #000000;

  --font-display: 'Italiana', serif;
  --font-body: 'Raleway', sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  --container-max: 1309px;
  --section-padding: 120px 0;
  --section-padding-sm: 60px 0;
  --transition: 0.3s ease;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; color: var(--color-black); }
h1 { font-size: clamp(56px, 10vw, 150px); }
h2 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 48px; }
h3 { font-size: clamp(24px, 3vw, 32px); }
h4 { font-size: 20px; }
p { margin-bottom: 1em; line-height: 1.7; font-size: 18px; }

.section-label,
.hero-label,
.cta-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 16px;
  display: block;
}
.section-label--white,
.section-label--light { color: rgba(255,255,255,0.7); }

/* --- Layout Utilities --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 48px; }
.section { padding: var(--section-padding); }
.section--gray { background: var(--color-bg-light); }
.section--dark { background: var(--color-primary-dark); color: var(--color-white); }
.text-center { text-align: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 44px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}
.btn-primary,
.btn-white {
  background: var(--color-white);
  color: var(--color-black);
}
.btn-primary:hover,
.btn-white:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-white);
  color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
}
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
}
.btn-outline-dark:hover {
  background: var(--color-text);
  color: var(--color-white);
}
.btn-full {
  display: block;
  width: 100%;
}

/* Hero-specific button overrides */
.hero__buttons .btn-primary,
.hero-buttons .btn-primary,
.cta-banner__buttons .btn:first-child,
.cta-buttons .btn:first-child {
  background: var(--color-white);
  color: var(--color-black);
}
.hero__buttons .btn-primary:hover,
.hero-buttons .btn-primary:hover,
.hero__buttons .btn-white:hover,
.hero-buttons .btn-white:hover,
.cta-banner__buttons .btn:first-child:hover,
.cta-buttons .btn:first-child:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ============================================
   NAVIGATION
   ============================================ */
/* index.html uses: site-header > nav.nav.container with nav__logo, nav__links (ul>li>a), nav__hamburger, mobile-menu */
/* other pages use: header.nav.nav-solid > .nav-inner with .nav-logo, .nav-links (nav>a), .nav-hamburger, .nav-mobile */
.site-header,
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.nav-scrolled,
header.nav.nav-scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.site-header > .nav,
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo, .nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  transition: color 0.3s ease;
  z-index: 101;
  margin-right: auto;
}
.nav-scrolled .nav-logo,
.nav-scrolled .nav__logo { color: var(--color-black); }
.nav-logo svg, .nav__logo svg { width: 28px; height: 28px; }
.nav-logo svg path, .nav__logo svg path { transition: fill 0.3s ease; }
.nav-scrolled .nav-logo svg path,
.nav-scrolled .nav__logo svg path { fill: var(--color-black); }
.nav__logo-text { font-family: var(--font-accent); font-weight: 700; }
/* Logo image */
.nav__logo-img, .nav-logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.nav-scrolled .nav__logo-img,
.nav-scrolled .nav-logo img,
.nav-solid .nav__logo-img,
.nav-solid .nav-logo img {
  filter: none;
}
/* Mobile menu logo — white */
.mobile-menu__logo-img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}
/* Footer logo */
.footer__logo-img, .footer-logo img {
  height: 72px;
  width: auto;
}
.nav-links, .nav__links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin-right: 32px;
}
.nav-links a, .nav__links a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  transition: color 0.3s ease;
  position: relative;
}
.nav-scrolled .nav-links a,
.nav-scrolled .nav__links a { color: var(--color-text); }
.nav-links a::after, .nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav__links a:hover::after,
.nav-links a.active::after, .nav__links a.active::after { transform: scaleX(1); }

/* Inner pages: nav starts with white bg */
.nav-solid {
  background: var(--color-white) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-solid .nav-logo, .nav-solid .nav__logo { color: var(--color-black); }
.nav-solid .nav-logo svg path, .nav-solid .nav__logo svg path { fill: var(--color-black); }
.nav-solid .nav-links a, .nav-solid .nav__links a { color: var(--color-text); }

/* Hamburger — always visible on homepage, mobile-only on inner pages */
.nav-hamburger, .nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  z-index: 101;
  padding: 4px;
  border: none;
  background: none;
}
.nav-hamburger span, .nav__hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--color-white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-scrolled .nav-hamburger span, .nav-scrolled .nav__hamburger span,
.nav-solid .nav-hamburger span, .nav-solid .nav__hamburger span { background: var(--color-black); }
.nav-hamburger.active span:nth-child(1), .nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-hamburger.active span:nth-child(2), .nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3), .nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
/* When menu is open, hamburger lines become white (X) on dark overlay */
.nav-hamburger.active span, .nav__hamburger.active span { background: var(--color-white); }

/* Inner pages: hide hamburger on desktop, show only on mobile */
.nav-solid .nav-hamburger,
.nav-solid .nav__hamburger {
  display: none;
}
@media (max-width: 810px) {
  .nav-solid .nav-hamburger,
  .nav-solid .nav__hamburger {
    display: flex;
  }
}

/* Full-screen dark overlay menu (Ambience style) */
.nav-mobile, .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: #1a1a1a;
  z-index: 200;
  overflow-y: auto;
}
.nav-mobile.active, .mobile-menu.active { display: block; }

/* Header inside menu */
.mobile-menu__header {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  z-index: 201;
}
.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
}
.mobile-menu__logo svg { width: 28px; height: 28px; }
.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Content area */
.mobile-menu__content {
  display: flex;
  gap: 48px;
  padding: 100px 48px 80px;
  min-height: calc(100vh - 80px);
  align-items: center;
}
.mobile-menu__content .mobile-menu__links {
  flex: 0 0 45%;
}

/* Left side — large menu links */
.mobile-menu__links {
  list-style: none;
}
.mobile-menu__links li {
  margin-bottom: 12px;
}
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--color-white);
  display: block;
  transition: opacity 0.3s ease;
  margin-bottom: 0;
}
.mobile-menu__links a:hover { opacity: 0.6; }

/* Image */
.mobile-menu__image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  max-height: 70vh;
}
.mobile-menu__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Social icons */
.mobile-menu__social {
  position: absolute;
  bottom: 48px;
  left: 48px;
  display: flex;
  gap: 16px;
}
.mobile-menu__social a {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 0;
}
.mobile-menu__social a:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

/* Simple nav-mobile for inner pages (white bg, not dark overlay) */
header.nav .nav-mobile {
  background: var(--color-white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 100px 24px 48px;
}
header.nav .nav-mobile.active { display: flex; }
header.nav .nav-mobile a {
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: 32px;
  display: block;
  margin-bottom: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
/* Background as child div (img tag approach) */
.hero-bg, .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after, .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
/* Background as inline style (background-image approach) */
.hero__bg {
  background-size: cover;
  background-position: center;
}
/* Overlay div */
.hero-overlay, .hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}
/* Content */
.hero-content, .hero__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding: 0 24px;
  max-width: 1000px;
}
.hero-content .section-label,
.hero__content .section-label,
.hero-label,
.section-label--light { color: rgba(255,255,255,0.7); }
.hero-content h1, .hero__content h1 { color: var(--color-white); margin-bottom: 16px; }
.hero-content p, .hero__content p { margin-bottom: 40px; opacity: 0.85; }
.hero__subtext {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  opacity: 0.85;
}
.hero-buttons, .hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator — double chevron, clickable */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  text-decoration: none;
}
.hero__scroll-indicator span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid rgba(255,255,255,0.6);
  border-right: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
.hero__scroll-indicator span:nth-child(2) {
  animation-delay: 0.15s;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* Page Hero (half-height for inner pages) */
.hero--half { height: 50vh; min-height: 400px; }

/* ============================================
   HOW CAN WE HELP — EXPLORE OUR SOLUTIONS CARDS
   Horizontal expansion on hover, tall portrait cards
   ============================================ */
.help-cards {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  margin-top: 48px;
  height: 600px;
}
.help-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1), grid-column 0.6s ease;
}
.help-card__img {
  position: absolute;
  inset: 0;
}
.help-card img, .help-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.help-card:hover img { transform: scale(1.08); }
.help-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
  pointer-events: none;
}
.help-card__title, .help-card-overlay span {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  color: var(--color-white);
  z-index: 1;
}
.help-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

/* Hover expansion effect via CSS grid — cards grow/shrink */
.help-cards:hover .help-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   TWO-COLUMN (About Preview, Services)
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 64px;
  align-items: start;
}
.two-col--reverse { grid-template-columns: 1fr 45%; }
.two-col-text, .two-col__text, .two-col__left, .two-col__right { padding-top: 20px; }
.two-col-text h2, .two-col__text h2, .two-col__left h2, .two-col__right h2 { margin-bottom: 24px; }
.two-col-text p, .two-col__text p, .two-col__left p, .two-col__right p { color: #555; margin-bottom: 20px; }
.two-col-text .btn, .two-col__text .btn, .two-col__left .btn, .two-col__right .btn { margin-top: 12px; }
.two-col-images, .two-col__images { position: relative; }
.two-col-images img, .two-col__images img {
  border-radius: 8px;
  width: 100%;
}
.two-col__img-secondary, .two-col-images .img-secondary {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 55%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
  color: var(--color-white);
}
.stats-section h2 { color: var(--color-white); margin-bottom: 60px; }
.stats-section .container { position: relative; z-index: 1; }
.stats-bg, .stats-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.stats-bg img, .stats-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stats-bg::after, .stats-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.stats-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 0;
}
.stats-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
}
.stats-content h2 { color: var(--color-white); margin-bottom: 60px; }
.stats-row, .stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.stat-item, .stat { text-align: center; }
.stat-number, .stat__number {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  color: var(--color-white);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat__counter, .stat__prefix, .stat__suffix { font-family: var(--font-display); }
.stat-label, .stat__label {
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ============================================
   PROPERTY CARDS — tall portrait with image crossfade
   ============================================ */
.property-cards { margin-top: 48px; }
.property-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.property-card:hover { transform: translateY(-4px); }
.property-card-img, .property-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.property-card-img img, .property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Second image for crossfade — sits on top, hidden by default */
.property-card__img img:nth-child(2),
.property-card-img img:nth-child(2) {
  position: absolute;
  inset: 0;
  opacity: 0;
}
/* On hover: first image fades out, second fades in */
.property-card:hover .property-card__img img:first-child,
.property-card:hover .property-card-img img:first-child {
  opacity: 0;
}
.property-card:hover .property-card__img img:nth-child(2),
.property-card:hover .property-card-img img:nth-child(2) {
  opacity: 1;
}

/* Property tag — top-RIGHT, white bg, dark text, green dot */
.property-tag, .property-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-white);
  color: var(--color-text);
  padding: 6px 16px 6px 28px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 1;
}
.property-tag::before, .property-card__tag::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
}

.property-card-info, .property-card__body { padding: 20px 4px; }
.property-card-info h3, .property-card__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}
.property-card__location {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}
.property-specs, .property-card__specs {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 12px;
  align-items: center;
}
.property-specs span, .property-card__spec { display: flex; align-items: center; gap: 4px; }
.property-price, .property-card__price {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
}
.section-cta, .section__cta { text-align: center; margin-top: 48px; }

/* ============================================
   TESTIMONIAL SECTION — left-aligned, full-bleed, collage bg
   ============================================ */
.testimonial-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.testimonial-section .container { position: relative; z-index: 1; }
.testimonial-bg, .testimonial-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.testimonial-bg img, .testimonial-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Darker overlay on left half for readability */
.testimonial-bg::after, .testimonial-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.3) 100%);
}
.testimonial-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 0;
}
/* Testimonial content — left-aligned */
.testimonial-content, .testimonial {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0;
  text-align: left;
  color: var(--color-white);
  padding: 0;
}
.testimonial-content h3, .testimonial__quote {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.5;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 32px;
}
.testimonial-author, .testimonial__author {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__name {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-white);
  display: block;
  font-style: normal;
}
.testimonial-role, .testimonial__role {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 4px;
  color: var(--color-white);
  display: block;
}
/* Testimonial navigation arrows — bottom-right */
.testimonial__nav {
  display: flex;
  gap: 12px;
  z-index: 2;
  margin-top: 32px;
}
.testimonial__nav button {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial__nav button:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

/* ============================================
   BLOG/INSIGHTS CARDS
   ============================================ */
.insight-cards { margin-top: 48px; }
.insight-card {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.insight-card-img, .insight-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.insight-card-img img, .insight-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insight-card:hover .insight-card-img img,
.insight-card:hover .insight-card__img img { transform: scale(1.05); }
.insight-date, .insight-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  z-index: 1;
}
.insight-card-info, .insight-card__body { padding: 20px 4px; }
.insight-card-info h3, .insight-card__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}

/* ============================================
   FAQ ACCORDION — two-column layout on homepage
   ============================================ */
/* Homepage FAQ — two columns: heading left, accordion right */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.faq-layout__left h2 {
  margin-bottom: 0;
}
.faq-layout__right .faq-list {
  margin: 0;
  max-width: none;
}
/* The section-label and h2 on the left column are already in DOM order before .faq-list */

/* Full FAQ page — single column centered */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-question, .faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  gap: 16px;
}
.faq-question:hover, .faq-item__question:hover { color: var(--color-primary); }
.faq-icon, .faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon,
.faq-item.active .faq-item__icon { transform: rotate(180deg); }
.faq-answer, .faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: #555;
  line-height: 1.7;
}
.faq-answer-inner p,
.faq-item__answer p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  padding-bottom: 24px;
}
.faq-category-label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: 40px;
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.faq-category-label:first-child { margin-top: 0; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; color: var(--color-white); }
.cta-banner h2 { color: var(--color-white); margin-bottom: 32px; }
.cta-bg, .cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
}
.cta-bg img, .cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.cta-bg::after, .cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.35) 100%);
}
.cta-banner__overlay, .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.35) 100%);
  z-index: 0;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
}
.cta-content h2 { color: var(--color-white); margin-bottom: 32px; }
.cta-buttons, .cta-banner__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  display: block;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section .two-col { align-items: start; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1.5px solid #ddd;
  font-size: 15px;
  color: var(--color-text);
  background: transparent;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--color-primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-light); }
.form-group select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8b8b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error { color: #d32f2f; font-size: 12px; margin-top: 4px; display: none; }
.form-success {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 24px;
  border-radius: 8px;
  text-align: center;
  display: none;
  margin-bottom: 24px;
}
.contact-image { border-radius: 12px; overflow: hidden; }
.contact-image img { border-radius: 12px; width: 100%; height: 100%; object-fit: cover; }

/* Contact right-column image (when .two-col__right has just an img) */
.two-col__right img.contact-image,
.two-col__right > img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Map */
.map-section { width: 100%; height: 400px; }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-intro { max-width: 700px; margin: 0 auto; text-align: center; color: #555; }
.service-intro p { font-size: 18px; }
.service-list { margin-top: 24px; }
.service-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #555;
  font-size: 16px;
}
.service-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.service-image img { border-radius: 12px; width: 100%; }

/* How It Works Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 48px; }
.step-item { text-align: center; }
.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1;
}
.step-item h3 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}
.step-item p { font-size: 14px; color: #555; }

/* ============================================
   TRUST BAR / PARTNER LOGOS
   ============================================ */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  flex-wrap: wrap;
}
.trust-bar span {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   FULL-WIDTH BANNER
   ============================================ */
.banner-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(101, 149, 168, 0.75);
}
.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
}
.banner-content h2 { color: var(--color-white); }

/* ============================================
   FOOTER
   ============================================ */
.footer, .site-footer { padding: 80px 0 0; }
.footer-top, .footer__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}
.footer-logo, .footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
}
.footer-logo svg, .footer__logo svg { width: 28px; height: 28px; }
.footer-newsletter h5, .footer__newsletter h5 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-black);
}
.footer-newsletter p, .footer__newsletter p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  max-width: 360px;
}
.newsletter-form, .footer__newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input, .footer__newsletter-form input {
  padding: 10px 16px;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  font-size: 14px;
  width: 220px;
}
.newsletter-form input::placeholder, .footer__newsletter-form input::placeholder { color: var(--color-text-light); }
.newsletter-form button, .footer__newsletter-form button {
  padding: 10px 24px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.newsletter-form button:hover, .footer__newsletter-form button:hover { background: var(--color-primary-dark); }

.footer-grid, .footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid #e8e8e8;
}
.footer-col h6, .footer__col h6 {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-black);
}
.footer-col a, .footer__col a,
.footer-col p, .footer__col p {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-col a:hover, .footer__col a:hover { color: var(--color-primary); }
.footer__col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}
.footer__col li svg { flex-shrink: 0; margin-top: 2px; }
.footer__col li a { margin-bottom: 0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }

.footer-social, .footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.footer-social a, .footer__social a {
  width: 36px;
  height: 36px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover, .footer__social a:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}
.footer-social a svg, .footer__social a svg { width: 16px; height: 16px; }

.footer-bottom, .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid #e8e8e8;
  font-size: 13px;
  color: var(--color-text-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in[data-delay="1"] { transition-delay: 0.1s; }
.fade-in[data-delay="2"] { transition-delay: 0.2s; }
.fade-in[data-delay="3"] { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE: TABLET (max-width: 1200px)
   ============================================ */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .nav-inner, .site-header > .nav { padding: 0 32px; }
  .two-col, .two-col--reverse { gap: 40px; }
  .two-col__img-secondary { right: -20px; bottom: -40px; width: 50%; }
  .stats-row, .stats-grid { gap: 48px; }
  .steps-grid { gap: 32px; }
  .footer-grid, .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
  .help-cards { height: 500px; }

  /* FAQ two-col shrink gap */
  .faq-layout { gap: 48px; }
}

/* ============================================
   RESPONSIVE: MOBILE (max-width: 810px)
   ============================================ */
@media (max-width: 810px) {
  :root {
    --section-padding: 80px 0;
  }
  .container { padding: 0 20px; }
  .nav-inner, .site-header > .nav { padding: 0 20px; }
  .section { padding: var(--section-padding-sm); }

  /* Nav — hide text links on mobile, keep hamburger */
  .nav-links, .nav__links { display: none; }

  /* Mobile menu adjustments */
  .mobile-menu__content {
    flex-direction: column;
    padding: 100px 24px 80px;
  }
  .mobile-menu__content .mobile-menu__links {
    flex: none;
    width: 100%;
  }
  .mobile-menu__header {
    padding: 20px 24px;
  }
  .mobile-menu__social {
    left: 24px;
  }

  /* Hero */
  .hero { min-height: 500px; }
  .hero--half { min-height: 300px; }
  .hero-buttons, .hero__buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn, .hero__buttons .btn { width: 240px; }

  /* Help cards — stack vertically */
  .help-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    height: auto;
  }
  .help-card { aspect-ratio: 16/9; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; gap: 32px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }

  /* Two-col */
  .two-col, .two-col--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .two-col__img-secondary { display: none; }

  /* Stats */
  .stats-row, .stats-grid { flex-direction: column; gap: 40px; }

  /* Property cards */
  .property-cards.grid-3 { grid-template-columns: 1fr; }
  .property-card__img { aspect-ratio: 4/3; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }

  /* FAQ — single column on mobile */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* CTA */
  .cta-buttons, .cta-banner__buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn, .cta-banner__buttons .btn { width: 240px; }

  /* Footer */
  .footer-grid, .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom, .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Trust bar */
  .trust-bar { gap: 32px; }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner, .site-header > .nav { padding: 0 16px; }
  .footer-grid, .footer__grid { grid-template-columns: 1fr; }
  .newsletter-form, .footer__newsletter-form { flex-direction: column; }
  .newsletter-form input, .footer__newsletter-form input { width: 100%; }
  .help-card { aspect-ratio: 3/4; }
}
