:root {
  --navy: #061d3d;
  --navy2: #071a33;
  --orange: #f27609;
  --text: #07172f;
  --muted: #5c6473;
  --white: #fff;
  --line: #e8edf4;
  --shadow: 0 10px 30px rgba(8, 27, 57, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}

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

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

.container {
  width: min(1130px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  z-index: 100;
  position: relative;
}

.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.topbar-inner {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: 0.25s;
}

.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
}

.socials svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  stroke: none;
  opacity: 0.86;
}

.navbar {
  height: 82px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(7, 29, 61, 0.09);
  position: relative;
  z-index: 20;
}

body.has-fixed-navbar {
  padding-top: 82px;
}

body.has-fixed-navbar .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 120;
}

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

.brand img {
  width: 150px;
  height: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 33px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #151f31;
}

.nav-menu a {
  position: relative;
  padding: 32px 0;
}

.nav-menu a.active:after,
.nav-menu a:hover:after {
  content: '';
  height: 3px;
  width: 28px;
  background: var(--orange);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 23px;
}

.nav-menu small {
  font-size: 12px;
}

.quote-btn {
  background: var(--orange);
  color: #fff;
  padding: 16px 22px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(242, 118, 9, 0.25);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

.hero {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 64px 0 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 16, 36, 0.98) 0%,
      rgba(3, 19, 41, 0.88) 38%,
      rgba(3, 19, 41, 0.55) 66%,
      rgba(3, 19, 41, 0.35) 100%
    ),
    url('assets/hero-building.jpg') center right / cover no-repeat;
}

.hero-inner {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  width: min(590px, 100%);
  color: #fff;
  padding-top: 24px;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 15px;
  margin-bottom: 12px;
}

.hero h1 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 52px;
  line-height: 1.09;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--orange);
}

.hero-text {
  max-width: 475px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 27px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  height: 50px;
  padding: 0 28px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.15px;
  transition: 0.25s;
}

.btn svg {
  width: 18px;
  height: 18px;
}

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

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.03);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  min-width: 230px;
}

.btn-light {
  background: #fff;
  border: 2px solid var(--navy);
  color: var(--navy);
  min-width: 230px;
}

.btn:hover {
  transform: translateY(-2px);
}

