/* ==========================================
   BLB Projects — site styles
   ========================================== */
:root {
  --orange: #F58634;
  --orange-2: #E0731F;
  --navy: #1B2C4A;
  --navy-2: #0F1E36;
  --ink: #1A1A1A;
  --muted: #6B6F76;
  --bg: #F4F1EC;
  --line: #E7E2D8;
  --shadow: 0 18px 40px rgba(20, 20, 30, .08);
  --header-h: 76px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0;
}

h2 {
  font-size: 34px;
  line-height: 1.18;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 17px;
  line-height: 1.35;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

p {
  font-size: 15px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.center {
  text-align: center;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .12em;
  border-radius: 2px;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .14);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-2);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
}

.btn-ghost:hover {
  background: #f3f3f3;
}

/* ==========================================
   Eyebrow
   ========================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--orange);
  text-transform: capitalize;
  margin-bottom: 12px;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
}

.eyebrow-bar {
  width: 22px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* ==========================================
   Scroll-reveal animations
   ========================================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Hero animations run immediately on load */
.hero .reveal-up {
  animation: heroFadeUp .7s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .09);
}

.site-header.scrolled .header-inner {
  border-radius: 0;
  box-shadow: none;
  margin: 0 auto;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 22px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
  transition: border-radius .3s ease, box-shadow .3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 38px;
  height: 38px;
}

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

.logo-blb {
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: .02em;
}

.logo-sub {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--navy);
  margin-top: 3px;
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 2px;
  transition: color .2s;
}

.nav-link .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0;
  transition: opacity .2s;
}

.nav-link.active {
  color: var(--ink);
  border: 1px solid #EFEAE0;
}

.nav-link.active .dot {
  opacity: 1;
}

.nav-link:hover {
  color: var(--orange);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  padding: 11px 18px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 4px;
  transition: background .2s;
}

.hamburger:hover {
  background: #f5f0e8;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(2px);
}

.mm-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: min(320px, 85vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, .16);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.mm-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .2s;
}

.mm-close:hover {
  background: #f0ece5;
}

.mm-nav {
  flex: 1;
  padding: 10px 0;
  overflow-y: auto;
}

.mm-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid #f5f2ec;
  transition: color .2s, background .2s;
}

.mm-link:hover {
  color: var(--orange);
  background: #fdf8f2;
}

.mm-footer {
  padding: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mm-email {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}

.mm-email:hover {
  color: var(--orange);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: #fff;
  margin-top: 0;
}

/* Hero slider (Owl Carousel) */
.hero-slider.owl-carousel {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100vh;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .45) 40%, rgba(0, 0, 0, .15) 100%);
}

/* Owl dots inside hero */
.hero .owl-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.hero .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background .3s, transform .3s;
}

.hero .owl-dot.active span {
  background: #F58634;
  transform: scale(1.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero h1 .line-1 {
  display: block;
  color: #fff;
}

.hero h1 .line-2 {
  display: block;
  color: var(--orange);
}

.hero-sub {
  max-width: 440px;
  font-size: 15px;
  line-height: 1.75;
  color: #E9E6E1;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Contact strip */
.contact-strip {
  position: absolute;
  right: 28px;
  bottom: -48px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border-radius: 4px;
  padding: 18px 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  max-width: 560px;
}

.cs-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FCEEDF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .06em;
}

.cs-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.cs-value a {
  color: inherit;
  transition: color .2s;
}

.cs-value a:hover {
  color: var(--orange);
}

.cs-divider {
  width: 1px;
  height: 34px;
  background: #EDE7DA;
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
  padding: 130px 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 60px;
  align-items: start;
}

.about-media {
  position: relative;
}

.about-img-1 {
  width: 100%;
  height: 490px;
  object-fit: cover;
  border-radius: 3px;
}

.about-img-2 {
  position: absolute;
  left: -30px;
  bottom: -90px;
  width: 230px;
  height: 180px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 3px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.about-copy h2 {
  margin-bottom: 18px;
}

.about-copy .lede {
  font-size: 15px;
  color: #3a3a3a;
  margin: 0 0 18px;
}

.about-copy p {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 14px;
}

.about-copy .btn {
  margin-top: 16px;
}

/* Mission band */
.mission-band {
  background: var(--navy);
  color: #fff;
  margin: 100px 0 0;
  padding: 42px 56px 46px;
  border-radius: 3px;
  position: relative;
}

.mb-tabs {
  display: flex;
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  padding-bottom: 14px;
  margin-bottom: 24px;
}

.mb-tab {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  padding: 4px 0;
  position: relative;
  opacity: .7;
  transition: opacity .2s, color .2s;
}

.mb-tab.active {
  color: var(--orange);
  opacity: 1;
}

.mb-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 2px;
  background: var(--orange);
}

.mb-panel {
  display: none;
}

.mb-panel.active {
  display: block;
  animation: fade .35s ease;
}

.mb-lede {
  font-size: 15px;
  color: #cfd3dc;
  max-width: 760px;
  margin: 0 0 22px;
}

.mb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mb-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #fff;
}

.mb-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
  padding: 110px 0 0;
  background: #fff;
}

