.site-nav {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  box-shadow: var(--shadow-sm);
  width: 100%
}

.site-nav .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001
}

.brand-logo-link {
  display: inline-flex;
  align-items: center
}

.brand-logo-img {
  height: 57px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block
}

.nav-mobile-header .brand-logo-img {
  height: 34px;
  max-width: 190px
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white)
}

.nav-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 40px
}

.nav-mobile-header {
  display: none !important
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0 auto
}

.nav-menu li {
  position: relative
}

.nav-menu li a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 64px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .5px;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: var(--transition-fast)
}

.nav-menu li a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue)
}

.nav-menu li a.active {
  color: var(--blue);
  border-bottom-color: var(--red)
}

.submenu-arrow {
  transition: transform var(--transition-fast);
  margin-left: 2px
}

.has-submenu:hover .submenu-arrow {
  transform: rotate(180deg)
}

.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-md);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  z-index: 1000;
  border-top: 2px solid var(--blue)
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.submenu li a {
  height: auto;
  line-height: 1.4;
  padding: 12px 20px;
  border-bottom: none;
  border-left: 3px solid transparent
}

.submenu li a:hover {
  background: var(--light);
  border-left-color: var(--blue)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav-phone {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  transition: var(--transition-fast)
}

.nav-phone:hover {
  color: var(--blue)
}

.wa-btn {
  background: #25D366;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  text-decoration: none
}

.wa-btn:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, .3)
}

.wa-btn svg {
  flex-shrink: 0
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative
}

.mobile-menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px)
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px)
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px)
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px)
}

.nav-overlay.active {
  display: block;
  opacity: 1
}

.hero {
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #0a2540 60%, var(--blue-dark) 100%);
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0, 114, 198, .04) 0, rgba(0, 114, 198, .04) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px var(--container-padding);
  max-width: 700px
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 18px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 16px
}

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

.hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  margin: 16px 0 28px;
  line-height: 1.6
}

.hero-sites-badge {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .6);
  border: 2px solid var(--red);
  border-radius: 6px;
  padding: 24px;
  width: 180px;
  text-align: center;
  backdrop-filter: blur(10px);
  z-index: 3
}

.hero-sites-badge .num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  color: var(--red);
  line-height: 1
}

.hero-sites-badge .lab {
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px
}

.stats-bar {
  background: var(--blue);
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat-item {
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .15)
}

.stat-item:last-child {
  border-right: none
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  color: var(--white)
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-top: 4px solid var(--blue);
  transition: var(--transition-normal)
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.service-card.red {
  border-top-color: var(--red)
}

.service-card .icon {
  font-size: 28px;
  margin-bottom: 12px
}

.service-card h3 {
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 8px
}

.service-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 16px
}

.card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast)
}

.card-link:hover {
  color: var(--blue-dark)
}

.pkg-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  text-align: center;
  transition: var(--transition-normal)
}

.pkg-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg)
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px
}

.pkg-badge.gold {
  background: var(--yellow);
  color: var(--charcoal)
}

.pkg-badge.red {
  background: var(--red)
}

.pkg-card h3 {
  font-size: 22px;
  margin-bottom: 6px
}

.pkg-card .tagline {
  font-style: italic;
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 16px;
  font-family: var(--font-accent)
}

.pkg-ideal {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--mid);
  text-align: left
}

.pkg-ideal strong {
  color: var(--charcoal);
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.proj-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px
}

.proj-scroll::-webkit-scrollbar {
  height: 4px
}

.proj-scroll::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 2px
}

.proj-card {
  min-width: 220px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--charcoal);
  position: relative;
  transition: var(--transition-normal)
}

.proj-card:hover {
  transform: translateY(-5px)
}

.proj-img {
  height: 140px;
  background: linear-gradient(135deg, #1a3a5c, #0072C6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .2);
  font-size: 32px
}

.proj-info {
  padding: 12px 14px
}

.proj-info .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white)
}

.proj-info .loc {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  margin-top: 3px
}

.proj-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase
}

.proj-badge.red {
  background: var(--red)
}

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px
}

.form-box h3 {
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 6px
}

.form-box p {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 24px
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid)
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--font-primary);
  color: var(--charcoal);
  background: var(--light);
  transition: var(--transition-fast)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white)
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #CC0000;
  background: #ffebee
}