.experience-card {
  align-self: flex-end;
  margin-bottom: 18px;
  background: var(--navy);
  color: #fff;
  width: 180px;
  height: 145px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.experience-card span {
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.experience-card strong {
  font-size: 43px;
  line-height: 1;
  font-weight: 900;
  margin: 3px 0 5px;
}

.experience-card small {
  font-size: 12px;
  font-weight: 800;
}

.experience-card em {
  display: block;
  width: 44px;
  height: 4px;
  background: var(--orange);
  border-radius: 5px;
  margin-top: 13px;
}

.section {
  padding: 72px 0 78px;
  margin: 28px 0;
}

#about,
#services,
#projects,
#gallery,
#reviews,
#contact {
  scroll-margin-top: 96px;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.section-title span {
  display: block;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.section-title h2 {
  font-size: 29px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: var(--navy);
}

.section-title.compact {
  margin-bottom: 34px;
}

.services-slider {
  position: relative;
  margin-top: 22px;
  --services-gap: 9px;
}

.services-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.services-viewport.is-dragging {
  cursor: grabbing;
}

.service-grid {
  display: flex;
  gap: var(--services-gap);
  transition: transform 0.35s ease;
  will-change: transform;
}

.service-card {
  flex: 0 0 auto;
  height: 135px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 3px 8px rgba(7, 29, 61, 0.04);
}

.service-card svg {
  width: 55px;
  height: 55px;
  stroke: var(--navy);
  stroke-width: 1.9;
  fill: none;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #111b30;
}

.service-slider-arrow {
  width: 42px;
  height: 42px;
  border-color: rgba(6, 29, 61, 0.12);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.service-slider-arrow:disabled:hover {
  border-color: rgba(6, 29, 61, 0.12);
}

.service-slider-arrow-left {
  left: -18px;
}

.service-slider-arrow-right {
  right: -18px;
}

.service-slider-dots {
  display: none;
}

.service-slider-dots .slider-dot {
  background: rgba(6, 29, 61, 0.2);
}

.service-slider-dots .slider-dot.active {
  background: var(--orange);
}

.center {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.projects {
  padding-top: 72px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.959), rgba(255, 255, 255, 0.795)),
    url('assets/projects-bg.jpg') center / cover no-repeat;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 29, 61, 0.08);
  border: 1px solid rgba(6, 29, 61, 0.06);
}

.project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.project-info {
  padding: 16px 16px 18px;
}

.project-info h3 {
  font-size: 16px;
  line-height: 1.25;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 6px;
}

.project-info p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 600;
}

.stats {
  background:
    linear-gradient(90deg, rgba(4, 21, 47, 0.97), rgba(5, 26, 59, 0.92)),
    url('assets/hero-building.jpg') center / cover no-repeat;
  color: #fff;
  padding: 34px 0;
  margin: 34px 0;
}

.stats-grid {
  height: 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-content: center;
  justify-content: center;
  column-gap: 18px;
  position: relative;
}

.stat:not(:last-child):after {
  content: '';
  position: absolute;
  right: 0;
  top: 24px;
  height: 54px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.stat svg {
  grid-row: 1 / 3;
  width: 51px;
  height: 51px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  align-self: center;
}

.stat strong {
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.stat span {
  font-size: 12px;
  font-weight: 700;
  align-self: start;
}

.about {
  padding: 82px 0 90px;
  margin: 34px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  padding-left: 60px;
}

.about-media > img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.play-btn {
  position: absolute;
  left: 244px;
  top: 95px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: rgba(5, 29, 61, 0.22);
  color: #fff;
  font-size: 28px;
  display: grid;
  place-items: center;
}

.play-btn span {
  transform: translateX(3px);
}

.since-badge {
  position: absolute;
  left: 0;
  bottom: -46px;
  width: 112px;
  height: 120px;
  background: var(--orange);
  color: #fff;
  border-radius: 3px;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 9px 20px rgba(242, 118, 9, 0.2);
}

.since-badge span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
}

.since-badge strong {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.since-badge small {
  text-transform: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 5px;
}

.section-title.left {
  text-align: left;
  margin-bottom: 22px;
}

.about-content p {
  font-size: 14px;
  line-height: 1.75;
  color: #252d3d;
  margin-bottom: 13px;
  max-width: 565px;
}

.features {
  display: flex;
  gap: 45px;
  margin: 32px 0 38px;
}

.features div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.features svg {
  width: 38px;
  height: 38px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.8;
}

.features span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #18243a;
}

.reviews-section {
  padding: 82px 0 90px;
  margin: 34px 0;
  background:
    linear-gradient(180deg, rgba(4, 21, 47, 0.9) 0%, rgba(4, 21, 47, 0.78) 100%),
    url('assets/review-bg.jpg') center / cover no-repeat;
}

.reviews-section .section-title h2 {
  color: #fff;
}

.reviews-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  --reviews-gap: 18px;
}

.reviews-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.reviews-viewport.is-dragging {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: var(--reviews-gap);
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 auto;
  min-height: 248px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(6, 29, 61, 0.06);
  user-select: none;
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(242, 118, 9, 0.12);
  color: var(--orange);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.review-person h3 {
  font-size: 15px;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 3px;
}

.review-person p {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.review-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #dfe6f1;
  background: #fff;
  color: #3c4043;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.review-stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card > p {
  font-size: 14px;
  line-height: 1.75;
  color: #293246;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(6, 29, 61, 0.08);
  cursor: pointer;
  transition: 0.25s;
}

.slider-arrow span {
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.slider-arrow:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.slider-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.slider-arrow:disabled:hover {
  background: #fff;
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.26);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.25s;
}

.slider-dot.active {
  width: 34px;
  background: var(--orange);
}

.gallery-section {
  padding: 82px 0 90px;
  margin: 34px 0;
  background: #f8fafc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  grid-auto-rows: 185px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 29, 61, 0.08);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  background: rgba(3, 14, 30, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 300;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox-dialog {
  width: min(980px, calc(100vw - 160px));
  max-height: calc(100vh - 96px);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox-image {
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  background: #edf2f8;
}

.gallery-lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px 18px;
}

.gallery-lightbox-caption {
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 600;
}

.gallery-lightbox-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.gallery-lightbox-arrow,
.gallery-lightbox-close {
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.gallery-lightbox-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.gallery-lightbox-arrow span {
  font-size: 34px;
  line-height: 1;
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.contact-section {
  padding: 82px 0 90px;
  margin: 34px 0;
  background:
    linear-gradient(0deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.96)),
    url('assets/projects-bg.jpg') center / cover no-repeat;
}

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

.contact-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #293246;
  max-width: 560px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 8px 20px rgba(6, 29, 61, 0.06);
}

.contact-card svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card h3 {
  font-size: 15px;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.contact-form-wrap {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(6, 29, 61, 0.08);
  box-shadow: 0 12px 28px rgba(6, 29, 61, 0.08);
  padding: 26px 24px;
}

.contact-form h3 {
  font-size: 24px;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 18px;
  min-height: 132px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b7484;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(242, 118, 9, 0.6);
  box-shadow: 0 0 0 4px rgba(242, 118, 9, 0.08);
}

.site-footer {
  margin-top: 34px;
  background: var(--navy);
  color: #fff;
}

.footer-main {
  background:
    linear-gradient(180deg, rgba(6, 29, 61, 0.98), rgba(4, 22, 46, 0.98)),
    url('assets/projects-bg.jpg') center / cover no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.9fr 1.2fr;
  gap: 34px;
  padding: 74px 0 68px;
}

.footer-col h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 170px;
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.85;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: 0.25s;
}

.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
  opacity: 0.88;
}

.footer-links,
.footer-contact-list {
  list-style: none;
}

.footer-links li + li,
.footer-contact-list li + li {
  margin-top: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
  transition: 0.25s;
}

.footer-links a:hover,
.footer-contact-list a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 15, 31, 0.98);
}

