/* ==========================================================================
   M Vision — AV Production & Event Solutions
   Core stylesheet
   ========================================================================== */

:root {
  --black: #05070a;
  --dark: #0b0e14;
  --dark-2: #12161f;
  --panel: #151a24;
  --line: rgba(255, 255, 255, 0.08);
  --text: #e9edf5;
  --muted: #94a0b4;
  --accent: #ff5b1e;
  /* signal orange */
  --accent-2: #00d4ff;
  /* electric cyan */
  --accent-grad: linear-gradient(135deg, #ff5b1e 0%, #ff2f8f 55%, #7a2bff 100%);
  --maxw: 1240px;
  --radius: 14px;
}

.text-red {
  color: #ff0000;
}

.text-yellow {
  color: #ffcc00;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
 /* Primary Design System Typography Stack */
  --font-display: 'Monument Extended', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: .01em;
}

.section-title {
  font-size: clamp(30px, 4.2vw, 52px);
  text-transform: uppercase;
  color: #fff;
}

.section-title .accent {
  color: var(--accent);
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
  line-height: 1.7;
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(255, 60, 60, .55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -6px rgba(255, 60, 60, .7);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ---------------- Top bar / marquee ---------------- */
.topbar {
  background: var(--dark);
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-links span i,
.topbar-links a i {
  color: var(--accent);
  margin-right: 6px;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
}

.topbar-social a {
  margin-left: 14px;
  font-size: 14px;
}

/* ---------------- Header / Nav ---------------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 10, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  letter-spacing: .02em;
}

.brand .mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(255, 60, 60, .6);
}

.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 14.5px;
  color: #dfe4ee;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width .25s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  /*margin-left: auto;*/
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: none !important;
}

.nav-phone i {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 100000 !important;
  padding: 6px;
  margin-left: 0;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(1.15);
  transform: scale(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, .55) 0%, rgba(5, 7, 10, .35) 35%, rgba(5, 7, 10, .92) 100%),
    linear-gradient(90deg, rgba(5, 7, 10, .85) 0%, rgba(5, 7, 10, .15) 45%, rgba(5, 7, 10, .6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  margin-bottom: 26px;
}

.hero-tag span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero h1 {
  font-size: clamp(42px, 7.2vw, 92px);
  color: #fff;
  text-transform: uppercase;
  max-width: 920px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, .5);
}

.hero h1 .grad {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  margin-top: 26px;
  font-size: 19px;
  color: #dfe3ec;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 52px;
  margin-top: 68px;
  flex-wrap: wrap;
}

.hero-stats .stat {
  min-width: 0;
}

.hero-stats .stat b {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
}

.hero-stats .stat b .accent {
  color: var(--accent);
}

.hero-stats .stat span {
  font-size: 100;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll {
  position: absolute;
  right: 36px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-scroll .line {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrolldown 1.8s infinite;
}

@keyframes scrolldown {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

/* ---------------- Marquee strip ---------------- */
.brand-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee {
  display: flex;
  width: 200%;
  animation: marquee 26s linear infinite;
}

.marquee-track {
  display: flex;
  gap: 70px;
  align-items: center;
  padding-right: 70px;
}

.marquee-track span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-track span i {
  color: var(--accent);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------------- Section base ---------------- */
section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* ---------------- About ---------------- */
.about {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-media .float-card {
  position: absolute;
  left: -24px;
  bottom: -30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 26px;
  width: 230px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
}

.about-media .float-card b {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  color: var(--accent);
  display: block;
}

.about-media .float-card>span {
  font-size: 18px;
  color: var(--muted);
}

.about-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #dfe3ec;
  font-size: 15.5px;
  line-height: 1.6;
}

.about-list li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: none;
  background: rgba(255, 91, 30, .14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

/* ---------------- Services ---------------- */
.services {
  background: var(--dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: linear-gradient(160deg, var(--panel), var(--dark-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 91, 30, .5);
}

.service-card .num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 46px;
  color: rgba(255, 255, 255, .05);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 12px 26px -8px rgba(255, 60, 60, .5);
}

.service-card h3 {
  font-size: 21px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card .tags span {
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #b9c1d1;
  letter-spacing: .03em;
}

.service-card a.more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 13px;
}

.service-card a.more i {
  color: var(--accent);
  transition: transform .2s;
}

.service-card a.more:hover i {
  transform: translateX(4px);
}

/* ---------------- Video Wall spotlight ---------------- */
.videowall {
  background: var(--black);
  position: relative;
}

.videowall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.videowall-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.videowall-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.videowall-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .75));
}

.videowall-media .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .05em;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}

.spec-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

.spec-item b {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  color: var(--accent);
}

.spec-item span {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ---------------- Portfolio / Gallery ---------------- */
.portfolio {
  background: var(--dark);
  border-top: 1px solid var(--line);
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 13px;
  transition: all .2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-grad);
  color: #fff;
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay small {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
}

.gallery-item .overlay strong {
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* ---------------- Process ---------------- */
.process {
  background: var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .25) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.process-item {
  position: relative;
  z-index: 1;
  text-align: left;
}

.process-item .step {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 22px;
}

.process-item h4 {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------------- Stats band ---------------- */
/* Base Desktop Grid */
.stats-band {
  background: var(--accent-grad);
  padding: 60px 0;
}

.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-band .stat {
  text-align: center;
}

/* Number Styling */
.stats-band .stat b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
  white-space: nowrap; /* Prevents text like 'K sq.ft' from breaking onto a new line */
}

/* Label Styling */
.stats-band .stat > span {
  display: block;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- Mobile Responsiveness --- */

/* Tablet (2x2 Grid) */
@media (max-width: 900px) {
  .stats-band .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}

/* Mobile Devices (1 Column or Compact 2 Columns) */
@media (max-width: 576px) {
  .stats-band {
    padding: 44px 0;
  }
  
  .stats-band .container {
    grid-template-columns: repeat(2, 1fr); /* Change to '1fr' if you prefer 1 stat per row */
    gap: 28px 12px;
  }

  .stats-band .stat b {
    font-size: 38px; /* Slightly scaled down to prevent horizontal overflow */
  }

  .stats-band .stat > span {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

/* ---------------- Testimonials ---------------- */
.testimonials {
  background: var(--dark);
  border-top: 1px solid var(--line);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.test-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.test-card .stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 3px;
}

.test-card p {
  color: #dfe3ec;
  font-size: 15px;
  line-height: 1.75;
}

.test-card .person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.test-card .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
}

.test-card .person b {
  display: block;
  color: #fff;
  font-size: 14.5px;
}

.test-card .person span {
  color: var(--muted);
  font-size: 12.5px;
}

/* ---------------- Clients logos ---------------- */
.clients {
  background: var(--black);
  padding-top: 80px;
  padding-bottom: 80px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.clients-grid .logo-chip {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 10px;
  text-align: center;
  color: var(--muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 14px;
  transition: all .2s;
}

.clients-grid .logo-chip:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 70px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: var(--accent-grad);
  opacity: .25;
  filter: blur(60px);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  color: #fff;
  text-transform: uppercase;
  max-width: 560px;
}

.cta-banner p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------------- Contact ---------------- */
.contact {
  background: var(--black);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-info-card h3 {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-row i {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex: none;
  background: rgba(255, 91, 30, .14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.info-row b {
  display: block;
  color: #fff;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.info-row span,
.info-row a {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 6px;
}

.map-embed iframe {
  width: 100%;
  height: 180px;
  border: 0;
  filter: invert(92%) hue-rotate(180deg) contrast(90%);
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
}

#formStatus {
  margin-top: 14px;
  font-size: 13.5px;
}

#formStatus.success {
  color: #4ade80;
}

#formStatus.error {
  color: #f87171;
}

/* ---------------- Footer ---------------- */
footer.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--line);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .2s;
}

.footer-social a:hover {
  background: var(--accent-grad);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--muted);
  font-size: 14px;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col .info-row {
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--muted);
}

.footer-bottom a:hover {
  color: #fff;
}

/* ---------------- Misc / helpers ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 26px -6px rgba(255, 60, 60, .6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  border: none;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.whatsapp-float {
  position: fixed;
  left: 26px;
  bottom: 26px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, .6);
}

/* Page hero (sub pages) */
.page-hero {
  padding: 170px 0 90px;
  background: linear-gradient(180deg, rgba(5, 7, 10, .4), rgba(5, 7, 10, .95)), var(--black);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-hero .breadcrumb {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
}

.page-hero .breadcrumb a {
  color: var(--muted);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent);
}

.page-hero .breadcrumb span {
  color: #fff;
}

/* Grid utility */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 88vh;
  max-width: 90vw;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 34px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------------- Mobile & Tablet Responsive Media Queries ---------------- */
@media (max-width: 980px) {
  header.site-header {
    background: #05070a;
  }

  .nav {
    height: auto;
    padding: 16px 20px;
    gap: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .brand .mark {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .nav-cta {
    margin-left: auto;
    gap: 12px;
  }

  .nav-cta .btn {
    padding: 10px 18px;
    font-size: 11.5px;
    height: 40px;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100000 !important;
    padding: 6px;
    margin-left: 10px;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #06080c !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 40px 24px !important;
    gap: 28px !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 99999 !important;
  }

  .nav-links.open {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav-links a {
    font-size: 22px !important;
    text-align: center;
  }

  .nav-phone {
    display: none !important;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 64px);
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .videowall-grid {
    grid-template-columns: 1fr;
  }

  .videowall-media img {
    height: 380px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 380px;
  }

  .about-media .float-card {
    left: 0;
    bottom: -20px;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item.big {
    grid-column: span 2;
    grid-row: span 1;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid::before {
    display: none;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  section {
    padding: 70px 0;
  }

  .stats-band .container {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band .stat span {
    font-size: 18px;
  }

  .cta-banner {
    padding: 40px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 6px 0;
  }

  .topbar .container {
    justify-content: center;
    gap: 8px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .topbar-links {
    font-size: 11px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
  }

  .topbar-social {
    display: none;
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .hero-tag {
    margin-top: 10px;
    margin-bottom: 24px;
  }

  .container {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 22px 18px !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .hero-stats .stat {
    min-width: 0 !important;
    max-width: 100% !important;
    padding-left: 2px;
  }

  .hero-stats .stat b {
    font-size: 23px !important;
    white-space: normal !important;
    display: block;
  }

  section {
    padding: 50px 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.big {
    grid-column: span 1;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 280px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form,
  .contact-info-card {
    padding: 24px 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}