.services-head {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.services-blurb {
  color: #5a5a5a;
  font-size: 15px;
  margin: 0;
  line-height: 1.8;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.svc-card {
  display: block;
  position: relative;
  aspect-ratio: 1/1.2;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .72) 80%);
}

.svc-card:hover img {
  transform: scale(1.06);
}

.svc-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.svc-body h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.svc-body p {
  font-size: 15px;
  line-height: 1.65;
  color: #E5E5E5;
  margin: 0 0 18px;
}

.svc-arrow {
  width: 42px;
  height: 42px;
  background: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  transition: background .2s ease, transform .2s ease;
  border-radius: 2px;
}

.svc-card:hover .svc-arrow {
  background: var(--orange-2);
  transform: translateX(4px);
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why {
  padding: 100px 0;
  background: var(--bg);
}

.why-head {
  margin-bottom: 48px;
}

.why-head h2 {
  margin: 6px 0 12px;
}

.why-sub {
  max-width: 600px;
  margin: 0 auto;
  color: #5a5a5a;
  font-size: 15px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 30px;
  background: #EFEBE1;
  padding: 34px;
  border-radius: 3px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  border-radius: 2px;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: #fff;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 3px;
  transition: box-shadow .25s ease, transform .25s ease;
}

.why-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .09);
  transform: translateY(-3px);
}

.why-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FCEEDF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.why-card h4 {
  font-size: 15px;
  color: var(--ink);
}

.why-card p {
  font-size: 15px;
  color: #5a5a5a;
  margin: 0;
  line-height: 1.7;
}

/* ==========================================
   TESTIMONIAL
   ========================================== */
.testimonial {
  position: relative;
  padding: 90px 0;
  color: #fff;
  overflow: hidden;
}

.t-bg {
  position: absolute;
  inset: 0;
}

.t-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 30, .8);
}

.t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
  transition: background .2s, transform .2s;
}

.t-arrow:hover {
  background: #f5f0e8;
  transform: translateY(-50%) scale(1.05);
}

.t-prev {
  left: 30px;
}

.t-next {
  right: 30px;
}

.t-content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
}

.t-quote-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.t-slides {
  position: relative;
  min-height: 230px;
}

.t-slide {
  display: none;
  margin: 0;
  padding: 0;
}

.t-slide.active {
  display: block;
  animation: fade .45s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.t-slide p {
  font-size: 15px;
  line-height: 1.8;
  color: #E9E6E1;
  max-width: 680px;
  margin: 18px auto 26px;
}

.t-author .t-name {
  font-weight: 700;
  font-size: 15px;
}

.t-author .t-role {
  font-size: 12px;
  color: var(--orange);
  margin-top: 4px;
  letter-spacing: .06em;
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transition: .25s;
}

.t-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 6px;
}

.t-dot:hover {
  background: rgba(255, 255, 255, .7);
}

/* ==========================================
   PROJECTS
   ========================================== */
