@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;600;700;900&display=swap");

/* ═══════════════════════════════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════════════════════════════ */
:root {
  --bg: #080b14;
  --bg-alt: #0d1220;
  --surface: #0f1624;
  --surface-2: #141e30;
  --fg: #ffffff;
  --primary: #ef4444;
  --primary-dim: rgba(239, 68, 68, 0.12);
  --primary-border: rgba(239, 68, 68, 0.3);
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.13);
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-behavior: smooth;
  scrollbar-color: var(--primary);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ═══════════════════════════════════════════════════════════════
   STICKY NAVBAR
═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  z-index: 1000;
  background: rgba(8, 11, 20, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(8, 11, 20, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

/* Links pushed to the RIGHT — logo stays left */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto; /* push right */
  margin-right: 28px;
  padding: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #fff;
}
.nav-link:hover::after {
  width: 100%;
}

.dropdown-icon {
  font-size: 7px;
  opacity: 0.45;
}

/* Nav CTA button */
.btn-get-in-touch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.btn-get-in-touch svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.btn-get-in-touch:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.4);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 16px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8, 11, 20, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transform: translateY(-110%);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-link:last-child {
  border-bottom: none;
}
.mobile-link:hover {
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   HERO  (unchanged structure — just offset for sticky nav)
═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #0a0e1a;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.map-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 115%; /* extra height for parallax */
  background-image: url("map.png");
  background-size: cover;
  background-position: center top;
  z-index: 1;
  will-change: transform;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.87);
  z-index: 2;
}

.grid-ref {
  position: absolute;
  top: 110px;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  z-index: 10;
  opacity: 0.8;
}

.grid-ref svg {
  width: 16px;
  height: 16px;
}

.content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 50px;
  padding: 60px 80px 80px;
  z-index: 10;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}
.hero-title {
  margin-bottom: 30px;
}

.title-white {
  display: block;
  color: #fff;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.title-red {
  display: block;
  color: #eb2e2e;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-description {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.red-line {
  width: 4px;
  background: #eb2e2e;
  flex-shrink: 0;
}

.hero-description p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: #eb2e2e;
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #dc2626;
  transform: translateY(-2px);
}
.btn-primary svg {
  width: 21px;
  height: 21px;
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 60px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-secondary svg {
  width: 21px;
  height: 21px;
}

.stats {
  display: flex;
  gap: 80px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  color: #eb2e2e;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
}

.hero-image {
  position: relative;
  z-index: 5;
  left: 150px;
  top: 75px;
}

.hero-image img {
  max-width: 1000px;
  height: 700px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL SECTION STYLES
═══════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  z-index: 3;
}

.section-alt {
  background: var(--bg-alt);
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header p {
  color: var(--muted-light);
  font-size: 1rem;
  max-width: 520px;
  margin: 0.5rem auto 0;
  line-height: 1.75;
}

.section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0.4rem 0 0.5rem;
  color: var(--fg);
}

.section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.text-accent {
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   BADGE
═══════════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid var(--primary-border);
  background: var(--primary-dim);
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════
   GRIDS & UTILITIES
═══════════════════════════════════════════════════════════════ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
#about .grid-2 {
  gap: 4rem;
}

#about p {
  font-size: 1rem;
  color: var(--muted-light);
  line-height: 1.8;
}

#about p strong {
  color: var(--fg);
  font-weight: 600;
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-strong);
  border-radius: inherit;
  pointer-events: none;
}

.image-frame img {
  transition: transform 0.6s ease;
}
.image-frame:hover img {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════════ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}

.card:hover {
  border-color: var(--primary-border);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  background: var(--surface-2);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--muted-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.card ul {
  display: none; /* hidden in card view, shown in modal */
}

.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.tap-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tap-details i {
  transition: transform 0.3s;
}
.card:hover .tap-details i {
  transform: translateX(5px);
}

/* Emphasis card (Why GSS) */
.card.emphasis {
  border-color: var(--primary-border);
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.08), var(--surface));
  position: relative;
  overflow: hidden;
}

.card.emphasis::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.card.emphasis .card-body {
  padding: 2rem;
}
.card.emphasis h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.card.emphasis p {
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY SLIDER
═══════════════════════════════════════════════════════════════ */
.gallery-section {
  padding-bottom: 120px;
}

.gallery-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.gallery-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
}

.gallery-slider.dragging {
  cursor: grabbing;
  transition: none;
}

.gallery-slide {
  min-width: calc(100% / 3);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.35s ease;
}

.gallery-slide:hover .slide-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Arrow buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(8, 11, 20, 0.85);
  border: 1px solid var(--border-strong);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev {
  left: 24px;
}
.slider-next {
  right: 24px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════
   CLIENTS PILLS
═══════════════════════════════════════════════════════════════ */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.pill {
  padding: 0.5rem 1.1rem;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: default;
}

.pill:hover {
  background: rgba(239, 68, 68, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE — ASSOCIATES & PARTNERS
═══════════════════════════════════════════════════════════════ */
.marquee-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
}

/* Soft fade edges */
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.section-alt .marquee-fade-left {
  background: linear-gradient(to right, var(--bg-alt), transparent);
}
.section-alt .marquee-fade-right {
  background: linear-gradient(to left, var(--bg-alt), transparent);
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 1.2rem;
  animation: marquee-ltr 35s linear infinite;
  will-change: transform;
}

.marquee-track.reverse .marquee-inner {
  animation: marquee-rtl 35s linear infinite;
}

@keyframes marquee-ltr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-rtl {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.marquee-track:hover .marquee-inner {
  animation-play-state: paused;
}

/* Associate cards */
.assoc-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.assoc-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-3px);
}

.assoc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.assoc-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-light);
}

