/* ============================================================
   THE TECHXMAN MIAMI — Global Stylesheet
   ============================================================ */

:root {
  --bg-dark:        #04040f;
  --bg-section:     #06071a;
  --bg-card:        rgba(6, 10, 28, 0.75);
  --blue-bright:    #00b4ff;
  --blue-mid:       #0077d4;
  --blue-deep:      #003fa3;
  --blue-glow:      rgba(0, 180, 255, 0.25);
  --text-white:     #ffffff;
  --text-light:     #a0aec0;
  --text-muted:     #5a6780;
  --border-subtle:  rgba(0, 180, 255, 0.18);
  --border-hover:   rgba(0, 180, 255, 0.65);
  --gradient-blue:  linear-gradient(135deg, #00b4ff 0%, #0044cc 100%);
  --gradient-hero:  linear-gradient(180deg, #04040f 0%, #060a1e 60%, #04040f 100%);
  --glow-sm:        0 0 12px rgba(0, 180, 255, 0.35);
  --glow-md:        0 0 28px rgba(0, 180, 255, 0.45);
  --glow-lg:        0 0 55px rgba(0, 180, 255, 0.3);
  --font-head:      'Orbitron', sans-serif;
  --font-body:      'Inter', sans-serif;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --radius:         12px;
  --radius-lg:      20px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4, 4, 15, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(4, 4, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-white);
  line-height: 1.2;
}
.nav-logo-text span {
  color: var(--blue-bright);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-blue);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue-bright); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* CTA nav button */
.nav-cta {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  background: var(--gradient-blue);
  border-radius: 6px;
  color: #fff !important;
  box-shadow: var(--glow-sm);
  transition: var(--ease) 0.3s;
}
.nav-cta:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(4, 4, 15, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 5%;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease);
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.3s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--blue-bright); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: var(--glow-sm);
}
.btn-primary:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-bright);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(0, 180, 255, 0.08);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
section { position: relative; }

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--gradient-blue);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 1.2rem;
}
.section-title .accent { color: var(--blue-bright); }

.section-text {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
}

.divider-glow {
  width: 60px; height: 3px;
  background: var(--gradient-blue);
  border-radius: 2px;
  box-shadow: var(--glow-sm);
  margin: 1.2rem 0 2rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-size: 1.3rem;
  color: var(--blue-bright);
  margin-bottom: 1.2rem;
  transition: all 0.3s var(--ease);
}
.card:hover .card-icon {
  background: rgba(0, 180, 255, 0.18);
  box-shadow: var(--glow-sm);
  transform: scale(1.05);
}

.card-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-white);
  margin-bottom: 0.7rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   SERVICE DETAIL CARD (Services page)
   ============================================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-content {}
.service-number {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--blue-mid);
  margin-bottom: 0.5rem;
}
.service-title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.service-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-includes {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}
.service-includes h4 {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
}
.service-includes li {
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-includes li:last-child { border-bottom: none; }
.service-includes li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--gradient-blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0,180,255,0.5);
}

.service-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  max-width: 340px;
  margin: 0 auto;
  background: rgba(0, 50, 120, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  font-size: 5rem;
  color: var(--blue-bright);
  position: relative;
  overflow: hidden;
}
.service-icon-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,180,255,0.08) 0%, transparent 70%);
}

/* ============================================================
   HERO (shared base)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 5% 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue-bright);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s 0.15s var(--ease) both;
}
.hero-title .blue { color: var(--blue-bright); }
.hero-title .gradient-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 1.2rem;
  line-height: 1.75;
  animation: fadeUp 0.8s 0.25s var(--ease) both;
}

.hero-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  animation: fadeUp 0.8s 0.35s var(--ease) both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.8s 0.45s var(--ease) both;
}

/* Sub-hero (inner pages) */
.hero-sub {
  min-height: 50vh;
  padding: 140px 5% 90px;
}

/* ============================================================
   HIGHLIGHT / QUOTE BLOCK
   ============================================================ */
.highlight-block {
  background: rgba(0, 50, 120, 0.12);
  border-left: 3px solid var(--blue-bright);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.highlight-block p {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-bright);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

/* ============================================================
   CHECK LIST (Why choose us)
   ============================================================ */
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.check-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--blue-bright);
  font-size: 0.8rem;
  margin-top: 2px;
}
.check-item-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}
.check-item-text p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 50, 150, 0.2) 0%, rgba(0, 20, 60, 0.4) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  padding: 90px 0;
}
.cta-section .section-title { margin: 0 auto 1rem; }
.cta-section .section-text { margin: 0 auto 2rem; }
.cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-bright);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  transition: opacity 0.3s;
}
.cta-contact:hover { opacity: 0.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #020208;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 5% 30px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}
.footer-brand-name span { color: var(--blue-bright); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--blue-bright); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color 0.3s;
}
.contact-info-card:hover { border-color: var(--border-hover); }
.contact-info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 255, 0.1);
  border-radius: 10px;
  color: var(--blue-bright);
  font-size: 1.1rem;
}
.contact-info-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.3rem;
}
.contact-info-value {
  font-size: 0.9rem;
  color: var(--text-white);
  font-weight: 500;
}
.contact-info-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.form-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: #06071a; color: var(--text-white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; font-size: 0.8rem; padding: 16px 32px; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success i { font-size: 3rem; color: var(--blue-bright); margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-head); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-light); font-size: 0.9rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px var(--blue-bright); }
  50%       { box-shadow: 0 0 14px var(--blue-bright), 0 0 28px rgba(0,180,255,0.5); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes scanline {
  from { transform: translateY(-100%); }
  to   { transform: translateY(100vh); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: var(--glow-sm); }
  50%       { box-shadow: var(--glow-md); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   GRIDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reverse-col { direction: rtl; }
.two-col.reverse-col > * { direction: ltr; }

/* Stats row */
.stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}
.stat-item {}
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   IMAGE SLOTS
   ============================================================ */

/* Container that shows a styled placeholder until a real image is uploaded */
.img-slot {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0, 15, 45, 0.5);
  border: 1px dashed rgba(0, 180, 255, 0.3);
}

/* The actual <img> inside the slot */
.img-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--ease);
}
.img-slot:hover img { transform: scale(1.03); }

/* Placeholder label — visible only when the image hasn't loaded */
.img-slot .img-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(0, 180, 255, 0.025) 18px,
    rgba(0, 180, 255, 0.025) 36px
  );
}
.img-label i {
  font-size: 2.2rem;
  color: var(--blue-bright);
  opacity: 0.45;
}
.img-label span {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}
.img-label code {
  font-family: monospace;
  font-size: 0.72rem;
  color: rgba(0, 180, 255, 0.55);
  background: rgba(0, 180, 255, 0.06);
  border: 1px solid rgba(0, 180, 255, 0.15);
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* Hide placeholder label once the image loads successfully */
.img-slot img.loaded + .img-label,
.img-slot img:not([src=""]) + .img-label {
  display: none;
}

/* Hero background image (full bleed behind particles) */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: saturate(0.3) blur(1px);
  pointer-events: none;
}

/* Overlay for service section images */
.svc-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s;
}
.svc-photo:hover { border-color: var(--border-hover); box-shadow: var(--glow-sm); }
.svc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--ease);
}
.svc-photo:hover img { transform: scale(1.04); }
.svc-photo .img-label {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem; padding: 1.5rem; text-align: center;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 18px,
    rgba(0,180,255,0.025) 18px, rgba(0,180,255,0.025) 36px
  );
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .service-icon-large { max-width: 220px; aspect-ratio: auto; padding: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse-col { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { gap: 1.5rem; }
  .section-pad { padding: 70px 0; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