.projects {
  padding: 100px 0;
  background: #fff;
}

.proj-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.proj-head h2 {
  margin-top: 6px;
}

.proj-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.proj-filter {
  padding: 10px 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  background: #fff;
  border-radius: 2px;
  transition: background .2s, color .2s, transform .15s;
}

.proj-filter:hover {
  transform: translateY(-1px);
}

.proj-filter.active,
.proj-filter:hover {
  background: var(--orange);
  color: #fff;
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proj-card {
  position: relative;
  aspect-ratio: 1.05/1;
  overflow: hidden;
  border-radius: 2px;
}

.proj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .3s ease;
}

.proj-card:hover img {
  transform: scale(1.06);
  filter: brightness(.72);
}

.proj-card.hidden {
  display: none;
}

.proj-card::after {
  content: "View";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  opacity: 0;
  transition: opacity .3s;
}

.proj-card:hover::after {
  opacity: 1;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lb-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.lb-backdrop.lb-open {
  opacity: 1;
  pointer-events: all;
}
.lb-inner {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
  transition: opacity .22s ease;
}
.lb-img.lb-loading {
  opacity: 0;
}
.lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 2100;
  padding: 4px 10px;
  opacity: .8;
  transition: opacity .2s;
}
.lb-close:hover { opacity: 1; }
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 2px;
  z-index: 2100;
  transition: background .2s;
}
.lb-arrow:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-caption {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 13px;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  position: relative;
  padding: 90px 0;
  color: #fff;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 30, .72);
}

.contact-inner {
  position: relative;
}

.white {
  color: #fff;
}

.contact h2 {
  color: #fff;
  margin: 6px 0 14px;
}

.contact-sub {
  max-width: 560px;
  margin: 0 auto 32px;
  color: #D9D6CF;
  font-size: 15px;
}

.contact-form {
  background: #fff;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #E5E2DA;
  background: #FAFAF7;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink);
  border-radius: 2px;
  outline: none;
  transition: border-color .2s, background .2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245, 134, 52, .1);
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 14px;
}

.cf-select {
  position: relative;
}

.cf-select select {
  appearance: none;
  padding-right: 36px;
}

.cf-select svg {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}



/* ==========================================
   CTA RIBBON
   ========================================== */