.form-group .error-msg {
  display: block;
  color: #CC0000;
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
  min-height: 16px
}

.form-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  transition: var(--transition-fast)
}

.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px)
}

.site-footer {
  background: #0d1a2a;
  padding: 48px var(--container-padding) 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px
}

.footer-logo-img {
  height: 79px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block
}

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

.footer-links h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 14px
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
  transition: var(--transition-fast);
  position: relative;
  padding-left: 0
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 4px
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all var(--transition-fast)
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1
}

.footer-contact .phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px
}

.footer-contact .email {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 14px
}

.footer-divline {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px
}

.footer-divline span {
  font-size: 12px;
  color: rgba(255, 255, 255, .3)
}

.div-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.div-logo {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  transition: var(--transition-fast);
  cursor: default
}

.div-logo:hover {
  color: var(--yellow)
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-float);
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: var(--transition-fast)
}

.wa-float:hover {
  transform: scale(1.1)
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, .7)
  }
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white)
}

.client-logos-wrapper {
  overflow: hidden;
  padding: 20px 0
}

.client-logos {
  display: flex;
  gap: 24px;
  animation: scroll-logos 30s linear infinite
}

.client-logos:hover {
  animation-play-state: paused
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.client-logo {
  min-width: 160px;
  height: 80px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  text-align: center;
  transition: var(--transition-fast);
  flex-shrink: 0
}

.client-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue)
}

.youtube-embed {
  position: relative;
  background: var(--charcoal);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md)
}

.youtube-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9
}

.check-question {
  padding: 24px;
  background: var(--light);
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid var(--blue)
}

.check-btn {
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--charcoal);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex: 1;
  text-align: center
}

.check-btn:hover:not(:disabled) {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm)
}

.check-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed
}

.guided-check {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.guided-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.guided-question {
  background: rgba(0, 114, 198, 0.06);
  border: 2px solid rgba(0, 114, 198, 0.15);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease
}

.guided-question:last-child {
  grid-column: 1 / -1
}

.guided-question:hover {
  background: rgba(0, 114, 198, 0.1);
  border-color: rgba(0, 114, 198, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 114, 198, 0.15)
}

.guided-question.answered {
  background: rgba(0, 114, 198, 0.12);
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 114, 198, 0.2)
}

.guided-question.answered-yes {
  background: rgba(204, 0, 0, 0.08);
  border-color: #CC0000;
  box-shadow: 0 2px 8px rgba(204, 0, 0, 0.2)
}

.guided-question.answered-no {
  background: rgba(76, 175, 80, 0.08);
  border-color: #4caf50;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2)
}

.question-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  flex: 1
}

.question-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0
}

.guided-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 70px;
  position: relative;
  overflow: hidden
}

.guided-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s
}

.guided-btn:active::before {
  width: 200px;
  height: 200px
}

.guided-yes {
  background: white;
  color: var(--charcoal)
}

.guided-yes:hover:not(:disabled) {
  background: #CC0000;
  color: white;
  border-color: #CC0000;
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3)
}

.guided-yes.selected {
  background: #CC0000;
  color: white;
  border-color: #CC0000;
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3)
}

.guided-no {
  background: white;
  color: var(--charcoal)
}

.guided-no:hover:not(:disabled) {
  background: #4caf50;
  color: white;
  border-color: #4caf50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3)
}

.guided-no.selected {
  background: #4caf50;
  color: white;
  border-color: #4caf50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3)
}

.guided-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed
}

#resetGuided:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2)
}

.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap
}

.filter-tab {
  padding: 7px 18px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--mid);
  transition: var(--transition-fast)
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white)
}

/* Restored Lightbox and Professional Enhancements */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--white);
  padding: 10px;
}

.lightbox-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lightbox-tag {
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  transition: 0.3s;
  z-index: 10001;
}

.lightbox-close:hover {
  color: var(--red);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--white);
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 10000;
}

.lightbox-nav:hover {
  background: var(--blue);
  color: var(--white);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 20px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 36px;
  }
}

.gal-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #f0f0f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gal-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gal-item:hover img {
  transform: scale(1.1);
}

/* Gallery Masonry Layout */
.gal-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
  margin-top: 30px;
}

.gal-masonry .gal-item:first-child {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .gal-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .gal-masonry .gal-item:first-child {
    grid-row: span 1;
  }
}

