/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
  /* Colors - STRICT DARK THEME */
  --bg-color: #050505;
  --bg-color-light: #111111;
  --text-color: #ffffff;
  --text-muted: #aaaaaa;

  /* Accents - NEON BLUE & PINK */
  --accent-blue: #00f0ff;
  --accent-pink: #ff007f;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-pink) 100%);
  --gradient-text: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ==========================================================================
   Background Animations & Effects
   ========================================================================== */
.blob-blue,
.blob-pink {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  opacity: 0.4;
  animation: float 15s infinite alternate ease-in-out;
}

.blob-blue {
  background: var(--accent-blue);
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.blob-pink {
  background: var(--accent-pink);
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(100px, 50px) scale(1.1);
  }

  100% {
    transform: translate(-50px, 100px) scale(0.9);
  }
}

/* ==========================================================================
   Typography & Utils
   ========================================================================== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  filter: brightness(1.2);
}

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

.text-link:hover {
  text-shadow: 0 0 10px var(--accent-blue);
}

.highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Global Page Fade-In */
.page-fade-in {
  animation: fadeInPage 1s cubic-bezier(0.175, 0.885, 0.32, 1) forwards;
}

@keyframes fadeInPage {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Inner Page Templates (V3) */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  padding-top: 100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid var(--glass-border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.6) 50%, rgba(5, 5, 5, 0.7) 100%);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .page-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 240, 255, 0.6);
  color: #fff;
  text-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
  background: var(--accent-blue);
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.4);
  text-shadow: none;
}

/* ==========================================================================
   Announcement Banner
   ========================================================================== */
.announcement-banner {
  width: 100%;
  background: rgba(5, 5, 5, 0.5);
  /* Extremely subtle dark background */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Barely visible line */
  color: var(--text-muted);
  /* Softer text color */
  text-align: center;
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
  /* Above header */
  box-shadow: 0 2px 15px rgba(255, 0, 127, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-banner p {
  margin: 0;
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.9;
  padding-right: 20px;
  /* Space for the close button */
}

.announcement-banner strong {
  font-weight: 600;
}

.close-banner-btn {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 5px;
  transition: color 0.3s ease;
}

.close-banner-btn:hover {
  color: #fff;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
header {
  position: fixed;
  top: var(--banner-height, 35px);
  /* Pushed down by banner */
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

header.scrolled {
  top: 0;
  /* Attach to top when scrolling past banner */
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  /* Reduced padding from 1.5rem for subtler look */
  max-width: 1400px;
  margin: 0 auto;
}

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

.logo-img {
  height: 38px;
  /* Slightly smaller */
  width: auto;
  border-radius: 4px;
  mix-blend-mode: screen;
  /* Blends white backgrounds into the dark theme seamlessly */
  opacity: 0.9;
  filter: grayscale(20%) contrast(120%);
  /* Refines the image slightly */
  transition: var(--transition-normal);
}

.logo-img:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: #fff;
  text-shadow: none;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #fff;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  padding-top: 80px;
  overflow: hidden;
}

/* Video Background */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* Glitch effect on Hero Title */
.glitch {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch::before {
  color: var(--accent-blue);
  z-index: -1;
  animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--accent-pink);
  z-index: -2;
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    transform: translate(0)
  }

  20% {
    transform: translate(-2px, 1px)
  }

  40% {
    transform: translate(-1px, -1px)
  }

  60% {
    transform: translate(2px, 1px)
  }

  80% {
    transform: translate(1px, -1px)
  }

  100% {
    transform: translate(0)
  }
}

@keyframes glitch-anim-2 {
  0% {
    transform: translate(0)
  }

  20% {
    transform: translate(2px, -1px)
  }

  40% {
    transform: translate(1px, 1px)
  }

  60% {
    transform: translate(-2px, -1px)
  }

  80% {
    transform: translate(-1px, 1px)
  }

  100% {
    transform: translate(0)
  }
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* ==========================================================================
   Trusted Brands Marquee (Trust Signals)
   ========================================================================== */
.brands-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--bg-dark);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: var(--transition-normal);
}

.brands-marquee:hover {
  background: rgba(10, 10, 15, 0.9);
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-brands 30s linear infinite;
}

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

.brands-track .brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin: 0 3rem;
  filter: grayscale(100%) brightness(200%) opacity(40%);
  transition: all 0.4s ease;
  cursor: pointer;
}

