/* =========================
   CSS VARIABLES
========================= */
:root {
  --bg:        #0a0a0a;
  --surface-1: #111111;
  --surface-2: #161616;
  --surface-3: #1a1a1a;
  --accent:    #ff6a00;
  --accent-2:  #ff8c00;
  --text:      #ffffff;
  --text-muted: #b8b8b8;
  --text-dim:  #777777;
  --border:    rgba(255,255,255,0.08);
  --border-accent: rgba(255,106,0,0.35);
  --radius:    12px;
  --radius-lg: 20px;
}

/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

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

a {
  text-decoration: none;
}

/* =========================
   TYPOGRAPHY UTILITIES
========================= */
.section-kicker {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 8px;
  max-width: 560px;
}

/* =========================
   NAVBAR
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #ded11a 0%, #ff7b00 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: linear-gradient(90deg, rgba(222,209,26,0.45) 0%, rgba(255,123,0,0.45) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 96px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

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

.nav-links a {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.quote-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-1px);
}

.quote-btn span {
  font-size: 1.2rem;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  background: none;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hamburger:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.85);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.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 */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 16px 0 24px;
}

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

.mobile-menu a {
  padding: 14px 5%;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.mobile-menu .mobile-quote-link {
  margin: 16px 5% 0;
  padding: 14px 20px;
  border: 1px solid var(--accent) !important;
  border-radius: var(--radius);
  color: var(--accent) !important;
  font-weight: 600;
  text-align: center;
  background: none;
}

.mobile-menu .mobile-quote-link:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .quote-btn  { display: none; }
  .hamburger  { display: flex; }
}

@media (max-width: 900px) {
  .nav { height: 80px; }
  .logo { height: 60px; }
}

@media (max-width: 480px) {
  .nav { height: 68px; }
  .logo { height: 50px; }
}

/* Offset anchor links below fixed navbar */
section[id],
div[id] {
  scroll-margin-top: 96px;
}

@media (max-width: 900px) {
  section[id], div[id] { scroll-margin-top: 80px; }
}

@media (max-width: 480px) {
  section[id], div[id] { scroll-margin-top: 68px; }
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, #000 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 120px 0 100px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero-content {
  max-width: 600px;
}

.hero-kicker {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 22px;
  background: linear-gradient(160deg, #ffffff 30%, #d0d0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}

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

.btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  padding: 14px 32px;
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-block;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(255,106,0,0.3);
  font-family: 'Inter', Arial, sans-serif;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,106,0,0.45);
}

.btn-outline {
  padding: 14px 32px;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-block;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-2px);
}

.hero-crane {
  flex-shrink: 0;
  width: clamp(220px, 30vw, 420px);
  opacity: 0.9;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}

.hero-crane img {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .hero-crane { display: none; }

  .hero-inner {
    padding: 100px 0 80px;
  }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 3rem; }
  .hero-sub { font-size: 1rem; }
}

/* =========================
   STATS BAR
========================= */
.stats-bar {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 48px;
  gap: 4px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .stat-divider { display: none; }
  .stat-item { padding: 22px 28px; }
  .stats-grid { gap: 0; justify-content: space-around; }
}

@media (max-width: 400px) {
  .stat-number { font-size: 1.8rem; }
  .stat-item { padding: 20px 16px; }
}

/* =========================
   GENERIC SECTION
========================= */
.section {
  padding: 110px 0;
}

.section h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 6px;
}

@media (max-width: 800px) {
  .section { padding: 80px 0; }
}

/* =========================
   ABOUT SECTION
========================= */
.about-full {
  position: relative;
  height: 250vh;
  background: #000;
}

.about-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  display: none;
}

.about-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: opacity, transform;
  transition: opacity 0.6s ease;
}

.about-bg-img-1 {
  z-index: 1;
  opacity: 1;
}

.about-bg-img-2 {
  z-index: 2;
  opacity: 0;
}

.about-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.38) 40%,
    rgba(0,0,0,0.68) 100%
  );
  pointer-events: none;
}

.about-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 4;
  display: none;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.about-content .container {
  max-width: 640px;
  pointer-events: auto;
}

.about-content h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.about-content p {
  color: #cccccc;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 520px;
}

.about-cta {
  margin-top: 28px;
  display: inline-block;
}