.cta-ribbon {
  background: var(--bg);
  padding: 32px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-ribbon h3 {
  font-size: 22px;
  margin: 0 0 4px;
}

.cta-ribbon p {
  margin: 0;
  color: #5a5a5a;
  font-size: 15px;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 46px;
}

.f-brand p {
  font-size: 15px;
  color: #B6BCC7;
  line-height: 1.75;
  margin: 0 0 18px;
}

.f-years {
  display: inline-block;
  background: rgba(255, 255, 255, .06);
  border-left: 3px solid var(--orange);
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
}

.f-col h5 {
  font-size: 18px;
  color: #fff;
  margin: 6px 0 18px;
  letter-spacing: .04em;
}

.f-col a {
  display: block;
  color: #B6BCC7;
  font-size: 15px;
  padding: 5px 0;
  transition: color .2s, padding-left .2s;
}

.f-col a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.f-line {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.f-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-label {
  font-size: 13px;
  color: #B6BCC7;
  letter-spacing: .05em;
}

.f-line>div>div:last-child {
  font-size: 15px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0;
  font-size: 12px;
  color: #B6BCC7;
}

.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.fb-brand {
  color: var(--orange);
}

.fb-social {
  display: flex;
  gap: 18px;
}

.fb-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #B6BCC7;
  font-size: 12px;
  transition: color .2s;
}

.fb-social a:hover {
  color: var(--orange);
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s;
  transform: translateY(12px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.back-to-top:hover {
  background: var(--orange);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 36px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .55);
}

/* ==========================================
   RESPONSIVE — 1100px
   ========================================== */
@media (max-width:1100px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image img {
    min-height: 260px;
  }

  .proj-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 46px;
  }

  .services-head {
    grid-template-columns: 1fr;
  }

  .t-content {
    padding: 0 60px;
  }
}

/* ==========================================
   RESPONSIVE — 768px
   ========================================== */
@media (max-width:768px) {
  h2 {
    font-size: 28px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .contact-strip {
    display: none;
  }

  .t-content {
    padding: 0 50px;
  }

  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================
   RESPONSIVE — 640px
   ========================================== */
@media (max-width:640px) {
  .hero {
    padding-top: 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 13px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 200px;
    justify-content: center;
  }

  .about {
    padding: 90px 0 0;
  }

  .about-img-2 {
    display: none;
  }

  .mission-band {
    padding: 28px 22px;
    margin-top: 60px;
  }

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

  .svc-card {
    aspect-ratio: 4/3;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-grid {
    padding: 20px;
  }

  .t-content {
    padding: 0 44px;
  }

  .t-arrow {
    width: 36px;
    height: 36px;
  }

  .t-prev {
    left: 6px;
  }

  .t-next {
    right: 6px;
  }

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

  .proj-filters {
    gap: 8px;
  }

  .proj-filter {
    padding: 8px 14px;
    font-size: 10.5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .proj-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .header-inner {
    padding: 8px 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 80px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 22px;
  }
}

/* ==========================================
   RESPONSIVE — 400px
   ========================================== */
@media (max-width:400px) {
  .hero h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .proj-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

/* Shared section padding */
.section-pad {
  padding: 90px 0;
}

/* Reversed 2-col grid for alternating service sections */
.about-grid-rev {
  direction: rtl;
}
.about-grid-rev > * {
  direction: ltr;
}

/* Service feature list */
.svc-feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.svc-feature-list li {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.svc-check {
  color: #F58634;
  font-weight: 700;
  flex-shrink: 0;
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  margin-top: 10px;
}

.section-sub {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--muted);
}

/* ---- Page Banner ---- */
.page-banner {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--navy-2) url('images/testimonials-bg.jpg') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.pb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 30, 54, .88) 0%, rgba(27, 44, 74, .78) 100%);
}

.pb-content {
  position: relative;
  z-index: 2;
}

.pb-content h1 {
  font-size: 52px;
  color: #fff;
  margin: 4px 0 16px;
  letter-spacing: -.02em;
}

/* Hero animations on page banner */
.page-banner .reveal-up {
  animation: heroFadeUp .65s ease both;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

.breadcrumb a {
  color: var(--orange);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.bc-sep {
  opacity: .5;
}

/* ---- Company Story ---- */
.au-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.au-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 14px;
}

.au-badge-ico {
  color: var(--orange);
  font-weight: 800;
}

/* ---- Stats band ---- */
.stats-band {
  background: var(--orange);
  padding: 56px 0;
}

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

.stat-item {
  color: #fff;
}

.stat-num {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-size: 28px;
  font-weight: 800;
  display: inline;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 6px;
}

/* ---- Mission & Vision ---- */
.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.mv-card {
  background: #fff;
  border-radius: 6px;
  padding: 40px 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mv-icon {
  margin-bottom: 18px;
}

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

.mv-card p {
  color: var(--muted);
}

.mv-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.mv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
  border-top: 1px solid var(--line);
}

.mv-check {
  color: var(--orange);
  font-weight: 800;
}

/* ---- Values grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg);
  border-radius: 6px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: box-shadow .25s ease, transform .25s ease;
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.vc-ico {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

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

.value-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ---- Why Choose Us (about page only — scoped to .au-why) ---- */
.au-why .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-item {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.why-item:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
}

.wi-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  opacity: 1;
  line-height: 1;
  margin-bottom: 14px;
}

.why-item h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 16px;
}

.why-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ---- CTA ---- */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 52px 56px;
  box-shadow: var(--shadow);
}

.cta-copy h2 {
  margin-top: 8px;
}

.cta-copy p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ==========================================
   ABOUT PAGE — RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .pb-content h1 {
    font-size: 38px;
  }

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

  .mv-cards {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .au-why .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .cta-copy p {
    max-width: 100%;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .section-pad {
    padding: 60px 0;
  }

  .pb-content h1 {
    font-size: 30px;
  }

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

  .stat-num {
    font-size: 38px;
  }

  .stat-suffix {
    font-size: 22px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .au-why .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 32px 22px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   TESTIMONIALS PAGE
   ========================================== */
.testi-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-stat {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.testi-stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}

.testi-stat-num span {
  font-size: 28px;
  color: var(--orange);
}

.testi-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow .25s, transform .25s;
}

.testi-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

.testi-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.testi-stars {
  color: #F58634;
  font-size: 16px;
  letter-spacing: 2px;
}

.testi-card blockquote {
  margin: 0;
  flex: 1;
}

.testi-card blockquote p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.testi-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
}

.testi-role {
  font-size: 12px;
  color: var(--orange);
  margin-top: 3px;
  letter-spacing: .04em;
}

.testi-review-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px 48px;
}

.testi-review-icon {
  width: 64px;
  height: 64px;
  background: #FFF4EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-review-body {
  flex: 1;
}

.testi-review-body h3 {
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 6px;
}

.testi-review-body p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

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

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

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

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

  .testi-stat {
    padding: 24px 14px;
  }

  .testi-stat-num {
    font-size: 34px;
  }

  .testi-review-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.page-banner.contact-us-banner {
  background: var(--navy-2) url('images/contact-bg.jpg') center/cover no-repeat;
}

.page-banner.contact-us-banner .pb-overlay {
  background: linear-gradient(135deg, rgba(15, 30, 54, .90) 0%, rgba(27, 44, 74, .80) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 56px;
  align-items: start;
}

/* --- Info cards --- */
.ci-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.ci-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .04);
  transition: box-shadow .2s ease, transform .2s ease;
}