.filter-pill {
  padding: 10px 24px;
  border-radius: 4px;
  border: none;
  background: white;
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill.active {
  background: #0072C6;
  color: white;
}

.filter-pill:hover:not(.active) {
  background: #0072C6;
  color: white;
}

/* YouTube Refined Placeholders */
.yt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.yt-placeholder {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
}

.yt-placeholder:hover {
  border-color: var(--red);
  background: rgba(255, 0, 0, 0.05);
}

.yt-play-icon {
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.yt-play-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

.yt-label {
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-info {
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gal-item:hover .gal-info {
  transform: translateY(0);
}

.filter-tab {
  position: relative;
  overflow: hidden;
}

.filter-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.filter-tab:hover::after,
.filter-tab.active::after {
  width: 60%;
}

.modal-overlay {
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(10px);
}

.strip-header {
  background: var(--blue);
  color: var(--white);
  padding: 14px var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.strip-header:hover {
  background: var(--blue-dark);
}

.strip-header h2 {
  font-size: 26px;
  letter-spacing: 1px
}

.strip-header span {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  font-style: italic
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal)
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.team-photo {
  height: 180px;
  background: linear-gradient(135deg, #c8d8e8, #8aacc8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(0, 114, 198, .3)
}

.team-info {
  padding: 16px 18px
}

.team-info h4 {
  font-size: 18px;
  color: var(--charcoal)
}

.team-info .role {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 3px 0 8px
}

.team-info p {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5
}

/* --- Added from Latest HTML --- */
.annot {
  display: inline-block;
  background: #fff3cd;
  color: #7a5a00;
  border: 1px solid #f0c040;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  margin: 4px 0;
}

.sec-label {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: white;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-num.yellow {
  background: var(--yellow);
  color: var(--charcoal);
}

.step-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.step-text span {
  font-size: 13px;
  color: var(--mid);
}

.collab-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 5px;
  padding: 24px;
}

.collab-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.collab-card p {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  line-height: 1.6;
}

.architect-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 0;
}

.arch-pill {
  background: var(--light);
  border: 1.5px solid var(--border);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  display: inline-block;
  transition: all .2s;
}

.arch-pill:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* --- Self-Check & Tooling Styles --- */
.selfcheck {
  background: linear-gradient(135deg, #0a2540 0%, var(--blue-dark) 100%);
  padding: 56px 60px;
}

.selfcheck h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}

.selfcheck .sub {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  margin-bottom: 28px;
}

.questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.q-item {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 5px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.q-text {
  color: white;
  font-size: 13px;
  font-weight: 600;
  flex: 1;
}

.yn-toggle {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.yn-btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8);
  cursor: pointer !important;
  transition: all .15s ease;
  user-select: none;
}

.yn-btn:hover {
  border-color: white;
  color: white;
  background: rgba(255, 255, 255, .15);
}

.yn-btn.yes {
  background: #1a6b32 !important;
  border-color: #52c97a !important;
  color: white !important;
  box-shadow: 0 0 0 3px rgba(82, 201, 122, .25);
}

.yn-btn.no {
  background: #7a1010 !important;
  border-color: #ff4444 !important;
  color: white !important;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, .2);
}

.result-banner {
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 5px;
  padding: 20px 24px;
  margin-top: 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.result-banner.danger {
  background: rgba(204, 0, 0, .2);
  border-color: var(--red);
  display: flex;
}

.result-banner.safe {
  background: rgba(37, 211, 102, .1);
  border-color: var(--green-wa);
  display: flex;
}

.result-banner .msg strong {
  display: block;
  font-size: 18px;
  color: white;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-banner .msg span {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
}

.result-btn {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

.result-btn:hover {
  background: #a50000;
  transform: translateY(-2px);
}

/* Professional Profile Placeholder */
.team-photo {
  height: 220px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80%;
  background: radial-gradient(circle at bottom, rgba(0, 114, 198, 0.1) 0%, transparent 70%);
}

.team-photo svg {
  width: 80px;
  height: 80px;
  fill: #94a3b8;
  z-index: 1;
}

/* --- Additional Elements --- */
.logo-scroll-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 40px 0;
  display: flex;
  background: transparent;
}

.logo-scroll-wrap::before,
.logo-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-scroll-wrap.grey::before {
  left: 0;
  background: linear-gradient(to right, var(--light), transparent);
}

.logo-scroll-wrap.grey::after {
  right: 0;
  background: linear-gradient(to left, var(--light), transparent);
}

.logo-scroll-wrap:not(.grey)::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.logo-scroll-wrap:not(.grey)::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.logo-scroll {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-logos 60s linear infinite;
  align-items: center;
}

.client-logo {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 16px 28px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);

  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: default;
  text-transform: none;
}

.client-logo:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 4px 15px rgba(0, 114, 198, 0.1);
  transform: translateY(-2px);
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Form Step Pills Styling */
.step-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.step-pill {
  padding: 10px 20px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.step-pill:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.step-pill.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(0, 114, 198, 0.25);
}

.mt8 {
  margin-top: 8px;
}

.mt16 {
  margin-top: 16px;
}

.form-success {
  display: none;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid #25D366;
  border-radius: 6px;
  padding: 12px 16px;
  margin-top: 16px;
  color: #1a5c30;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* Gallery Dark Theme & Pills */
.gallery-section {
  background: #000;
  padding: 80px 0;
  color: white;
}

.badge-red {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.gallery-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: white;
}

.gallery-section h1 span {
  color: var(--yellow);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-pill {
  padding: 8px 24px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.filter-pill.active {
  background: #0072C6;
  border-color: #0072C6;
  color: white;
}

.yt-section {
  background: #000;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yt-section h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 30px;
}

.yt-placeholder {
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.yt-placeholder:hover {
  background: #1a1a1a;
}

.yt-play-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

.yt-play-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 2px;
}

/* Gallery Page Layout Refinements */
.gallery-section {
  background: radial-gradient(circle at 20% -10%, rgba(0, 114, 198, 0.2), transparent 45%), #05080d;
  padding: clamp(56px, 8vw, 90px) 0 56px;
  color: var(--white);
}

.gallery-section .gallery-subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 26px;
}

.gallery-section .section.dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
}

.gallery-section .filter-tabs {
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-section .filter-tab {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  padding: 9px 14px;
}

.gallery-section .filter-tab::after {
  display: none;
}

.gallery-section .filter-tab.active,
.gallery-section .filter-tab:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 114, 198, 0.35);
}

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

.gallery-section .gal-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #111923;
  cursor: default;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.gallery-section .gal-item.tall {
  grid-row: span 1;
}

.gallery-section .gal-item:hover {
  transform: translateY(-4px) scale(1.01);
}

.gallery-section .gal-overlay {
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 62%, transparent 100%);
}

.gallery-section .gal-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  text-transform: none;
}

.gallery-section .gal-tag {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
}

.gallery-section .yt-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-section .yt-placeholder,
.yt-section .yt-placeholder {
  min-height: 220px;
}

@media (max-width: 1100px) {
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .gallery-section .section.dark {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-section .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .gallery-section .filter-tab {
    white-space: nowrap;
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  .gallery-section {
    padding: 50px 0 42px;
  }

  .gallery-section .gallery-subtitle {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-section .gal-item {
    aspect-ratio: 16/10;
  }

  .gallery-section .yt-grid {
    grid-template-columns: 1fr;
  }

  .gallery-section .yt-placeholder,
  .yt-section .yt-placeholder {
    min-height: 170px;
  }
}

@media (hover: none) {
  .gallery-section .gal-overlay {
    opacity: 1;
  }

  .gallery-section .gal-item:hover {
    transform: none;
  }
}

/* Contact Page Responsive Hardening */
.contact-hero {
  min-height: 280px;
}

.contact-hero-content {
  padding: 40px 60px;
}

.contact-hero-title {
  font-size: 48px;
}

.contact-map-section {
  padding: 32px 60px;
}

.contact-map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-label {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px) {
  .contact-hero-content {
    padding: 34px 24px !important;
  }

  .contact-hero-title {
    font-size: 34px !important;
    line-height: 1.1;
  }

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

  .contact-stats .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .contact-stats .stat-item:last-child {
    border-bottom: none;
  }

  .contact-map-section {
    padding: 24px var(--container-padding) !important;
  }
}

@media (max-width: 480px) {
  .contact-hero-content {
    padding: 26px 20px !important;
  }

  .contact-hero-title {
    font-size: 28px !important;
  }

  .contact-map-section {
    padding: 18px var(--container-padding) !important;
  }
}