.brands-track .brand-logo:hover {
  filter: grayscale(0%) brightness(100%) opacity(100%);
  transform: scale(1.05);
}

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

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

/* ==========================================================================
   Infinite Marquee Services
   ========================================================================== */
.marquee-container {
  width: 100vw;
  overflow: hidden;
  background: var(--bg-color-light);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 3rem 0;
  margin: 6rem 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-normal);
}

.marquee-container:hover .marquee-content span {
  -webkit-text-stroke: 1px var(--text-color);
}

.marquee-content .marquee-dot {
  color: var(--accent-pink) !important;
  margin: 0 3rem;
  -webkit-text-stroke: 0 !important;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

/* ==========================================================================
   Bento Grid Section
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 350px;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.bento-item {
  position: relative;
  background: var(--bg-color-light);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  overflow: hidden;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  background-size: cover;
  background-position: center;
}

.bento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.6) 40%, rgba(5, 5, 5, 0.1) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.bento-content {
  position: relative;
  z-index: 2;
}

.bento-large {
  grid-column: span 2;
}

.bento-medium {
  grid-column: span 1;
}

.bento-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.15);
}

.bento-item:hover .bento-overlay {
  background: linear-gradient(to top, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.8) 50%, rgba(5, 5, 5, 0.3) 100%);
}

.bento-item .icon-wrapper {
  margin-bottom: 1.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.bento-item:hover .icon-wrapper {
  background: rgba(20, 20, 20, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15), inset 0 0 15px rgba(255, 0, 127, 0.2);
}

.bento-item h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.bento-item p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

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

  .bento-large {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .bento-large,
  .bento-medium {
    grid-column: span 1;
  }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-container {
  background: var(--bg-color-light);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%);
}

.contact-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--accent-pink);
  filter: blur(80px);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.contact-info {
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.info-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.info-item .icon {
  font-size: 1.8rem;
  background: var(--glass-bg);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}

.info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.info-item a,
.info-item span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-item a:hover {
  color: var(--accent-blue);
  text-shadow: none;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #fff;
}

.social-links a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-5px);
}

/* ==========================================================================
   Portfolio Grid (Masonry)
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 250px;
  gap: 1.5rem;
  padding: 1rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item.tall {
  grid-row: span 2;
}

.portfolio-item.wide {
  grid-column: span 2;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(255, 0, 127, 0.1) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: opacity 0.4s ease;
}

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

.portfolio-overlay span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay span {
  transform: translateY(0);
}

@media (max-width: 768px) {

  .portfolio-item.tall,
  .portfolio-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ==========================================================================
   Clients Grid
   ========================================================================== */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.clients-grid img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) brightness(200%) opacity(50%);
  transition: all 0.4s ease;
  cursor: pointer;
}

.clients-grid img:hover {
  filter: grayscale(0%) brightness(100%) opacity(100%);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients-grid {
    gap: 2rem;
  }

  .clients-grid img {
    height: 45px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 2rem;
  text-align: center;
  background: var(--bg-color-light);
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 768px) {
  .section {
    padding: 4rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    right: -100%;
    top: var(--banner-height, 35px);
    /* Offset for the banner */
    flex-direction: column;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    width: 60%;
    height: calc(100vh - var(--banner-height, 35px));
    padding-top: 60px;
    align-items: center;
    transition: 0.4s ease;
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .glitch {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .marquee-content span {
    font-size: 2.5rem;
  }

  .marquee-content .marquee-dot {
    margin: 0 1.5rem;
  }

  .page-hero {
    min-height: 40vh;
  }

  .cta-group {
    flex-direction: column;
    padding: 0 1rem;
  }

  .contact-container {
    padding: 2rem;
  }

  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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