/* ============================================
   ORACO GROUP CAMEROON - Main Stylesheet
   Design System & Global Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary-blue: #0B2C6A;
  --accent-gold: #cca143;
  --white: #FFFFFF;
  --dark-gray: #1E1E1E;
  --light-gray: #F4F6F9;
  --gold-hover: #b8923c;
  --blue-dark: #081d47;
  --shadow-soft: 0 4px 20px rgba(11, 44, 106, 0.08);
  --shadow-medium: 0 8px 30px rgba(11, 44, 106, 0.12);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  /* Horizontal inset for page content (tighter on small screens) */
  --page-gutter: 2rem;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--dark-gray);
  opacity: 0.85;
  margin-bottom: 2rem;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  margin-bottom: 1rem;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--dark-gray);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Button ripple effect */
.btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
  pointer-events: none;
}

.btn:active::after {
  transform: scale(2);
  opacity: 0;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem var(--page-gutter);
  background: var(--white);
  transition: box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-nav);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary-blue);
}

.navbar-logo span {
  color: var(--accent-gold);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a.active {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.navbar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.navbar-backdrop.visible {
  opacity: 1;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem var(--page-gutter);
  }

  .hamburger {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.35s ease;
    z-index: 1001;
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-backdrop.visible {
    display: block;
  }
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 8s ease-out forwards;
}

.hero-slide.active img {
  animation: heroZoom 8s ease-out;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 44, 106, 0.85) 0%, rgba(11, 44, 106, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem var(--page-gutter);
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content .tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Page Hero (Banner) ---------- */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 60px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 44, 106, 0.8) 0%, rgba(11, 44, 106, 0.5) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.page-hero-content p {
  font-size: 1rem;
  opacity: 0.95;
}

/* ---------- Sections ---------- */
/* Vertical padding only; horizontal spacing comes from .container to avoid double gutters */
section {
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ---------- Intro Section ---------- */
.intro-section {
  background: var(--light-gray);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-text h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.intro-text p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.intro-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-inner {
    grid-template-columns: 1fr;
  }
  .intro-image {
    order: -1;
  }
}

/* ---------- Services Preview Cards ---------- */
.services-preview .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.service-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--light-gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.service-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.services-preview .section-footer {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .services-preview .cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Why Choose Us (Dark Section) ---------- */
.why-choose {
  background: var(--primary-blue);
  color: var(--white);
  padding: 4rem var(--page-gutter);
}

.why-choose .section-title,
.why-choose .section-subtitle {
  color: var(--white);
}

.why-choose .section-subtitle {
  opacity: 0.9;
}

.why-choose .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.why-feature {
  text-align: center;
  padding: 1.5rem;
  transition: transform var(--transition);
}

.why-feature.visible {
  animation: fadeInUp 0.6s ease forwards;
}

.why-feature .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.why-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-feature p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .why-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 0.5rem;
  }
  .why-feature {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .why-feature .icon {
    margin-bottom: 0.75rem;
  }
  .why-feature h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }
  .why-feature p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }
  .stats-row {
    gap: 2rem;
  }
}

/* ---------- Projects Preview ---------- */
.projects-preview .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 44, 106, 0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-overlay h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.project-card-overlay span {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

.projects-preview .section-footer {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .projects-preview .grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: var(--accent-gold);
  padding: 2.5rem var(--page-gutter);
  text-align: center;
}

.cta-strip h2 {
  color: var(--dark-gray);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
}

.cta-strip-text {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-whatsapp {
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.95;
}

.cta-strip .btn {
  background: var(--primary-blue);
  color: var(--white);
}

.cta-strip .btn:hover {
  background: var(--blue-dark);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: linear-gradient(rgba(11, 44, 106, 0.94), rgba(11, 44, 106, 0.94)), url('../images/interior1.jpeg') center/cover no-repeat;
  color: var(--white);
  padding: 3rem var(--page-gutter) 1.5rem;
}

.navbar-logo-img {
  height: 52px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}


.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .navbar-logo {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand .tagline {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer a:hover {
  opacity: 1;
  color: var(--accent-gold);
}

.footer-contact p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-dev-credit {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.jackbase-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.jackbase-animated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.jackbase-name,
.jackbase-hand {
  display: inline-block;
  transform-origin: center;
}

.jackbase-name {
  color: #fff2a8;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 0 6px rgba(255, 232, 131, 0.95), 0 0 14px rgba(255, 217, 102, 0.85), 0 0 20px rgba(255, 186, 58, 0.7);
  animation: jackbaseBreath 2.4s ease-in-out infinite;
}

.jackbase-hand {
  color: #ffd84d;
  font-size: 1.05rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255, 211, 79, 0.95));
  animation: jackbaseHandPoint 1.6s ease-in-out infinite;
}

.jackbase-link {
  color: #ffe68a;
  font-size: 0.9rem;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jackbase-link:hover {
  color: #fff2a8;
}

.jackbase-dialog {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(8px);
  width: min(340px, 92vw);
  background: rgba(9, 30, 72, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.35s ease, visibility 0.5s ease;
  text-align: left;
  z-index: 20;
}

.jackbase-dialog::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.jackbase-dialog::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: rgba(9, 30, 72, 0.98) transparent transparent transparent;
}

.jackbase-wrap.jackbase-open .jackbase-dialog {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.jackbase-wrap.jackbase-open.jackbase-closing .jackbase-dialog {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
}

.jackbase-dialog h5 {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: #ffe68a;
  margin-bottom: 0.35rem;
}

.jackbase-dialog h6 {
  font-size: 0.75rem;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.jackbase-dialog p {
  font-size: 0.7rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.45rem;
}

.jackbase-contact {
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.94);
  margin: 0;
  word-break: break-word;
}

.jackbase-contact a {
  color: #ffe68a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jackbase-contact a:hover {
  color: #fff2a8;
}

@keyframes jackbaseBreath {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    text-shadow: 0 0 6px rgba(255, 232, 131, 0.85), 0 0 12px rgba(255, 217, 102, 0.55), 0 0 18px rgba(255, 186, 58, 0.45);
  }
  50% {
    transform: scale(1.045);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 240, 180, 1), 0 0 22px rgba(255, 220, 120, 0.85), 0 0 32px rgba(255, 190, 70, 0.65);
  }
}

@keyframes jackbaseHandPoint {
  0%,
  100% {
    transform: translateX(0) scale(1) rotate(-2deg);
    filter: drop-shadow(0 0 6px rgba(255, 211, 79, 0.85));
  }
  35% {
    transform: translateX(5px) scale(1.12) rotate(4deg);
    filter: drop-shadow(0 0 10px rgba(255, 228, 120, 1));
  }
  70% {
    transform: translateX(2px) scale(1.06) rotate(0deg);
    filter: drop-shadow(0 0 8px rgba(255, 215, 90, 0.95));
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .jackbase-dialog {
    left: 0;
    transform: translateX(0) translateY(8px);
    width: min(300px, 92vw);
  }

  .jackbase-dialog::after {
    left: 16%;
  }

  .jackbase-wrap.jackbase-open .jackbase-dialog {
    transform: translateX(0) translateY(0);
  }

  .jackbase-wrap.jackbase-open.jackbase-closing .jackbase-dialog {
    transform: translateX(0) translateY(8px);
  }
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 998;
  transition: transform var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7); }
}

/* ---------- Utility: Fade-in on scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

/* ---------- Our Process ---------- */
.our-process {
  background: var(--light-gray);
}

.our-process .process-subheadline {
  font-size: 1rem;
  color: var(--dark-gray);
  opacity: 0.9;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-blue);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent-gold);
  margin: 0;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card cite {
  font-size: 0.9rem;
  color: var(--primary-blue);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Meet the Team ---------- */
.meet-team {
  background: var(--light-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.meet-team .team-grid-home {
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.15rem;
  color: var(--primary-blue);
  margin: 1rem 1rem 0.25rem;
}

.team-title {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-desc {
  font-size: 0.9rem;
  color: var(--dark-gray);
  padding: 0 1rem 1.5rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Our House Plans ---------- */
.house-plans-section {
  padding: 4rem 0;
  background: var(--white);
}

.house-plans-section .section-subtitle {
  color: var(--dark-gray);
}

.house-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.house-plan-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.house-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.house-plan-link {
  display: block;
  position: relative;
}

.house-plan-link img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.house-plan-label {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-blue);
  background: var(--white);
}

.house-plans-cta {
  text-align: center;
  margin-top: 0;
}

@media (max-width: 768px) {
  .house-plans-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Partners & Accreditations ---------- */
.partners-section {
  background: var(--primary-blue);
  color: var(--white);
}

.partners-section .section-title,
.partners-section .section-subtitle {
  color: var(--white);
}

.partners-section .section-subtitle {
  opacity: 0.9;
}

.partners-section .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.partners-marquee-wrap {
  overflow: hidden;
  margin-top: 2rem;
  width: 100%;
  user-select: none;
}

.partners-marquee {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: partners-marquee 30s linear infinite;
}

.partners-marquee:hover {
  animation-play-state: paused;
}

@keyframes partners-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  filter: grayscale(1);
  opacity: 0.9;
  transition: opacity var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .partners-marquee {
    gap: 1.5rem;
    animation-duration: 25s;
  }
}

/* ---------- Blog Preview ---------- */
.blog-preview-section {
  background: var(--light-gray);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-preview-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  color: inherit;
}

.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  color: var(--primary-blue);
}

.blog-preview-card h3 {
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.blog-preview-card p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

.blog-preview-section .section-footer {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Dual CTA ---------- */
.dual-cta {
  padding: 0;
}

.dual-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.dual-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem var(--page-gutter);
  text-align: center;
}

.dual-cta-build {
  background: var(--primary-blue);
  color: var(--white);
}

.dual-cta-build h2 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}

.dual-cta-build p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.dual-cta-learn {
  background: var(--accent-gold);
  color: var(--dark-gray);
}

.dual-cta-learn h2 {
  color: var(--dark-gray);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}

.dual-cta-learn p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  max-width: 320px;
  opacity: 0.95;
}

.btn-outline-light {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline-light:hover {
  background: var(--primary-blue);
  color: var(--white);
}

@media (max-width: 768px) {
  .dual-cta-inner {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer Social Icons ---------- */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--dark-gray);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Mobile: bring content closer to screen edges */
@media (max-width: 768px) {
  :root {
    --page-gutter: 1rem;
  }

  .testimonial-card {
    padding: 1.25rem 1rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .blog-preview-card {
    padding: 1.25rem 1rem;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 16px;
  }
}
