/* ===== MAIA REALTY — Harcourts-inspired aesthetic ===== */

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

:root {
  --navy:       #1B2A4A;
  --navy-deep:  #0F1C33;
  --gold:       #C9A96E;
  --gold-light: #D4BA88;
  --gold-dark:  #A8884D;
  --white:      #FFFFFF;
  --off-white:  #F7F5F2;
  --light-gray: #E8E4DF;
  --text:       #2C2C2C;
  --text-light: #6B6B6B;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-sub {
  color: var(--text-light);
  max-width: 600px;
  font-size: 1.05rem;
}

.text-center { text-align: center; }
.section-sub.text-center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all .4s ease;
}

.navbar.scrolled {
  background: var(--navy-deep);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: color .3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  font-size: .75rem !important;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,28,51,.85) 0%,
    rgba(27,42,74,.6) 50%,
    rgba(15,28,51,.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content .section-label {
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.hero-scroll span {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero-scroll .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40%  { transform: rotate(45deg) translateY(-8px); }
  60%  { transform: rotate(45deg) translateY(-4px); }
}

/* ---------- Intro Strip (big quote) ---------- */
.intro-strip {
  padding: 60px 0;
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.intro-strip-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--navy);
  text-align: center;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.intro-strip-text em {
  color: var(--gold);
  font-style: normal;
}

/* ---------- Intro / About ---------- */
.intro {
  padding: 100px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image {
  position: relative;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.intro-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  z-index: -1;
}

.intro-text h2 {
  margin-bottom: 24px;
  color: var(--navy);
}

.intro-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 1.02rem;
}

.intro-text .btn { margin-top: 12px; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--navy);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3,
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat-item p {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---------- Services ---------- */
.services {
  padding: 100px 0;
  background: var(--off-white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 { color: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Flip card container */
.service-flip {
  perspective: 800px;
  height: 280px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .6s ease;
  transform-style: preserve-3d;
}

.service-flip.flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 36px 28px;
}

.flip-front {
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: border-color .3s;
  display: flex;
  flex-direction: column;
}

.service-flip:hover .flip-front {
  border-bottom-color: var(--gold);
}

.flip-back {
  background: var(--navy);
  transform: rotateY(180deg);
  overflow-y: auto;
}

.flip-back h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.flip-back ul {
  list-style: none;
  padding: 0;
}

.flip-back li {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.flip-back li:last-child { border-bottom: none; }

.flip-hint {
  margin-top: auto;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.5rem;
}

.flip-front h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.flip-front p {
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Legacy support */
.service-card {
  background: var(--white);
  padding: 44px 32px;
  transition: transform .3s, box-shadow .3s;
  border-bottom: 3px solid transparent;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 14px;
}

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

/* ---------- Process / How It Works ---------- */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 { color: var(--navy); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--light-gray);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step h4 {
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  color: var(--text-light);
  font-size: .9rem;
}

/* ---------- Featured / Full-width Image Band ---------- */
.image-band {
  position: relative;
  height: 440px;
  overflow: hidden;
}

.image-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.image-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,28,51,.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-band-content {
  text-align: center;
  max-width: 650px;
  padding: 0 24px;
}

.image-band-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.image-band-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* ---------- Video Section ---------- */
.video-section {
  padding: 100px 0;
  background: var(--white);
}

.video-header {
  text-align: center;
  margin-bottom: 60px;
}

.video-header h2 { color: var(--navy); }

.video-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--navy-deep);
  aspect-ratio: 16 / 9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-featured-text h3 {
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.video-featured-text p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.8;
}

.video-testimonials-heading {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-testimonial-card {
  background: var(--off-white);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.video-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.video-testimonial-info {
  padding: 18px 20px;
}

.video-testimonial-info strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: 2px;
}

.video-testimonial-info span {
  color: var(--text-light);
  font-size: .8rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 { color: var(--navy); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-light);
  font-size: .95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: .8rem;
  margin-top: 2px;
}

/* ---------- Areas ---------- */
.areas {
  padding: 100px 0;
  background: var(--white);
}

.areas-header {
  text-align: center;
  margin-bottom: 60px;
}

.areas-header h2 { color: var(--navy); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.area-card:hover img { transform: scale(1.08); }

.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,28,51,.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.area-card-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
}

.area-card-overlay span {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 { color: var(--navy); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-item summary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .3s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.8;
  padding: 0 0 24px 0;
}

/* ---------- FAQ Hero ---------- */
.faq-hero {
  padding: 160px 0 60px;
  background: var(--navy);
  text-align: center;
}

.faq-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.faq-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-category {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.4rem;
  margin-top: 50px;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.faq-category:first-of-type {
  margin-top: 0;
}

/* ---------- Area Descriptions ---------- */
.areas-descriptions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.area-desc h3,
.area-desc h4 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.area-desc p {
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.7;
}

/* ---------- Commission Note ---------- */
.commission-note {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin-top: 40px;
}

.commission-note p {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.7;
}

.commission-note a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* ---------- Team ---------- */
.team-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.team-card {
  background: var(--off-white);
  padding: 36px 32px;
  text-align: center;
}

.team-photo-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid var(--gold);
}

.team-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  color: var(--gold);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-card > p:last-child {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.team-member-card {
  background: var(--off-white);
  padding: 24px;
}

.team-member-card h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 2px;
}

.team-member-card span {
  color: var(--gold);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.team-member-card p {
  color: var(--text-light);
  font-size: .88rem;
  line-height: 1.6;
}

/* ---------- Blog Teaser ---------- */
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-teaser-card {
  background: var(--off-white);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.blog-teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.blog-teaser-image {
  height: 200px;
  overflow: hidden;
}

.blog-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-teaser-card:hover .blog-teaser-image img {
  transform: scale(1.05);
}

.blog-teaser-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-teaser-meta {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.blog-teaser-content h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-teaser-content p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.6;
}

/* ---------- Language Toggle ---------- */
.nav-lang {
  color: rgba(255,255,255,.45) !important;
  font-size: .7rem !important;
  letter-spacing: 1.5px;
  font-weight: 500;
  padding: 0 !important;
  margin-left: 4px;
  position: relative;
  transition: color .3s;
}
.nav-lang::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.2);
}
.nav-lang:hover {
  color: var(--gold) !important;
}

/* ---------- Case Studies ---------- */
.case-studies {
  padding: 100px 0;
  background: var(--off-white);
}

.case-studies-header {
  text-align: center;
  margin-bottom: 60px;
}

.case-studies-header h2 { color: var(--navy); }

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.case-study-card {
  background: var(--white);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.case-study-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
}

.case-study-content {
  padding: 28px 28px 32px;
}

.case-study-content h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.case-study-client {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.case-study-content > p:nth-child(3) {
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.case-study-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.case-study-stat {
  text-align: center;
  flex: 1;
}

.case-study-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.case-study-stat span {
  color: var(--text-light);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .3s, box-shadow .3s;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 550px;
  margin-inline: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-detail h4 {
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-detail p, .contact-detail a {
  color: var(--text-light);
  font-size: .95rem;
}

.contact-detail a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  margin-bottom: 10px;
  transition: color .3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255,255,255,.4);
  font-size: 1.1rem;
  transition: color .3s;
}
.footer-social a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid,
  .testimonials-grid,
  .areas-grid,
  .areas-descriptions { grid-template-columns: repeat(2, 1fr); }
  .case-studies-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .video-featured { grid-template-columns: 1fr; }
  .video-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-deep);
    padding: 24px;
    gap: 20px;
  }
  .nav-toggle { display: flex; }

  .nav-links.active .nav-lang {
    color: rgba(255,255,255,.6) !important;
    margin-left: 0;
  }
  .nav-links.active .nav-lang::before {
    display: none;
  }

  .intro-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .intro-image { order: -1; }
  .intro-image img { height: 340px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

  .services-grid,
  .testimonials-grid,
  .areas-grid,
  .areas-descriptions { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .blog-teaser-grid { grid-template-columns: 1fr; }

  .service-flip { height: 370px; }

  .video-testimonials-grid { grid-template-columns: 1fr; }

  .team-founders { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero { min-height: auto; height: auto; padding: 100px 0 60px; }
  .hero-content h1 { font-size: 2.2rem; }

  .wa-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
}