@media (max-width: 900px) {
  .about-full {
    height: auto;
    min-height: 100vh;
  }

  .about-bg {
    display: block;
    position: absolute;
    height: 100%;
  }

  .about-bg-img-1 {
    opacity: 1;
  }

  .about-content {
    display: flex;
    pointer-events: auto;
    position: relative;
    height: auto;
    min-height: 100vh;
    padding: 90px 0;
  }

  .about-content h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .about-content {
    padding: 80px 0 60px;
  }

  .about-content h2 {
    font-size: 2.1rem;
  }

  .about-content p {
    font-size: 0.96rem;
  }
}

/* =========================
   SERVICES FEATURE CAROUSEL
========================= */
.services-section {
  overflow: hidden;
  position: relative;
  z-index: 20;
  background: var(--bg);
}

.services-intro {
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 1.02rem;
}

.services-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
}

.services-carousel {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.services-carousel.dragging {
  cursor: grabbing;
}

.services-track {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  will-change: transform;
  transition: transform 0.45s ease;
}

.service-feature-card {
  flex: 0 0 220px;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #1e1e1e 0%, #141414 100%);
  border: 1px solid var(--border);
  opacity: 0.5;
  transform: scale(0.9) rotate(-4deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition:
    transform 0.35s ease,
    opacity  0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.service-feature-card:nth-child(even) {
  transform: scale(0.9) rotate(4deg);
}

.service-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  pointer-events: none;
}

.service-feature-card.active {
  transform: scale(1.02) translateY(-6px) rotate(0deg);
  opacity: 1;
  border-color: var(--border-accent);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  z-index: 2;
}

.service-feature-card.active img {
  filter: brightness(0.75);
}

.service-feature-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(
    to top,
    rgba(30,30,30,0.95),
    rgba(100,100,100,0.3)
  );
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}

.service-feature-overlay span {
  display: block;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.service-feature-overlay h3 {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.services-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--surface-3);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  z-index: 3;
}

.services-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .service-feature-card { flex: 0 0 190px; height: 290px; }
}

@media (max-width: 700px) {
  .service-feature-card { flex: 0 0 160px; height: 250px; }
  .services-arrow { width: 44px; height: 44px; font-size: 1rem; }
  .service-feature-overlay h3 { font-size: 0.86rem; }
}

@media (max-width: 480px) {
  .service-feature-card { flex: 0 0 140px; height: 220px; }
  .services-carousel-wrap { gap: 8px; }
  .service-feature-overlay { padding: 10px; left: 8px; right: 8px; bottom: 8px; }
  .service-feature-overlay h3 { font-size: 0.82rem; }
}

/* =========================
   PROJECTS SECTION
========================= */
.projects-section {
  position: relative;
  z-index: 20;
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
  margin-top: 48px;
}

.project-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  border-color: var(--border-accent);
}

.project-card--featured {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .project-card--featured {
    grid-column: span 1;
  }
}

.project-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-accent-line {
  opacity: 1;
}

.project-number {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.project-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}

.project-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags span {
  padding: 5px 12px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* =========================
   STAFF CAROUSEL
========================= */
.staff-section {
  overflow: hidden;
  position: relative;
  z-index: 20;
  background: var(--bg);
}

.staff-intro {
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 1.02rem;
}

.staff-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0 10px;
}

.staff-carousel {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  padding-top: 12px;
}

.staff-carousel.dragging {
  cursor: grabbing;
}

.staff-track {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 6px;
  padding-bottom: 6px;
  will-change: transform;
}

.staff-card {
  flex: 0 0 160px;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--surface-3);
  border: 1px solid var(--border);
  opacity: 0.65;
  transform: scale(0.92);
  transition:
    transform 0.35s ease,
    opacity   0.35s ease,
    border-color 0.35s ease;
}

.staff-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
  pointer-events: none;
}

.staff-card.active {
  transform: translateY(-5px) scale(1.05);
  opacity: 1;
  border-color: var(--border-accent);
  z-index: 2;
}

.staff-card.active img {
  filter: grayscale(0%);
}

.staff-overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(
    to top,
    rgba(40,40,40,0.95),
    rgba(100,100,100,0.35)
  );
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
}

.staff-overlay h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
  line-height: 1.2;
}

.staff-overlay p {
  font-size: 0.75rem;
  color: #d0d0d0;
  line-height: 1.25;
}

.staff-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--surface-3);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  z-index: 3;
}

.staff-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .staff-card { flex: 0 0 140px; height: 250px; }
}