.footer-bottom-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.7;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 220;
  height: 56px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
  transition: 0.25s;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.34);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
  opacity: 1;
}

.whatsapp-float span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1050px) {
  .container {
    width: min(100% - 34px, 1130px);
  }

  .topbar-inner {
    gap: 14px;
    font-size: 11px;
  }

  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 18px 16px;
    border-radius: 10px;
    border: 1px solid rgba(6, 29, 61, 0.08);
    box-shadow: 0 16px 32px rgba(7, 29, 61, 0.12);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.2px;
    line-height: 1.3;
  }

  .nav-menu a.active:after,
  .nav-menu a:hover:after {
    bottom: 7px;
    left: 0;
    transform: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }

  .quote-btn {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding: 74px 0 86px;
  }

  .hero-inner {
    min-height: auto;
    display: block;
  }

  .hero-content {
    width: 100%;
    max-width: 640px;
    padding-top: 0;
  }

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

  .hero-text {
    max-width: 560px;
  }

  .hero-actions {
    gap: 16px;
  }

  .experience-card {
    margin: 38px 0 0 auto;
    align-self: auto;
  }

  .service-grid {
    --services-gap: 10px;
  }

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

  .stats-grid {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 0;
  }

  .stat {
    padding: 18px 0;
  }

  .stat:after {
    display: none;
  }

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

  .about-media {
    padding-left: 55px;
  }

  .about-media > img {
    width: 100%;
    height: 300px;
  }

  .play-btn {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .reviews-slider {
    gap: 14px;
    --reviews-gap: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }

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

  .gallery-card-wide,
  .gallery-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 60px 0 54px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 92px;
  }

  .topbar {
    display: none;
  }

  .navbar,
  .nav-inner {
    height: 74px;
  }

  body.has-fixed-navbar {
    padding-top: 74px;
  }

  .brand img {
    width: 128px;
  }

  .nav-menu {
    top: 74px;
    left: 14px;
    right: 14px;
    padding: 12px 16px 14px;
  }

  .nav-menu a {
    padding: 8px 0;
    font-size: 12px;
  }

  .nav-menu small {
    font-size: 10px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 68px 0 72px;
  }

  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(2, 16, 36, 0.95) 0%,
        rgba(3, 19, 41, 0.82) 42%,
        rgba(3, 19, 41, 0.72) 100%
      ),
      url('assets/hero-building.jpg') center / cover no-repeat;
  }

  .hero-inner {
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
    padding-top: 0;
    order: 1;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.14;
    letter-spacing: 0.6px;
  }

  .hero-text {
    max-width: none;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .experience-card {
    width: 164px;
    height: 136px;
    margin: 28px auto 0;
    order: 2;
  }

  .section {
    padding: 54px 0 60px;
    margin: 22px 0;
  }

  #about,
  #services,
  #projects,
  #gallery,
  #reviews,
  #contact {
    scroll-margin-top: 92px;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .service-grid {
    --services-gap: 10px;
  }

  .service-slider-arrow {
    display: none;
  }

  .service-slider-dots {
    display: flex;
    margin-top: 18px;
  }

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

  .projects {
    padding-top: 54px;
  }

  .project-card img {
    height: 170px;
  }

  .project-info {
    padding: 14px 12px 16px;
  }

  .project-info h3 {
    font-size: 14px;
  }

  .project-info p {
    font-size: 12px;
  }

  .stats {
    padding: 26px 0;
    margin: 22px 0;
  }

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

  .about {
    padding: 54px 0 88px;
    margin: 22px 0;
  }

  .about-media {
    padding-left: 0;
  }

  .since-badge {
    left: 12px;
    bottom: -50px;
  }

  .features {
    flex-direction: column;
    gap: 18px;
  }

  .reviews-section {
    padding: 54px 0 62px;
    margin: 22px 0;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
    gap: 14px;
    --reviews-gap: 0;
  }

  .reviews-viewport {
    grid-column: 1 / -1;
    order: 1;
    width: 100%;
    cursor: grab;
  }

  .reviews-section .slider-arrow,
  .reviews-section .slider-arrow-left,
  .reviews-section .slider-arrow-right {
    display: none !important;
  }

  .review-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .gallery-section {
    padding: 54px 0 62px;
    margin: 22px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
    gap: 14px;
  }

  .gallery-lightbox {
    gap: 10px;
    padding: 18px 12px;
  }

  .gallery-lightbox-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 70px);
    border-radius: 14px;
  }

  .gallery-lightbox-image {
    max-height: calc(100vh - 150px);
  }

  .gallery-lightbox-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px 14px 16px;
  }

  .gallery-lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox-arrow span {
    font-size: 28px;
  }

  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .contact-section {
    padding: 54px 0 62px;
    margin: 22px 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .contact-form-wrap {
    padding: 22px 18px;
  }

  .contact-form h3 {
    font-size: 21px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
    padding: 0 18px;
  }

  .center .btn,
  .about-content .btn {
    width: auto;
  }

  .site-footer {
    margin-top: 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    height: 50px;
    padding: 0 14px;
    gap: 8px;
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }

  .whatsapp-float span {
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 50px 0 44px;
  }

  .footer-col h3 {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-brand p,
  .footer-links a,
  .footer-contact-list li {
    font-size: 13px;
  }

  .footer-bottom-inner {
    min-height: 72px;
    padding: 12px 0;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 12px;
  }

  .container {
    width: calc(100% - 28px);
  }
}
