:root {
  --blue: #0089cf;
  --blue-dark: #006fa8;
  --grey: #b7b7b7;
  --dark: #222831;
  --text: #2f3640;
  --muted: #6b7280;
  --light: #f6f8fa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* NAVBAR */
.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.nav-wrapper {
  min-height: 125px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand img {
  height: 105px;
  width: auto;
  display: block;
}

.nav-side {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-side a {
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none;
  position: relative;
}

.nav-side a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.nav-side a:hover {
  color: var(--blue);
}

.nav-side a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent; /* remove blue background */
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

/* the 3 lines */
.menu-btn span {
  position: absolute;
  left: 8px;
  width: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* positions */
.menu-btn span:nth-child(1) {
  top: 12px;
}

.menu-btn span:nth-child(2) {
  top: 20px;
}

.menu-btn span:nth-child(3) {
  top: 28px;
}

/* ACTIVE (X animation) */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    linear-gradient(135deg, rgba(0, 137, 207, 0.72), rgba(0, 0, 0, 0.15));
}

.hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  background: var(--blue);
  transform: rotate(45deg);
  opacity: 0.92;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  background: var(--blue);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  margin: 0 0 22px;
  font-weight: 800;
}

.hero p {
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: 21px;
  max-width: 720px;
  margin: 0 0 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 15px 26px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
}

.btn.primary {
  background: var(--blue);
  color: white;
}

.btn.secondary {
  background: white;
  color: var(--blue);
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .nav-wrapper {
    min-height: 95px;
    display: flex;
    justify-content: space-between;
  }

  .brand img {
    height: 78px;
  }

  .nav-left {
    display: none;
  }

  .nav-right {
    display: none;
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 5%;
    box-shadow: var(--shadow);
  }

  .nav-right.active {
    display: flex;
  }

  .menu-btn {
    display: block;
    border: none;
    background: var(--blue);
    color: white;
    font-size: 28px;
    padding: 8px 14px;
    cursor: pointer;
  }

  .hero {
    padding-top: 95px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }
}

.section {
  padding: 95px 0;
}

.section-heading.center {
  text-align: center;
  margin: 0 auto 45px;
  max-width: 760px;
}

.section-label {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 12px solid var(--blue);
  padding-left: 12px;
  margin-bottom: 12px;
}

.section-label.light {
  color: white;
  border-left-color: white;
}

.section h2,
.section-heading h2 {
  font-size: clamp(32px, 4vw, 50px);
  color: var(--dark);
  line-height: 1.1;
  margin: 0 0 20px;
}

.stats {
  background: var(--blue);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 34px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.stats h3 {
  font-size: 42px;
  margin: 0;
}

.stats p {
  font-weight: 700;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-image {
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.section-image img {
  height: 500px;
  object-fit: cover;
  width: 100%;
}

.angled::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 8px solid var(--blue);
  z-index: -1;
}

.section-text p {
  font-size: 17px;
  color: var(--muted);
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.services-preview,
.gallery-section {
  background: var(--light);
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card,
.project-card {
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-bottom: 8px solid var(--blue);
}

.service-card img,
.project-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.service-card div,
.project-card div {
  padding: 26px;
}

.service-card h3,
.project-card h3 {
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 10px;
}

.project-card span {
  font-weight: 800;
  color: var(--dark);
}

.center-btn {
  text-align: center;
  margin-top: 38px;
}

.client-strip {
  padding: 80px 0;
  background: white;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.client-logo-grid img {
  height: 130px;
  width: 130px;
  object-fit: contain;
  padding: 18px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow);
  margin: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.contact-strip {
  background:
    linear-gradient(135deg, rgba(0, 137, 207, 0.94), rgba(0, 111, 168, 0.95)),
    url("assets/images/img17.webp") center/cover;
  color: white;
  padding: 85px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 40px;
  align-items: center;
}

.contact-content h2 {
  font-size: 48px;
  margin: 0 0 12px;
}

.contact-card {
  background: white;
  color: var(--dark);
  padding: 34px;
  box-shadow: var(--shadow);
  border-left: 10px solid var(--grey);
}

.footer {
  background: #1d1f23;
  color: white;
}

.footer-main {
  text-align: center;
  padding: 70px 0 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 360px;
  max-width: 85%;
  margin-bottom: 20px;
}

.footer-tagline {
  max-width: 620px;
  color: #d1d5db;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-bottom: 34px;
}

.footer-links a {
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
}

.spybitech-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 22px;
  border-radius: 999px;
}

.spybitech-badge img {
  height: 34px;
  width: auto;
}

.footer-bottom {
  background: #121417;
  text-align: center;
  padding: 20px;
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .stats-grid,
  .split,
  .service-grid,
  .project-grid,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* REFINED NAVBAR */
/* ============================= */

.top-header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
  min-height: 112px;
  grid-template-columns: 1.2fr auto 1.2fr;
  gap: 70px;
}

.brand img {
  height: 88px;
}

.nav-side {
  gap: 42px;
}

.nav-side a {
  font-size: 14px;
  transition: color 0.25s ease;
}

.nav-side a::after {
  bottom: -11px;
  height: 2px;
  transition: width 0.28s ease;
}

/* ============================= */
/* REFINED FOOTER */
/* ============================= */

.footer-main {
  padding: 48px 0 34px;
}

.footer-logo {
  width: 220px;
  max-width: 70%;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  margin-bottom: 22px;
}

.footer-links {
  gap: 22px;
  margin-bottom: 26px;
}

.footer-links a {
  font-size: 13px;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--blue);
}

.spybitech-badge {
  padding: 8px 14px;
  gap: 8px;
  font-size: 12px;
  opacity: 0.72;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spybitech-badge:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.075);
}

.spybitech-badge img {
  height: 22px;
}

.footer-bottom {
  padding: 14px;
  font-size: 13px;
}

/* ============================= */
/* SOFT ANIMATIONS / HOVERS */
/* ============================= */

.btn,
.nav-side a,
.service-card,
.project-card,
.contact-card,
.client-logo-grid img,
.gallery img,
.section-image img,
.footer-links a,
.spybitech-badge,
.brand img {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.28s ease,
    color 0.28s ease,
    background 0.28s ease;
}

.brand img:hover {
  transform: scale(1.03);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 137, 207, 0.22);
}

.service-card:hover,
.project-card:hover,
.contact-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
}

.service-card:hover img,
.project-card:hover img,
.gallery img:hover,
.section-image:hover img {
  transform: scale(1.04);
}

.service-card,
.project-card,
.section-image {
  overflow: hidden;
}

.gallery img:hover {
  filter: brightness(0.92);
}

.client-logo-grid img:hover {
  transform: translateY(-5px) scale(1.03);
}

/* Hero soft entrance */
.hero-content {
  animation: heroFadeUp 0.9s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ABOUT PAGE */

.page-hero {
  min-height: 68vh;
  padding-top: 125px;
  position: relative;
  display: flex;
  align-items: center;
  background: url("assets/images/img5.webp") center/cover;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 137, 207, 0.35)),
    linear-gradient(135deg, rgba(0, 137, 207, 0.72), transparent);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  background: var(--blue);
  transform: rotate(45deg);
  opacity: 0.9;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: white;
  text-align: center;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
  margin: 0 0 20px;
}

.page-hero-content .eyebrow {
  display: inline-block;
  background: var(--blue);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 18px; /* THIS fixes the spacing */
}

.page-hero-content p {
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: 21px;
}

.about-values {
  background: var(--light);
}

.company-overview {
  background: white;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.overview-card {
  background: white;
  padding: 34px;
  box-shadow: var(--shadow);
  border-top: 8px solid var(--blue);
}

.overview-card h3 {
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 14px;
}

.overview-card ul {
  padding-left: 20px;
}

.overview-card li {
  margin-bottom: 9px;
  color: var(--muted);
}

.construction-manager {
  background: var(--light);
}

@media (max-width: 900px) {
  .page-hero {
    padding-top: 88px;
    min-height: 60vh;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICES PAGE */

.services-hero {
  background: url("assets/images/img6.webp") center/cover;
}

.services-intro {
  background: var(--light);
}

.center-text {
  text-align: center;
  max-width: 720px;
  margin: auto;
}

.service-detail {
  background: white;
}

.service-detail.alt {
  background: var(--light);
}

.service-list {
  margin: 20px 0;
  padding-left: 20px;
}

.service-list li {
  margin-bottom: 10px;
  color: var(--muted);
}

.why-us {
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.why-card {
  background: white;
  padding: 30px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--blue);
}

.why-card h3 {
  color: var(--blue);
  margin-bottom: 10px;
}

/* MOBILE */

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* PROJECTS PAGE */

.projects-hero {
  background: url("assets/images/img7.webp") center/cover;
}

.projects-intro {
  background: var(--light);
}

.project-showcase {
  background: white;
}

.project-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 55px;
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  align-items: stretch; /* keeps both sides equal */
}

.project-feature-img {
  height: 380px; /* controls size */
  overflow: hidden;
}

.project-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-feature-content {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}

.project-tag {
  display: inline-block;
  width: fit-content;
  background: var(--blue);
  color: white;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.project-feature-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 18px;
}

.project-feature-content p {
  color: var(--muted);
  margin-bottom: 20px;
}

.project-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-meta li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  color: var(--muted);
}

.project-meta strong {
  color: var(--dark);
}

.more-projects {
  background: var(--light);
}

@media (max-width: 900px) {
  .project-feature,
  .reverse-feature {
    grid-template-columns: 1fr;
  }

  .reverse-feature .project-feature-content {
    order: 2;
  }

  .reverse-feature .project-feature-img {
    order: 1;
  }

  .project-feature-content {
    padding: 34px;
  }

  .project-feature-img img {
    min-height: 300px;
  }
}

/* GALLERY PAGE */

.gallery-hero {
  background: url("assets/images/img8.webp") center/cover;
}

.gallery-intro {
  background: var(--light);
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* VIDEOS */
.video-section {
  background: var(--light);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-grid video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* MOBILE */
@media (max-width: 900px) {
  .gallery-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-content video {
  background: black;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: transparent;
  border: none;
  color: white;
  font-size: 44px;
  cursor: pointer;
  line-height: 1;
}

/* VIDEO PREVIEW CARDS */

.video-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: #000;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.video-card:hover video {
  transform: scale(1.05);
  filter: brightness(0.75);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

/* triangle */
.play-icon::before {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #0089cf;
  margin-left: 4px;
}

.video-card:hover .play-icon {
  transform: scale(1.1);
  background: white;
}

.play-icon {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 137, 207, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 137, 207, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 137, 207, 0);
  }
}

/* CONTACT PAGE */

.contact-hero {
  background: url("assets/images/img17.webp") center/cover;
}

.contact-page {
  background: var(--light);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.contact-info-panel,
.contact-form-panel {
  background: white;
  padding: 42px;
  box-shadow: var(--shadow);
}

.contact-info-panel {
  border-left: 8px solid var(--blue);
}

.contact-info-panel h2,
.contact-form-panel h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info-panel > p {
  color: var(--muted);
  margin-bottom: 30px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-item {
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.contact-info-item h3 {
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-item span {
  color: var(--muted);
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group label {
  font-weight: 800;
  color: var(--dark);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 137, 207, 0.12);
}

.form-btn {
  background: var(--blue);
  color: white;
  border: none;
  padding: 15px 22px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.form-btn:hover {
  background: var(--blue-dark);
}

.form-message {
  font-weight: 700;
  color: var(--blue);
}

.map-section {
  padding: 80px 0;
  background: white;
}

.map-placeholder {
  background:
    linear-gradient(135deg, rgba(0, 137, 207, 0.92), rgba(0, 111, 168, 0.92)),
    url("assets/images/img14.webp") center/cover;
  min-height: 320px;
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
  box-shadow: var(--shadow);
}

.map-placeholder h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.map-placeholder p {
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px;
  }
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }
}

/* FINAL MOBILE MENU FIX */

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  position: relative;
  z-index: 2000;
  padding: 0;
}

.menu-btn span {
  position: absolute;
  left: 8px;
  width: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
  transition: 0.3s ease;
}

.menu-btn span:nth-child(1) {
  top: 13px;
}

.menu-btn span:nth-child(2) {
  top: 21px;
}

.menu-btn span:nth-child(3) {
  top: 29px;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 21px;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 21px;
}

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    padding: 26px 5%;
    display: none;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
  }
}

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .mobile-menu {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    padding: 26px 24px;
    box-sizing: border-box;
    flex-direction: column;
    gap: 20px;
    overflow-x: hidden;
    z-index: 1500;
  }

  .mobile-menu.active {
    display: flex;
  }
}

html,
body {
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .hero::after,
  .page-hero::after,
  .section-image.angled::before {
    display: none !important;
  }
}

.brand img {
  height: 68px; /* slightly bigger */
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.brand img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .brand img {
    height: 56px;
    padding: 6px 10px;
  }
}