/* Partner cards */
.partner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    border-color 0.3s,
    transform 0.3s;
  min-width: 180px;
}

.partner-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-3px);
}

.partner-logo-placeholder {
  width: 56px;
  height: 40px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.partner-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-light);
}

/* ═══════════════════════════════════════════════════════════════
   WHY GSS
═══════════════════════════════════════════════════════════════ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.feature-list li::before {
  content: "▸";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 3px;
}

.feature-list li strong {
  color: var(--fg);
  font-weight: 600;
}

/* ─── CERTIFICATE STRIP ─── */
.cert-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: default;
  transition: transform 0.25s ease;
}

.cert-badge:hover {
  transform: translateY(-3px);
}

.cert-icon {
  width: 100px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}

.cert-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* scales image down to fit, never stretches */
  object-position: center;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact-meta {
  display: grid;
  gap: 0.5rem;
  color: var(--muted-light);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.contact-meta strong {
  color: var(--fg);
}

.contact .card.form {
  overflow: visible;
}

.contact .form .card-body {
  padding: 2rem;
  display: grid;
  gap: 0.1rem;
}

.contact .form label {
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--fg);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.contact input:focus,
.contact textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: var(--muted);
}

.contact textarea {
  resize: vertical;
  min-height: 100px;
}

.contact .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 13px;
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.25);
}

.form-alert {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.form-alert.success {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #d1fae5;
}

.form-alert.error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fee2e2;
}

.quote-box {
  position: relative;
  border: 2px solid var(--primary);
  padding: 20px 28px;
  margin: 20px 0;
  background: transparent;
}

.quote-box p {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  text-transform: none;
}

.quote-mark {
  position: absolute;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  font-family: Georgia, serif;
}

.quote-open {
  top: -18px;
  left: -12px;
  background: /* match your section bg */ #111;
  padding: 0 4px;
}

.quote-close {
  bottom: -22px;
  right: -12px;
  background: #111;
  padding: 0 4px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer-section {
  background: #05070f;
  color: var(--fg);
  padding: 4.5rem 8vw 2rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 0.8rem;
  margin-left: -40px;
  opacity: 0.9;
}

.footer-brand > p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: var(--primary);
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  display: inline-block;
}

.footer-link:hover {
  color: var(--fg);
}

/* Fixed map embed */
.footer-map-embed {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  position: relative;
}

.footer-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(50%) brightness(0.7) invert(0);
  transition: filter 0.3s;
}

.footer-map-embed:hover iframe {
  filter: none;
}

.footer-map-label {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-credit {
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-credit a:hover {
  color: var(--fg);
}

/* Social icons */
.social-links {
  display: flex;
  gap: 8px;
  margin-top: 0.5rem;
}

.social-link {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-light);
  text-decoration: none;
  font-size: 0.78rem;
  transition: all 0.25s;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING CTA BUTTON
═══════════════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 8px 32px rgba(239, 68, 68, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-cta:hover {
  background: #dc2626;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(239, 68, 68, 0.6);
}

.floating-cta svg {
  flex-shrink: 0;
}

/* Pulse ring around floating button */
.floating-cta::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 54px;
  border: 2px solid rgba(239, 68, 68, 0.5);
  animation: cta-pulse 2.5s ease-out infinite;
}

@keyframes cta-pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE MODAL
═══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 90%;
  max-width: 580px;
  position: relative;
  transform: scale(0.9) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.6rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.close-modal:hover {
  color: var(--primary);
}

.modal-header h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--fg);
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.modal-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.modal-body li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted-light);
  font-size: 0.9rem;
}

.modal-body li::before {
  content: "▸";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .navbar {
    padding: 0 32px;
  }
  .content-wrapper {
    padding: 40px 40px 60px;
    margin: 0 0;
  }
  .grid-ref {
    right: 40px;
  }
  .title-white,
  .title-red {
    font-size: 52px;
  }
  .hero-image img {
    width: 480px;
    height: 480px;
  }
  .stats {
    gap: 60px;
  }
  .footer-content {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
  .footer-map {
    grid-column: 1 / -1;
    max-width: 400px;
  }
  .gallery-slide {
    min-width: 50%;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    gap: 20px;
  }
  .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image {
    align-self: center;
    left: 0;
  }
  .hero-image img {
    width: 400px;
    height: 400px;
  }
  .title-white,
  .title-red {
    font-size: 44px;
  }
  .gallery-slide {
    min-width: 50%;
  }
}

@media (max-width: 800px) {
  .nav-menu,
  .btn-get-in-touch {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .gallery-slide {
    min-width: 100%;
  }
  .gallery-slide img {
    height: 320px;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  .grid-ref {
    position: static;
    margin-top: 16px;
    justify-content: center;
  }
  .content-wrapper {
    padding: 24px 20px 60px;
    margin: 0;
  }
  .title-white,
  .title-red {
    font-size: 36px;
  }
  .hero-description p {
    font-size: 16px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .stats {
    flex-direction: column;
    gap: 32px;
  }
  .hero-image img {
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 1;
  }
  .stat-number {
    font-size: 48px;
  }
  .section {
    padding: 70px 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .floating-cta span {
    display: none;
  }
  .floating-cta {
    padding: 14px 15px;
    border-radius: 50%;
  }
  .floating-cta::before {
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .title-white,
  .title-red {
    font-size: 28px;
  }
  .stat-number {
    font-size: 40px;
  }
  .hero-buttons {
    gap: 12px;
  }
}