@media (max-width: 700px) {
  .staff-carousel-wrap { gap: 8px; padding-top: 14px; }
  .staff-carousel { padding-top: 10px; }
  .staff-card { flex: 0 0 126px; height: 225px; }
  .staff-arrow { width: 44px; height: 44px; font-size: 1rem; }
  .staff-overlay h3 { font-size: 0.82rem; }
  .staff-overlay p  { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .staff-card { flex: 0 0 112px; height: 200px; }
  .staff-carousel-wrap { gap: 6px; }
}

/* =========================
   CLIENTS CAROUSEL
========================= */
.clients-section {
  overflow: hidden;
  position: relative;
  z-index: 20;
  background: var(--bg);
}

.clients-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0 10px;
}

.clients-carousel {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  padding-top: 12px;
}

.clients-carousel.dragging {
  cursor: grabbing;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 6px;
  padding-bottom: 6px;
  will-change: transform;
}

.client-card {
  flex: 0 0 220px;
  height: 140px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  opacity: 0.65;
  transform: scale(0.92);
  transition:
    transform 0.35s ease,
    opacity   0.35s ease,
    border-color 0.35s ease;
}

.client-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
  pointer-events: none;
}

.client-card.active {
  transform: translateY(-5px) scale(1.05);
  opacity: 1;
  border-color: var(--border-accent);
  z-index: 2;
}

.client-card.active img {
  filter: grayscale(0%);
}

.clients-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--surface-3);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  z-index: 3;
}

.clients-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .client-card { flex: 0 0 190px; height: 120px; }
}

@media (max-width: 700px) {
  .clients-carousel-wrap { gap: 8px; padding-top: 14px; }
  .clients-carousel { padding-top: 10px; }
  .client-card { flex: 0 0 160px; height: 105px; }
  .client-card img { padding: 16px; }
  .clients-arrow { width: 44px; height: 44px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .client-card { flex: 0 0 140px; height: 92px; }
  .clients-carousel-wrap { gap: 6px; }
}

/* =========================
   REVIEWS SECTION
========================= */
.reviews-section {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 20;
  overflow: hidden;
}

.reviews-google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 48px;
  flex-wrap: wrap;
}

.reviews-rating {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.reviews-stars-row {
  display: flex;
  gap: 3px;
  color: #f9a825;
  font-size: 1.2rem;
  line-height: 1;
}

.reviews-count {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  border-left: 1px solid var(--border);
  padding-left: 10px;
}

.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.reviews-carousel {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.reviews-carousel.dragging {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  will-change: transform;
  transition: transform 0.45s ease;
}

/* Individual review card */
.review-card {
  flex: 0 0 clamp(280px, 58vw, 640px);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0.45;
  transform: scale(0.92);
  transition:
    transform 0.35s ease,
    opacity   0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.review-card.active {
  opacity: 1;
  transform: scale(1.02) translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  z-index: 2;
}

.review-quote-mark {
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent);
  font-family: Georgia, serif;
  font-weight: 700;
  opacity: 0.55;
}

.review-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  flex-wrap: wrap;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.review-author-info strong {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text);
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.review-stars-small {
  color: #f9a825;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-left: auto;
}

/* Arrow buttons */
.reviews-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface-3);
  color: #fff;
  border: 1px solid var(--border);
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  z-index: 3;
}

.reviews-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}

/* Dot navigation */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.review-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 clamp(240px, 72vw, 480px);
    padding: 28px 24px;
  }

  .review-text { font-size: 1rem; }
  .reviews-arrow { width: 42px; height: 42px; }
  .reviews-carousel-wrap { gap: 10px; }
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 82vw;
    padding: 22px 18px;
  }

  .reviews-arrow { width: 38px; height: 38px; font-size: 0.95rem; }

  .review-stars-small {
    margin-left: 0;
    width: 100%;
  }
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  position: relative;
  z-index: 20;
  background: linear-gradient(to bottom, #090909 0%, var(--surface-1) 100%);
  border-top: 1px solid var(--border);
}

/* Top row: info + map side by side */
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: stretch;
  margin-bottom: 64px;
}

.contact-info {
  padding-top: 8px;
}

/* Google Maps embed */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 300px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(25%) contrast(1.05);
}