.ci-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(245, 134, 52, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-detail {
  flex: 1;
  min-width: 0;
}

.ci-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.ci-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.ci-value a {
  color: inherit;
}

.ci-value a:hover {
  color: var(--orange);
}

.ci-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.5;
}

/* Trust badges */
.ci-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  background: var(--navy);
  border-radius: 6px;
}

.ci-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
}

.ci-trust-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245, 134, 52, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Form panel --- */
.contact-form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 48px 52px;
  box-shadow: var(--shadow);
}

.cfp-head {
  margin-bottom: 32px;
}

.cfp-head h3 {
  font-size: 26px;
  color: var(--navy);
  margin-top: 10px;
}

.cfp-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.cf-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
}

.cf-label .req {
  color: var(--orange);
  margin-left: 2px;
}

.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #fafaf9;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.cf-input::placeholder,
.cf-textarea::placeholder {
  color: #b0b4bc;
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 134, 52, .12);
  background: #fff;
}

.cf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6F76' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.cf-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.cf-submit-wrap {
  margin-top: 6px;
}

.cf-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.cf-submit:hover:not(:disabled) {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 134, 52, .32);
}

.cf-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  line-height: 1.5;
}

.form-msg.success {
  background: #f0faf0;
  border: 1px solid #a3d9a3;
  color: #1e7a1e;
}

.form-msg.error {
  background: #fff4f4;
  border: 1px solid #f5a0a0;
  color: #c0392b;
}

/* --- Map --- */
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 440px;
  display: block;
  border: 0;
}

.map-suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.map-suburb-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 7px 16px;
}

/* --- FAQ --- */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease;
  font-family: inherit;
}

.faq-q:hover {
  color: var(--orange);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s ease, border-color .25s ease, transform .3s ease;
}

.faq-item.open .faq-q {
  color: var(--orange);
}

.faq-item.open .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg {
  stroke: #fff;
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding-bottom: 22px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14.5px;
  margin: 0;
}

/* ==========================================
   CONTACT PAGE — RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-panel {
    padding: 36px 40px;
  }
}

@media (max-width: 640px) {
  .cf-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-panel {
    padding: 28px 22px;
  }

  .map-wrap iframe {
    height: 300px;
  }

  .faq-q {
    font-size: 15px;
  }
}