/* Form section below */
.contact-form-wrap {
  border-top: 1px solid var(--border);
  padding-top: 52px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 40px;
}

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

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-detail a {
  color: inherit;
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

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

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

.form input,
.form textarea {
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Inter', Arial, sans-serif;
  transition: border-color 0.25s ease, background 0.25s ease;
  width: 100%;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
  max-height: 300px;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

@media (max-width: 960px) {
  .contact-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .contact-map {
    height: 300px;
    min-height: unset;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FOOTER
========================= */
footer {
  position: relative;
  z-index: 20;
  background: #060606;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 220px;
  margin-top: 14px;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  border: 1px solid var(--border);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.footer-social-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer-social-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.footer-social-ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: transparent;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: var(--text-dim);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--text);
}

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 0 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* =========================
   GLOBAL SMALL-SCREEN FIXES
========================= */

/* Prevent iOS from zooming on input focus */
@media (max-width: 768px) {
  .form input,
  .form textarea,
  .form select {
    font-size: 16px;
  }
}

/* Hero — tighter padding on small phones */
@media (max-width: 600px) {
  .hero-inner {
    padding: 90px 0 70px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 80px 0 60px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .btn,
  .btn-outline {
    padding: 13px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-inner {
    padding: 70px 0 50px;
  }
}

/* Stats — 2×2 grid on very narrow screens */
@media (max-width: 480px) {
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 20px 16px;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* Section padding on small phones */
@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }
}

@media (max-width: 360px) {
  .section {
    padding: 52px 0;
  }

  .section h2 {
    font-size: 2rem;
  }
}

/* Projects grid — single column on very small screens */
@media (max-width: 400px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .project-card {
    padding: 24px 20px 20px;
  }
}

/* Contact — better spacing on small phones */
@media (max-width: 480px) {
  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-top {
    gap: 28px;
    margin-bottom: 36px;
  }

  .contact-map {
    height: 240px;
    min-height: unset;
  }

  .contact-form-wrap {
    padding-top: 36px;
  }
}

/* Footer — reduce padding on small phones */
@media (max-width: 480px) {
  .footer-top {
    padding: 40px 0 28px;
    gap: 22px;
  }

  .footer-logo {
    height: 40px;
  }
}

/* Ensure no horizontal overflow on any screen */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Better tap highlight on mobile */
@media (hover: none) {
  .btn:hover,
  .btn-outline:hover,
  .quote-btn:hover,
  .nav-links a:hover {
    transform: none;
  }
}

/* =========================
   SOCIAL FLOAT WIDGET
========================= */
.social-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-float.is-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

/* Social icon links — hidden by default */
.social-float-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px) scale(0.8);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

.social-float-fb {
  background: #1877f2;
}

.social-float-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-float-link:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  transform: translateY(12px) scale(0.8); /* overridden when open */
}

/* Open state */
.social-float.open .social-float-link {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.social-float.open .social-float-link:hover {
  transform: translateY(-2px) scale(1.08);
}

/* Stagger animation */
.social-float.open .social-float-fb {
  transition-delay: 0.06s;
}

.social-float.open .social-float-ig {
  transition-delay: 0s;
}

/* Toggle button */
.social-float-toggle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,106,0,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.social-float-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(255,106,0,0.55);
}

/* Icon swap */
.social-float-toggle .icon-share,
.social-float-toggle .icon-close {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-float-toggle .icon-close {
  opacity: 0;
  transform: rotate(-45deg);
}

.social-float.open .social-float-toggle .icon-share {
  opacity: 0;
  transform: rotate(45deg);
}

.social-float.open .social-float-toggle .icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

@media (max-width: 480px) {
  .social-float {
    right: 18px;
    gap: 10px;
  }

  .social-float-link {
    width: 44px;
    height: 44px;
  }

  .social-float-toggle {
    width: 50px;
    height: 50px;
  }
}

/* =========================
   MOBILE STICKY CTA
========================= */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 900px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .mobile-cta-bar.is-hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
  }

  .mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 10px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .mobile-cta-quote {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #fff;
  }

  /* Keep the social float button clear of the CTA bar */
  .social-float {
    bottom: calc(78px + env(safe-area-inset-bottom));
  }
}

/* =========================
   FORM FEEDBACK MESSAGE
========================= */
.form-message {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-message--success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.form-message--error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* =========================
   UTILITY PAGES (404, Privacy Policy)
========================= */
.utility-header {
  padding: 20px 0;
  background: linear-gradient(90deg, #ded11a 0%, #ff7b00 100%);
}

.utility-header .container {
  display: flex;
  align-items: center;
}

.utility-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.utility-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  margin-top: 40px;
}

.utility-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.utility-footer p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.utility-footer a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.utility-footer a:hover {
  color: var(--text);
}

/* 404 page */
.error-page {
  min-height: calc(100vh - 250px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

.error-code {
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 10px 0 14px;
}

.error-page p {
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Privacy policy page */
.legal-page {
  padding: 64px 0 40px;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 40px;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 36px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 14px 20px;
}

.legal-content a {
  color: var(--accent-2);
}

.legal-content a:hover {
  text-decoration: underline;
}
