:root {
  --bg: #050308;
  --bg-alt: #0b0813;
  --bg-soft: #141020;
  --accent: #ffd54a;
  --accent-soft: rgba(255, 213, 74, 0.12);
  --accent-hot: #ffea85;
  --text-main: #f7f5ff;
  --text-muted: #a59ccc;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --danger: #ff4f7b;
  --radius-pill: 999px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: radial-gradient(ellipse at top center, #17112a 0%, #0a0510 40%, #050308 70%, #050308 100%);
  background-attachment: fixed;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

.noise-bg {
  pointer-events: none;
  position: fixed;
  inset: -50px;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  z-index: 0;
}

/* Container for content max-width */
.container {
  max-width: 1268px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADER */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(
      120deg,
      rgba(255, 213, 74, 0.06),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(3, 1, 8, 0.86);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1268px;
  width: calc(100% - 80px);
  z-index: 100;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-lockup a {
  display: inline-block;
  text-decoration: none;
  border: none;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 213, 74, 0.5));
}

.logo-wordmark {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.2), transparent),
    rgba(6, 3, 15, 0.96);
}

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

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

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  border: 1px solid transparent;
  transition: all 0.18s ease-out;
}

.nav-links a:hover {
  color: var(--accent-hot);
  border-color: rgba(255, 213, 74, 0.6);
  background: rgba(255, 213, 74, 0.06);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
}

/* SECTIONS */

.section {
  margin-top: 72px;
}

.section-hero {
  margin-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.22), transparent),
    linear-gradient(120deg, #120918, #050308 45%, #1b101e);
  position: relative;
}

.hero-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1268px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  overflow: visible;
}

.section-about,
.section-team,
.section-contact,
.section-highlights {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.section-work {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding-top: 32px;
  padding-bottom: 32px;
}


/* Welcome section */
.hero-welcome {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
}

.welcome-text {
  font-size: 0.95rem;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.welcome-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(255, 213, 74, 0.5));
}

/* Main headline wrapper */
.hero-headline-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1100px;
  z-index: 1;
}

.hero-headline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 3;
}

.hero-line {
  display: block;
  color: var(--text-main);
}

.hero-line--accent {
  color: var(--accent);
  text-shadow: 0 0 50px rgba(255, 213, 74, 0.8);
}

.hero-word {
  display: inline-block;
 /* margin: 0 0.15em;*/
}

.hero-word--large {
  font-size: 1.1em;
  font-weight: 500;
}

/* Floating media collage */
.hero-float-media {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.6);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.hero-float-media--1 {
  top: 15%;
  left: 5%;
  width: 180px;
  height: 180px;
  transform: rotate(-8deg);
  animation-delay: 0s;
  z-index: 3;
}

.hero-float-media--1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.hero-float-media--2 {
  top: 8%;
  right: 5%;
  width: 160px;
  height: 160px;
  transform: rotate(12deg);
  animation-delay: 1s;
}

.hero-float-media--2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.hero-float-media--3 {
  bottom: 5%;
  left: 3%;
  width: 160px;
  height: 160px;
  transform: rotate(5deg);
  animation-delay: 2s;
  background: linear-gradient(135deg, #ffd54a 0%, #ffea85 50%, #ffd54a 100%);
  z-index: 1;
}

.hero-float-media--3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  mix-blend-mode: multiply;
}

.hero-float-media--4 {
  bottom: 15%;
  right: 2%;
  width: 160px;
  height: 160px;
  transform: rotate(-6deg);
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translateY(-15px) rotate(var(--rotate, 0deg));
  }
}

.hero-float-media--1 { --rotate: -8deg; }
.hero-float-media--2 { --rotate: 12deg; }
.hero-float-media--3 { --rotate: 5deg; }
.hero-float-media--4 { --rotate: -6deg; }

/* Dummy images/videos */
.dummy-image {
  width: 100%;
  height: 100%;
}

.dummy-gradient-1 {
  background: linear-gradient(135deg, #ffd54a 0%, #ff4f7b 100%);
}

.dummy-gradient-2 {
  background: linear-gradient(225deg, #ffea85 0%, #a59ccc 100%);
}

.dummy-video {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.youtube-video {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.youtube-thumbnail-link {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease-out;
}

.youtube-thumbnail-link:hover {
  transform: scale(1.05);
}

.youtube-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.youtube-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.9), rgba(200, 0, 0, 0.9));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  z-index: 2;
}

.youtube-play-button i {
  color: white;
  font-size: 1.5rem;
  margin-left: 4px;
}

.youtube-thumbnail-link:hover .youtube-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 0, 0, 0.8);
}

/* Bottom section with subtext and CTA */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  z-index: 4;
  position: relative;
}

.hero-subtext {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.hero-cta {
  padding: 12px 32px;
  font-size: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.2), transparent),
    rgba(8, 4, 16, 0.92);
  position: relative;
  overflow: visible;
}

.pill::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: linear-gradient(
      90deg,
      transparent 0%,
      transparent 40%,
      #ffd54a 45%,
      #ffea85 50%,
      #ffd54a 55%,
      transparent 60%,
      transparent 100%
    )
    border-box;
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: shineBorder 2s linear infinite;
  z-index: -1;
}

@keyframes shineBorder {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.pill-outline {
  background: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.btn-primary {
  background: radial-gradient(circle at top, #ffe58a, #ffd54a);
  color: #181008;
  box-shadow: 0 12px 30px rgba(255, 213, 74, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(255, 213, 74, 0.75);
}

.btn-ghost {
  background: rgba(8, 4, 18, 0.95);
  color: var(--accent-hot);
  border-color: rgba(255, 213, 74, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 213, 74, 0.08);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 213, 74, 0.4);
  transform: translateY(-1px);
}

.btn-secondary span {
  margin-left: 6px;
  transition: transform 0.3s ease-out;
}

.btn-secondary:hover span {
  transform: translateX(4px);
}

.scroll-hint-vertical {
  position: absolute;
  right: 26px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--text-muted);
}

.scroll-circle {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-circle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--accent-hot), var(--accent));
}

.scroll-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* BRANDS GRID SECTION */

.section-brands {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 40px;
  padding-right: 40px;
  background: radial-gradient(circle at center, rgba(255, 213, 74, 0.08), transparent),
    linear-gradient(180deg, #050308, #0d0814);
  position: relative;
  overflow: hidden;
}

.brands-intro {
  text-align: center;
  margin-bottom: 80px;
  z-index: 2;
}

.brands-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.perspective-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.grid-item {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: all 0.3s ease-out;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  filter: grayscale(1) brightness(0.9);
  transition: filter 0.3s ease-out;
}

.grid-item:hover img {
  filter: grayscale(0) brightness(1);
}

/* SERVICES SECTION (ABOUT) */

.section-services {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
  overflow: hidden;
}

/* Confetti/Graffiti Animation */
.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0;
  transform: translateY(-100px) rotate(0deg);
}

.confetti::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent);
  opacity: 0.15;
}

.confetti-1 { left: 5%; top: -20px; }
.confetti-1::before { width: 8px; height: 20px; border-radius: 4px; }

.confetti-2 { left: 15%; top: -30px; }
.confetti-2::before { width: 15px; height: 15px; border-radius: 50%; }

.confetti-3 { left: 25%; top: -25px; }
.confetti-3::before { width: 6px; height: 24px; border-radius: 3px; transform: rotate(45deg); }

.confetti-4 { left: 35%; top: -15px; }
.confetti-4::before { width: 20px; height: 8px; border-radius: 4px; }

.confetti-5 { left: 45%; top: -35px; }
.confetti-5::before { width: 12px; height: 12px; clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }

.confetti-6 { left: 55%; top: -20px; }
.confetti-6::before { width: 10px; height: 10px; border-radius: 50%; }

.confetti-7 { left: 65%; top: -28px; }
.confetti-7::before { width: 18px; height: 6px; border-radius: 3px; transform: rotate(-30deg); }

.confetti-8 { left: 75%; top: -18px; }
.confetti-8::before { width: 8px; height: 22px; border-radius: 4px; }

.confetti-9 { left: 85%; top: -32px; }
.confetti-9::before { width: 14px; height: 14px; clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }

.confetti-10 { left: 92%; top: -22px; }
.confetti-10::before { width: 10px; height: 16px; border-radius: 5px; }

.confetti-11 { left: 10%; top: -40px; }
.confetti-11::before { width: 16px; height: 16px; border-radius: 50%; }

.confetti-12 { left: 30%; top: -45px; }
.confetti-12::before { width: 6px; height: 18px; border-radius: 3px; transform: rotate(60deg); }

.confetti-13 { left: 50%; top: -38px; }
.confetti-13::before { width: 14px; height: 8px; border-radius: 4px; transform: rotate(-45deg); }

.confetti-14 { left: 70%; top: -42px; }
.confetti-14::before { width: 10px; height: 10px; clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }

.confetti-15 { left: 88%; top: -36px; }
.confetti-15::before { width: 12px; height: 18px; border-radius: 6px; }

@media (max-width: 768px) {
  .confetti {
    width: 8px;
    height: 8px;
  }
  
  .confetti-1::before { width: 6px; height: 14px; }
  .confetti-2::before { width: 10px; height: 10px; }
  .confetti-3::before { width: 4px; height: 16px; }
  .confetti-4::before { width: 14px; height: 6px; }
  .confetti-5::before { width: 8px; height: 8px; }
  .confetti-6::before { width: 8px; height: 8px; }
  .confetti-7::before { width: 12px; height: 4px; }
  .confetti-8::before { width: 6px; height: 16px; }
  .confetti-9::before { width: 10px; height: 10px; }
  .confetti-10::before { width: 8px; height: 12px; }
  .confetti-11::before { width: 12px; height: 12px; }
  .confetti-12::before { width: 4px; height: 12px; }
  .confetti-13::before { width: 10px; height: 6px; }
  .confetti-14::before { width: 8px; height: 8px; }
  .confetti-15::before { width: 8px; height: 12px; }
}

.section-services .container {
  padding-top: 0;
  padding-bottom: 0;
}

.services-header {
  text-align: center;
  max-width: 680px;
  margin: 80px auto 48px;
}

.pill-soft {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--accent-hot);
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  margin: 14px 0 10px;
}

.services-tagline {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.service-card-wrapper {
  perspective: 1000px;
  height: 100%;
}

.service-card {
  height: 100%;
  min-height: 280px;
  width: 100%;
  position: relative;
  border-radius: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  padding: 4px;
  background: linear-gradient(45deg, 
    #ffd54a, 
    #ffea85, 
    #ffd54a, 
    #ffb347, 
    #ffd54a, 
    #ffea85,
    #ffd54a);
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: rotateGradient 4s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.service-card-wrapper:hover .service-card::before {
  opacity: 1;
}

@keyframes rotateGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.service-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 20px;
}

.service-card-wrapper:hover .service-card-inner {
  transform: rotateY(180deg);
  cursor: pointer;
}

.service-front,
.service-back {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.08), transparent),
    rgba(7, 4, 15, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
  overflow: hidden;
}

.service-card-wrapper:hover .service-front,
.service-card-wrapper:hover .service-back {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 
              0 0 40px rgba(255, 213, 74, 0.4);
  border-color: rgba(255, 213, 74, 0.3);
}

/* Decorative tangled wire/cable mess in corner - only on front */
.service-front::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  background-image: 
    /* First layer - tangled wires */
    linear-gradient(135deg, transparent 0%, transparent 48.5%, #ffd54a 48.5%, #ffd54a 51.5%, transparent 51.5%, transparent 100%),
    linear-gradient(72deg, transparent 0%, transparent 49%, #ffea85 49%, #ffea85 51%, transparent 51%, transparent 100%),
    linear-gradient(158deg, transparent 0%, transparent 48%, #ffb347 48%, #ffb347 52%, transparent 52%, transparent 100%),
    linear-gradient(95deg, transparent 0%, transparent 49%, #a59ccc 49%, #a59ccc 51%, transparent 51%, transparent 100%),
    linear-gradient(42deg, transparent 0%, transparent 48.5%, rgba(255, 213, 74, 0.9) 48.5%, rgba(255, 213, 74, 0.9) 51.5%, transparent 51.5%, transparent 100%),
    linear-gradient(168deg, transparent 0%, transparent 49%, rgba(255, 234, 133, 0.8) 49%, rgba(255, 234, 133, 0.8) 51%, transparent 51%, transparent 100%),
    /* Second layer - more tangles */
    linear-gradient(112deg, transparent 0%, transparent 48%, #ffd54a 48%, #ffd54a 52%, transparent 52%, transparent 100%),
    linear-gradient(85deg, transparent 0%, transparent 49%, rgba(255, 179, 71, 0.7) 49%, rgba(255, 179, 71, 0.7) 51%, transparent 51%, transparent 100%),
    linear-gradient(145deg, transparent 0%, transparent 48.5%, rgba(165, 156, 204, 0.6) 48.5%, rgba(165, 156, 204, 0.6) 51.5%, transparent 51.5%, transparent 100%),
    linear-gradient(58deg, transparent 0%, transparent 49%, rgba(255, 234, 133, 0.9) 49%, rgba(255, 234, 133, 0.9) 51%, transparent 51%, transparent 100%),
    /* Third layer - crossing wires */
    linear-gradient(128deg, transparent 0%, transparent 48%, rgba(255, 213, 74, 0.85) 48%, rgba(255, 213, 74, 0.85) 52%, transparent 52%, transparent 100%),
    linear-gradient(38deg, transparent 0%, transparent 49%, #ffea85 49%, #ffea85 51%, transparent 51%, transparent 100%),
    linear-gradient(175deg, transparent 0%, transparent 48.5%, rgba(255, 179, 71, 0.8) 48.5%, rgba(255, 179, 71, 0.8) 51.5%, transparent 51.5%, transparent 100%),
    linear-gradient(65deg, transparent 0%, transparent 49%, rgba(255, 213, 74, 0.7) 49%, rgba(255, 213, 74, 0.7) 51%, transparent 51%, transparent 100%);
  background-size: 
    100px 100px,
    85px 85px,
    120px 120px,
    75px 75px,
    95px 95px,
    110px 110px,
    80px 80px,
    90px 90px,
    105px 105px,
    70px 70px,
    115px 115px,
    88px 88px,
    78px 78px,
    92px 92px;
  background-position: 
    15px 25px,
    45px 10px,
    5px 40px,
    60px 20px,
    30px 50px,
    50px 5px,
    20px 60px,
    55px 35px,
    10px 15px,
    40px 55px,
    25px 30px,
    5px 50px,
    58px 8px,
    35px 42px;
  background-repeat: no-repeat;
  opacity: 0.25;
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card-wrapper:hover .service-front::after {
  opacity: 0.4;
  transform: rotate(22deg) scale(1.08);
}

.service-icon,
.service-title,
.service-title-pill,
.service-copy,
.service-link {
  position: relative;
  z-index: 1;
}

.service-back {
  transform: rotateY(180deg);
  justify-content: space-between;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: radial-gradient(circle at top, #ffea85, #ffd54a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(255, 213, 74, 0.4);
  will-change: transform;
}

.service-icon i {
  font-size: 1.5rem;
  color: #181008;
  z-index: 1;
}

.service-title {
  margin: 0;
  font-size: 2.25rem;
  color: var(--text-main);
}

.service-title-pill {
  margin: 0 0 16px;
  font-size: 1.1rem;
  color: var(--accent-hot);
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.2), transparent),
    rgba(8, 4, 16, 0.92);
  border: 1px solid rgba(255, 213, 74, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  overflow: visible;
}

.service-title-pill::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(
      90deg,
      transparent 0%,
      transparent 40%,
      #ffd54a 45%,
      #ffea85 50%,
      #ffd54a 55%,
      transparent 60%,
      transparent 100%
    )
    border-box;
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: shineBorder 2s linear infinite;
  z-index: -1;
}

.service-copy {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.service-link {
  border: 0;
  background: none;
  color: var(--accent-hot);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  text-decoration: none;
}

.service-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.service-link span {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.service-link:hover span {
  transform: translateX(4px);
}

/* GENERIC SECTION STYLES */

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-tagline {
  margin: 0;
  font-size: 1.5rem;
  max-width: 26rem;
  color: var(--text-muted);
}

.section-tagline--below {
  margin-top: 0;
  margin-bottom: 32px;
  max-width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 24px;
}

.chunky-heading {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.highlight-box {
  display: inline-flex;
  padding: 2px 10px;
  margin: 0 4px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hot);
  border: 1px solid rgba(255, 213, 74, 0.4);
}

.highlight-underline {
  position: relative;
  display: inline-block;
}

.highlight-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--danger));
  opacity: 0.7;
}

.body-text {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.quirk-list {
  list-style: none;
  margin: 0;
  padding: 10px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.1), transparent),
    rgba(8, 6, 18, 0.96);
}

.quirk-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 8px 6px;
}

.quirk-label {
  font-size: 0.75rem;
  color: var(--accent-hot);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.quirk-text {
  font-size: 0.9rem;
  color: var(--text-main);
}

/* TRUSTED BRANDS SECTION */

.trusted-brands-section {
  margin-top: 0;
  margin-bottom: 128px;
  padding-top: 0;
  padding-bottom: 0;
}

.trusted-brands-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  margin: 0 0 48px 0;
}

.brands-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

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

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

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

.brand-card {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.08), transparent),
    linear-gradient(135deg, rgba(10, 5, 20, 0.95), rgba(7, 4, 15, 0.95));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  --glow-opacity: 0;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid var(--accent);
  opacity: var(--glow-opacity);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  box-shadow: inset 0 0 20px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.8)),
              inset 0 0 40px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.4));
}

.brand-card img {
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
  position: relative;
  z-index: 0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .trusted-brands-section {
    margin-bottom: 60px;
  }
  
  .services-header {
    margin-top: 60px;
  }

  .trusted-brands-heading {
    font-size: 1.25rem;
    margin-bottom: 32px;
  }

  .brand-card {
    width: 160px;
    height: 100px;
    padding: 16px;
  }

  .brand-card img {
    height: 80px;
  }

  .brands-slider-track {
    gap: 24px;
    animation: brands-scroll 20s linear infinite;
  }
}

/* WORK SECTION */

.section-work .container {
  width: 100%;
  max-width: 1268px;
  margin: 0 auto;
  padding: 32px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.16), transparent),
    rgba(7, 4, 15, 0.96);
  box-shadow: var(--shadow-soft);
}

/* Work Header */
.work-header {
  padding: 24px 0;
  /* margin-bottom: 48px; */
}

.work-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.work-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  margin: 0;
  color: var(--text-main);
}

.work-tagline {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 100%;
}

/* Featured Projects Container */
.featured-projects-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 48px;
  padding-top: 32px;
}

/* Featured Project Card */
.featured-project-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.12), transparent),
    linear-gradient(135deg, rgba(10, 5, 20, 0.98), rgba(7, 4, 15, 0.98));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 213, 74, 0.08);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  position: relative;
  overflow: hidden;
  transform: scale(0.85);
  opacity: 0.7;
  will-change: transform, opacity;
}

.featured-project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 213, 74, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.featured-project-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 213, 74, 0.15);
}

.featured-project-card:hover::before {
  opacity: 1;
}

.featured-project-logo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.featured-project-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
  border-radius: 24px;
}

.featured-project-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-project-content .pill {
  align-self: flex-start;
  margin-bottom: 4px;
  position: relative;
  overflow: visible;
}

.featured-project-content .pill::after {
  opacity: 0;
  transition: opacity 0.3s ease-out;
  z-index: 0 !important;
}

.featured-project-card:hover .featured-project-content .pill::after {
  opacity: 1;
}

.featured-project-title {
  font-size: 2.25rem; /* 36px */
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.featured-project-description {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 600px;
}

.featured-project-cta {
  align-self: flex-start;
  margin-top: 8px;
}

.featured-project-cta span {
  margin-left: 8px;
  transition: transform 0.3s ease-out;
}

.featured-project-cta:hover span {
  transform: translateX(4px);
}

/* Works Slider */
.works-slider-wrapper {
  position: relative;
  margin-bottom: 48px;
  padding-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.works-slider {
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: calc(100% - 120px);
}

.works-slider-track {
  display: flex;
  gap: 48px;
  position: relative;
}

.works-slide {
  flex: 0 0 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}

.works-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

.works-slide .featured-project-card {
  transform: scale(1);
  opacity: 1;
  max-width: 100%;
}

.works-slider-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  z-index: 10;
  position: relative;
}

.works-slider-nav-btn:hover {
  background: rgba(255, 213, 74, 0.15);
  border-color: rgba(255, 213, 74, 0.4);
  color: var(--accent);
  transform: scale(1.1);
}

.works-slider-nav-btn:active {
  transform: scale(0.95);
}

.works-slider-nav-prev {
  order: 1;
}

.works-slider-nav-next {
  order: 3;
}

.works-slider {
  order: 2;
}

.work-marquee {
  overflow: hidden;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 3, 12, 0.95);
  padding: 6px 0;
  margin-bottom: 22px;
}

.marquee-track {
  display: inline-flex;
  gap: 30px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--text-muted);
}

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

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  padding: 16px 16px 18px;
  min-height: 300px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 5, 18, 0.96);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.case-card:hover::after {
  opacity: 1;
}

.case-card--accent {
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.18), transparent),
    rgba(12, 6, 24, 0.98);
}

.case-pill {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-hot);
}

.case-title {
  margin: 0;
  font-size: 1.1rem;
}

.case-link {
  align-self: flex-start;
  margin-top: auto;
  border: 0;
  background: none;
  color: var(--accent-hot);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.case-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* TEAM */

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.12), transparent),
    rgba(5, 3, 12, 0.96);
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  padding: 7px 0;
}

.meta-line:last-child {
  border-bottom: 0;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--accent-hot);
}

.meta-value {
  text-align: right;
}

/* PROJECT HIGHLIGHTS SECTION */

.highlights-header {
  margin-bottom: 64px;
}

.highlights-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.highlights-header-left {
  flex: 1;
}

.highlights-header .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.highlights-header .pill i {
  font-size: 0.85em;
}

.highlights-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  margin: 14px 0 10px;
  line-height: 1.2;
}

.highlights-title .title-white {
  color: var(--text-main);
}

.highlights-title .title-accent {
  color: var(--accent-hot);
}

.highlights-tagline {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.highlights-view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--accent-hot);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease-out;
  white-space: nowrap;
  margin-top: 8px;
}

.highlights-view-link span {
  transition: transform 0.3s ease-out;
  font-size: 0.9em;
}

.highlights-view-link:hover {
  gap: 12px;
}

.highlights-view-link:hover span {
  transform: translate(4px, -4px);
}

/* Featured Slider */
.featured-slider {
  position: relative;
  overflow: hidden;
}

.featured-slider-track {
  position: relative;
}

.featured-slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
  pointer-events: none;
}

.featured-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

.featured-slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.featured-slide-left {
  display: flex;
  align-items: center;
}

.featured-project-card-slider {
  width: 100%;
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.12), transparent),
    linear-gradient(135deg, rgba(10, 5, 20, 0.98), rgba(7, 4, 15, 0.98));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 213, 74, 0.08);
}

.featured-project-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.featured-project-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-hot);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-main);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.featured-project-name {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--text-main);
}

.featured-project-tagline {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 32px 0;
}

.featured-project-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.featured-project-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 213, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hot);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.detail-content {
  flex: 1;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-hot);
  font-weight: 600;
  margin-bottom: 8px;
}

.detail-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.featured-project-impact {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 213, 74, 0.1);
  border: 1px solid rgba(255, 213, 74, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.impact-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.impact-metric {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-hot);
}

.featured-slide-right {
  position: relative;
}

.featured-slide-image {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
}

.featured-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.05);
  border-radius: 24px;
}

/* HHT Chennai image with white background */
.featured-slide-image-white {
  background: #ffffff !important;
  padding: 40px !important;
}

.featured-slide-image-white img {
  object-fit: contain;
}

.featured-image-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 320px;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.overlay-content i {
  color: var(--accent-hot);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.overlay-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.overlay-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.overlay-metric {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-hot);
  margin: 0;
}

/* Slider Navigation */
.featured-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.slider-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-out;
  font-size: 1.2rem;
}

.slider-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-main);
}

.slider-nav-btn.slider-nav-next {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-main);
}

.slider-nav-btn.slider-nav-next:hover {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  transform: scale(1.05);
}

.slider-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 968px) {
  .featured-slide-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .featured-slide-image {
    height: 400px;
  }

  .highlights-header-top {
    flex-direction: column;
    gap: 24px;
  }

  .highlights-view-link {
    align-self: flex-start;
  }
}

/* TESTIMONIALS SECTION */

#testimonials {
  position: relative;
  overflow: hidden;
}

/* Floating Background Icons */
.testimonials-float-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.float-icon {
  position: absolute;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0;
  transform: scale(0) rotate(-20deg);
}

.float-icon i {
  display: block;
}

.float-icon-1 {
  top: 60px;
  left: 10%;
  font-size: 2.2rem;
}

.float-icon-2 {
  top: 80px;
  right: 12%;
  font-size: 1.8rem;
}

.float-icon-3 {
  top: 30px;
  left: 25%;
  font-size: 2.5rem;
}

.float-icon-4 {
  top: 100px;
  right: 25%;
  font-size: 1.6rem;
}

.float-icon-5 {
  top: 50px;
  right: 8%;
  font-size: 1.5rem;
}

.float-icon-6 {
  top: 110px;
  left: 5%;
  font-size: 1.4rem;
}

.float-icon-7 {
  top: 40px;
  right: 22%;
  font-size: 2rem;
}

.float-icon-8 {
  top: 90px;
  left: 22%;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .float-icon {
    font-size: 1.2rem;
  }
  
  .float-icon-1 { font-size: 1.4rem; top: 40px; left: 5%; }
  .float-icon-2 { font-size: 1.2rem; top: 60px; right: 5%; }
  .float-icon-3 { font-size: 1.6rem; top: 20px; left: 20%; }
  .float-icon-4 { font-size: 1rem; top: 80px; right: 18%; }
  .float-icon-5 { font-size: 1rem; top: 35px; right: 3%; }
  .float-icon-6 { font-size: 0.9rem; top: 85px; left: 3%; }
  .float-icon-7 { font-size: 1.3rem; top: 25px; right: 15%; }
  .float-icon-8 { font-size: 1rem; top: 70px; left: 15%; }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  margin: 0;
}

.testimonials-title .title-text {
  color: var(--text-main);
  display: block;
  margin-bottom: 8px;
}

.testimonials-title .title-accent {
  color: var(--accent-hot);
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.08), transparent),
    linear-gradient(135deg, rgba(10, 5, 20, 0.95), rgba(7, 4, 15, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  transition: box-shadow 0.3s ease-out;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform-style: preserve-3d;
  will-change: transform;
}

.testimonial-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 213, 74, 0.15);
}

.testimonial-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 213, 74, 0.2);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-user-info {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.testimonial-handle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}

.testimonial-social {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hot);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
  flex: 1;
}

.testimonial-engagement {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.engagement-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.engagement-item i {
  color: var(--accent-hot);
  font-size: 1rem;
}

.engagement-item span {
  font-weight: 500;
}

.testimonial-timestamp {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: -8px;
}

/* Quote Style Testimonial Card */
.testimonial-card-quote {
  position: relative;
  padding: 40px 32px;
}

.testimonial-quote-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  z-index: 0;
}

.testimonial-quote-icon .quote-mark {
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent-hot);
  opacity: 0.4;
  line-height: 1;
  font-family: "Times New Roman", Times, "Playfair Display", "Cormorant Garamond", "Libre Baskerville", serif;
  display: block;
  font-style: italic;
}

.testimonial-quote-text {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-main);
  margin: 0 0 32px 0;
  padding-top: 20px;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}



.testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.testimonial-author-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 32px;
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: calc(100% - 120px);
}

.testimonials-slider-track {
  display: flex;
  gap: 48px;
  position: relative;
  width: 100%;
}

.testimonials-slide {
  flex: 0 0 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  will-change: transform, opacity;
}

.testimonials-slide:first-child {
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  pointer-events: auto !important;
}

.testimonials-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  pointer-events: auto !important;
}

.testimonials-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.12), transparent),
    linear-gradient(135deg, rgba(10, 5, 20, 0.98), rgba(7, 4, 15, 0.98));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 213, 74, 0.08);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  margin-bottom: 48px;
}

.testimonials-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 213, 74, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.testimonials-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 213, 74, 0.15);
}

.testimonials-card:hover::before {
  opacity: 1;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.testimonials-content .testimonial-quote-icon {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 0;
}

.testimonials-content .testimonial-quote-icon .quote-mark {
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent-hot);
  opacity: 0.4;
  line-height: 1;
  font-family: "Times New Roman", Times, "Playfair Display", "Cormorant Garamond", "Libre Baskerville", serif;
  display: block;
  font-style: italic;
}

.testimonials-content .testimonial-quote-text {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-main);
  margin: 0 0 32px 0;
  padding-top: 20px;
  z-index: 1;
  font-style: italic;
}

.testimonials-content .testimonial-author-info {
  margin-top: 0;
}

.testimonials-content .testimonial-author-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.testimonials-content .testimonial-author-title {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}

.testimonials-image {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-image .testimonial-author-avatar {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.testimonials-image .testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-video-wrapper {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  background: #000;
}

.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 213, 74, 0.9);
  border: 3px solid var(--accent);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.testimonial-video-play-btn:hover {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 213, 74, 0.6);
}

.testimonial-video-play-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.testimonial-video-play-btn i {
  font-size: 2rem;
}

.testimonial-video-play-btn .play-icon {
  margin-left: 4px;
}

.testimonial-video-play-btn .pause-icon {
  margin: 0;
}

.testimonial-video-wrapper.playing .testimonial-video-play-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.testimonial-video-wrapper.playing:hover .testimonial-video-play-btn {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-video-wrapper.playing .testimonial-video-play-btn .play-icon {
  display: none !important;
}

.testimonial-video-wrapper.playing .testimonial-video-play-btn .pause-icon {
  display: block !important;
}

.testimonial-video-wrapper.playing:hover .testimonial-video-play-btn .play-icon {
  display: none !important;
}

.testimonial-video-wrapper.playing:hover .testimonial-video-play-btn .pause-icon {
  display: block !important;
}

.testimonial-video-wrapper:not(.playing) .testimonial-video-play-btn {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-video-wrapper:not(.playing) .testimonial-video-play-btn .play-icon {
  display: block;
}

.testimonial-video-wrapper:not(.playing) .testimonial-video-play-btn .pause-icon {
  display: none;
}

.testimonials-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  align-self: center;
}

.testimonials-nav-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.testimonials-nav-btn:active {
  transform: scale(0.95);
}

.testimonials-nav-btn i {
  font-size: 1.25rem;
}

/* READY TO COLLABORATE SECTION */

.section-collaborate {
  padding: 32px 0;
  position: relative;
  background: radial-gradient(ellipse at top right, rgba(255, 213, 74, 0.08) 0%, transparent 50%);
}

.collaborate-content {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.collaborate-left {
  display: flex;
  flex-direction: column;
}

.collaborate-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  width: fit-content;
  position: relative;
}

.collaborate-pill i {
  color: var(--accent);
  font-size: 0.9em;
}

.collaborate-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  text-align: left;
}

.collaborate-title .title-highlight {
  color: var(--accent-hot);
  position: relative;
  display: inline-block;
}

.collaborate-title .title-highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  opacity: 0.6;
  border-radius: 2px;
}

.collaborate-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 40px 0;
  text-align: left;
}

.collaborate-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.collaborate-right {
  position: relative;
}

.collaborate-feature-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.08), transparent),
    linear-gradient(135deg, rgba(10, 5, 20, 0.95), rgba(7, 4, 15, 0.95));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease-out;
  will-change: transform;
}

.collaborate-feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: radial-gradient(circle at top, #ffea85, #ffd54a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
  box-shadow: 0 4px 12px rgba(255, 213, 74, 0.4);
}

.feature-icon i {
  font-size: 1.5rem;
  color: #181008;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 12px 0;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.collaborate-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.collaborate-cta .btn {
  min-width: 180px;
}

.collaborate-cta .btn-primary span {
  margin-left: 8px;
  transition: transform 0.3s ease-out;
}

.collaborate-cta .btn-primary:hover span {
  transform: translateX(4px);
}

/* DROPDOWN MENU */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: 8px;
  min-width: 220px;
  background: rgba(5, 3, 12, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(255, 213, 74, 0.1);
  color: var(--accent-hot);
  border-color: transparent;
  transform: none;
}

/* SERVICES PAGE HERO */
.services-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.22), transparent),
    linear-gradient(120deg, #120918, #050308 45%, #1b101e);
  padding-top: 120px;
  padding-bottom: 32px;
}

.services-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.services-hero-icon {
  font-size: 5rem;
  color: var(--text-main);
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Social Media Hero - Glowing Center Icon */
.social-hero-icon-glow {
  color: var(--accent);
  text-shadow: 
    0 0 20px rgba(255, 213, 74, 0.8),
    0 0 40px rgba(255, 213, 74, 0.6),
    0 0 60px rgba(255, 213, 74, 0.4);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(255, 213, 74, 0.8),
      0 0 40px rgba(255, 213, 74, 0.6),
      0 0 60px rgba(255, 213, 74, 0.4);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(255, 213, 74, 1),
      0 0 60px rgba(255, 213, 74, 0.8),
      0 0 90px rgba(255, 213, 74, 0.6);
  }
}

/* Floating Social Icons */
.social-hero {
  position: relative;
  overflow: visible;
}

.social-hero .services-hero-content {
  position: relative;
  z-index: 2;
}

.social-float-element {
  position: absolute;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transform-origin: center center;
}

/* Left side floating icons - positioned relative to center icon */
.social-float-left-1 {
  top: calc(10% - 200px);
  left: 30%;
}

.social-float-left-2 {
  top: calc(28% - 200px);
  left: 25%;
}

.social-float-left-3 {
  top: calc(48% - 200px);
  left: 32%;
}

.social-float-left-4 {
  top: calc(68% - 200px);
  left: 27%;
}

/* Right side floating icons - positioned relative to center icon */
.social-float-right-1 {
  top: calc(18% - 200px);
  right: 30%;
}

.social-float-right-2 {
  top: calc(35% - 200px);
  right: 25%;
}

.social-float-right-3 {
  top: calc(55% - 200px);
  right: 32%;
}

.social-float-right-4 {
  top: calc(75% - 200px);
  right: 27%;
}

/* Our Social Footprints Section */
.section-social-footprints {
  padding: 120px 0;
  background: var(--bg-primary);
}

.section-social-footprints .container {
  width: 100%;
  max-width: 1268px;
  margin: 0 auto;
  padding: 32px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.16), transparent),
    rgba(7, 4, 15, 0.96);
  box-shadow: var(--shadow-soft);
}

.social-footprints-header {
  text-align: center;
  margin-bottom: 64px;
  padding: 24px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-footprints-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 16px 0;
}

.social-footprints-header .social-footprints-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 100%;
}

.social-footprints-slider-wrapper {
  position: relative;
  margin-bottom: 48px;
  padding-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-footprints-slider {
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: calc(100% - 120px);
}

.social-footprints-slider-track {
  display: flex;
  gap: 48px;
  position: relative;
  width: 100%;
}

.social-footprints-slide {
  flex: 0 0 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  will-change: transform, opacity;
}

.social-footprints-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

.social-footprints-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.12), transparent),
    linear-gradient(135deg, rgba(10, 5, 20, 0.98), rgba(7, 4, 15, 0.98));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 213, 74, 0.08);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.social-footprints-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 213, 74, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.social-footprints-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 213, 74, 0.15);
}

.social-footprints-card:hover::before {
  opacity: 1;
}

.social-footprints-card::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  background-image: 
    /* First layer - tangled wires */
    linear-gradient(135deg, transparent 0%, transparent 48.5%, #ffd54a 48.5%, #ffd54a 51.5%, transparent 51.5%, transparent 100%),
    linear-gradient(72deg, transparent 0%, transparent 49%, #ffea85 49%, #ffea85 51%, transparent 51%, transparent 100%),
    linear-gradient(158deg, transparent 0%, transparent 48%, #ffb347 48%, #ffb347 52%, transparent 52%, transparent 100%),
    linear-gradient(95deg, transparent 0%, transparent 49%, #a59ccc 49%, #a59ccc 51%, transparent 51%, transparent 100%),
    linear-gradient(42deg, transparent 0%, transparent 48.5%, rgba(255, 213, 74, 0.9) 48.5%, rgba(255, 213, 74, 0.9) 51.5%, transparent 51.5%, transparent 100%),
    linear-gradient(168deg, transparent 0%, transparent 49%, rgba(255, 234, 133, 0.8) 49%, rgba(255, 234, 133, 0.8) 51%, transparent 51%, transparent 100%),
    /* Second layer - more tangles */
    linear-gradient(112deg, transparent 0%, transparent 48%, #ffd54a 48%, #ffd54a 52%, transparent 52%, transparent 100%),
    linear-gradient(85deg, transparent 0%, transparent 49%, rgba(255, 179, 71, 0.7) 49%, rgba(255, 179, 71, 0.7) 51%, transparent 51%, transparent 100%),
    linear-gradient(145deg, transparent 0%, transparent 48.5%, rgba(165, 156, 204, 0.6) 48.5%, rgba(165, 156, 204, 0.6) 51.5%, transparent 51.5%, transparent 100%),
    linear-gradient(58deg, transparent 0%, transparent 49%, rgba(255, 234, 133, 0.9) 49%, rgba(255, 234, 133, 0.9) 51%, transparent 51%, transparent 100%),
    /* Third layer - crossing wires */
    linear-gradient(128deg, transparent 0%, transparent 48%, rgba(255, 213, 74, 0.85) 48%, rgba(255, 213, 74, 0.85) 52%, transparent 52%, transparent 100%),
    linear-gradient(38deg, transparent 0%, transparent 49%, #ffea85 49%, #ffea85 51%, transparent 51%, transparent 100%),
    linear-gradient(175deg, transparent 0%, transparent 48.5%, rgba(255, 179, 71, 0.8) 48.5%, rgba(255, 179, 71, 0.8) 51.5%, transparent 51.5%, transparent 100%),
    linear-gradient(65deg, transparent 0%, transparent 49%, rgba(255, 213, 74, 0.7) 49%, rgba(255, 213, 74, 0.7) 51%, transparent 51%, transparent 100%);
  background-size: 
    100px 100px,
    85px 85px,
    120px 120px,
    75px 75px,
    95px 95px,
    110px 110px,
    80px 80px,
    90px 90px,
    105px 105px,
    70px 70px,
    115px 115px,
    88px 88px,
    78px 78px,
    92px 92px;
  background-position: 
    15px 25px,
    45px 10px,
    5px 40px,
    60px 20px,
    30px 50px,
    50px 5px,
    20px 60px,
    55px 35px,
    10px 15px,
    40px 55px,
    25px 30px,
    5px 50px,
    58px 8px,
    35px 42px;
  background-repeat: no-repeat;
  opacity: 0.25;
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-footprints-card:hover::after {
  opacity: 0.4;
  transform: rotate(22deg) scale(1.08);
}

.social-footprints-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.social-footprints-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.social-footprints-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.social-footprints-embed {
  width: 100%;
 /* min-height: 500px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px;
  position: relative;
  overflow: visible;
}

.social-footprints-embed::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(255, 213, 74, 0.8),
              inset 0 0 40px rgba(255, 213, 74, 0.4);
  animation: embed-glow-blink 2.5s ease-in-out infinite;
}

@keyframes embed-glow-blink {
  0%, 100% {
    opacity: 0;
  }
  13% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  48% {
    opacity: 0;
  }
}

/* Influencer embed - smaller height for image display */
.social-footprints-embed-image {
  width: 100%;
  min-height: 400px;
  max-height: 650px;
  display: flex;
  align-items: start;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px;
  position: relative;
  overflow: visible;
}

.social-footprints-embed-image::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(255, 213, 74, 0.8),
              inset 0 0 40px rgba(255, 213, 74, 0.4);
  animation: embed-glow-blink 2.5s ease-in-out infinite;
}

.social-footprints-embed iframe {
  width: 100%;
  max-width: 540px;
  min-width: 326px;
  height: 383px;
  border: none;
  border-radius: 3px;
  position: relative;
  z-index: 2;
}

.social-footprints-embed blockquote.instagram-media {
  background: #FFF;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 1px 0 rgba(0,0,0,0.5), 0 1px 10px 0 rgba(0,0,0,0.15);
  margin: 1px;
  max-width: 540px;
  min-width: 326px;
  padding: 0;
  width: calc(100% - 2px);
  position: relative;
  z-index: 2;
}

.social-footprints-embed-image img {
  width: 100%;
  height: -webkit-fill-available;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  position: relative;
  z-index: 2;
}

.social-footprints-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-footprints-nav-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.social-footprints-nav-btn:active {
  transform: scale(0.95);
}

.social-footprints-nav-btn i {
  font-size: 1.25rem;
}

/* Our Event Directions Section - Same style as Social Footprints */
.section-event-directions {
  padding: 120px 0 32px 0;
  background: var(--bg-primary);
}

.section-event-directions .container {
  width: 100%;
  max-width: 1268px;
  margin: 0 auto;
  padding: 32px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.16), transparent),
    rgba(7, 4, 15, 0.96);
  box-shadow: var(--shadow-soft);
}

.event-directions-header {
  text-align: center;
  margin-bottom: 64px;
  padding: 24px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-directions-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 16px 0;
}

.event-directions-header .event-directions-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 100%;
}

.event-directions-slider-wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 32px;
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.event-directions-slider {
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: calc(100% - 120px);
}

.event-directions-slider-track {
  display: flex;
  gap: 48px;
  position: relative;
  width: 100%;
  /* min-height: 600px; */
}

.event-directions-slide {
  flex: 0 0 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  will-change: transform, opacity;
}

.event-directions-slide:first-child {
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  pointer-events: auto !important;
}

.event-directions-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  pointer-events: auto !important;
}

.event-directions-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.12), transparent),
    linear-gradient(135deg, rgba(10, 5, 20, 0.98), rgba(7, 4, 15, 0.98));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 213, 74, 0.08);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  margin-bottom: 48px;
}

.event-directions-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 213, 74, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.event-directions-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 213, 74, 0.15);
}

.event-directions-card:hover::before {
  opacity: 1;
}

.event-directions-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-directions-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.event-directions-service {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  max-width: 500px;
}

.event-directions-embed {
  width: 100%;
  position: relative;
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 0;
  background: #000;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.event-directions-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 3px;
}

.event-directions-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  align-self: center;
}

.event-directions-nav-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.event-directions-nav-btn:active {
  transform: scale(0.95);
}

.event-directions-nav-btn i {
  font-size: 1.25rem;
}

/* Product Gallery Slider - 1 Image at Once (Full Width) */
.product-gallery-section {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  margin-top: 0;
  padding-top: 60px;
  border-top: 1px solid var(--border-subtle);
  direction: ltr; /* Ensure slider always uses left-to-right direction */
}

/* Ensure slider works correctly in reverse sections */
.service-detail-reverse .product-gallery-section {
  direction: ltr;
}

/* Artist Gallery Slider - 2 Images at Once */
.artist-gallery-slider .product-gallery-slider-track {
  gap: 24px;
}

.artist-gallery-slider .product-gallery-slide {
  width: calc((100% - 24px) / 2);
  min-height: 600px;
}

/* Food Gallery Slider - Taller height for full image display */
.food-gallery-slider .product-gallery-slide {
  min-height: 700px;
}

.section-visual-stories-header {
  padding: 120px 0 0 0;
  background: var(--bg-primary);
}

.section-visual-stories-header .container {
  width: 100%;
  max-width: 1268px;
  margin: 0 auto;
  padding: 32px 20px;
}

.product-gallery-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.product-gallery-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.product-gallery-slider-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

.product-gallery-slide {
  width: 100%;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--accent);
  background: #000;
  position: relative;
  display: block;
  min-height: 500px;
}

.product-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.product-gallery-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.product-gallery-nav-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.product-gallery-nav-btn:active {
  transform: scale(0.95);
}

.product-gallery-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-gallery-nav-btn:disabled:hover {
  background: transparent;
  color: var(--accent);
  transform: scale(1);
}

.product-gallery-nav-btn i {
  font-size: 1.25rem;
}

@media (max-width: 968px) {
  .social-footprints-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .social-footprints-slider {
    max-width: calc(100% - 100px);
  }
  
  .social-footprints-title {
    font-size: 2rem;
  }
  
  .social-footprints-name {
    font-size: 2rem;
  }
  
  .event-directions-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .event-directions-slider {
    max-width: calc(100% - 100px);
  }
  
  .event-directions-title {
    font-size: 2rem;
  }
  
  .event-directions-name {
    font-size: 2rem;
  }
  
  .product-gallery-slider {
    max-width: calc(100% - 100px);
  }
  
  .product-gallery-slide {
    min-height: 400px;
  }
  
  /* Artist gallery - show 1 image on tablet */
  .artist-gallery-slider .product-gallery-slide {
    width: 100%;
    min-height: 400px;
  }
  
  .artist-gallery-slider .product-gallery-slider-track {
    gap: 0;
  }
  
  /* Food gallery - adjust height for tablet */
  .food-gallery-slider .product-gallery-slide {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .product-gallery-slider {
    max-width: calc(100% - 80px);
  }
  
  .product-gallery-slide {
    min-height: 300px;
  }
  
  .product-gallery-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .product-gallery-nav-btn i {
    font-size: 1rem;
  }
  
  /* Artist gallery - show 1 image on mobile */
  .artist-gallery-slider .product-gallery-slide {
    width: 100%;
    min-height: 300px;
  }
  
  .artist-gallery-slider .product-gallery-slider-track {
    gap: 0;
  }
  
  /* Food gallery - adjust height for mobile */
  .food-gallery-slider .product-gallery-slide {
    min-height: 400px;
  }
}

/* Event Directions Hero Floating Icons */
.event-float-element {
  position: absolute;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transform-origin: center center;
}

/* Left side floating icons */
.event-float-left-1 {
  top: calc(10% - 200px);
  left: 30%;
}

.event-float-left-2 {
  top: calc(28% - 200px);
  left: 25%;
}

.event-float-left-3 {
  top: calc(48% - 200px);
  left: 32%;
}

.event-float-left-4 {
  top: calc(68% - 200px);
  left: 27%;
}

/* Right side floating icons */
.event-float-right-1 {
  top: calc(18% - 200px);
  right: 30%;
}

.event-float-right-2 {
  top: calc(35% - 200px);
  right: 25%;
}

.event-float-right-3 {
  top: calc(55% - 200px);
  right: 32%;
}

.event-float-right-4 {
  top: calc(75% - 200px);
  right: 27%;
}

/* Creative Branding Hero Floating Icons */
.branding-float-element {
  position: absolute;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transform-origin: center center;
}

/* Left side floating icons */
.branding-float-left-1 {
  top: calc(10% - 200px);
  left: 30%;
}

.branding-float-left-2 {
  top: calc(28% - 200px);
  left: 25%;
}

.branding-float-left-3 {
  top: calc(48% - 200px);
  left: 32%;
}

.branding-float-left-4 {
  top: calc(68% - 200px);
  left: 27%;
}

/* Right side floating icons */
.branding-float-right-1 {
  top: calc(18% - 200px);
  right: 30%;
}

.branding-float-right-2 {
  top: calc(35% - 200px);
  right: 25%;
}

.branding-float-right-3 {
  top: calc(55% - 200px);
  right: 32%;
}

.branding-float-right-4 {
  top: calc(75% - 200px);
  right: 27%;
}

/* Influencer Marketing Hero Floating Icons */
.influencer-float-element {
  position: absolute;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transform-origin: center center;
}

/* Left side floating icons */
.influencer-float-left-1 {
  top: calc(10% - 200px);
  left: 30%;
}

.influencer-float-left-2 {
  top: calc(28% - 200px);
  left: 25%;
}

.influencer-float-left-3 {
  top: calc(48% - 200px);
  left: 32%;
}

.influencer-float-left-4 {
  top: calc(68% - 200px);
  left: 27%;
}

/* Right side floating icons */
.influencer-float-right-1 {
  top: calc(18% - 200px);
  right: 30%;
}

.influencer-float-right-2 {
  top: calc(35% - 200px);
  right: 25%;
}

.influencer-float-right-3 {
  top: calc(55% - 200px);
  right: 32%;
}

.influencer-float-right-4 {
  top: calc(75% - 200px);
  right: 27%;
}

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

.services-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-hero-cta {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  opacity: 1;
  visibility: visible;
}

/* SERVICES PAGE MAIN HERO */
.services-hero-main {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.services-hero-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.services-hero-text {
  text-align: left;
}

.services-hero-main-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.1;
}

.services-hero-main-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 100%;
}

.services-hero-main-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-hero-floating {
  position: relative;
  width: 100%;
  height: 500px;
  min-height: 500px;
}

.services-float-element {
  position: absolute;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.services-float-mic {
  top: 5%;
  right: 5%;
  font-size: 3.5rem;
}

.services-float-music {
  top: 12%;
  right: 25%;
  font-size: 3rem;
}

.services-float-ticket {
  top: 20%;
  right: 45%;
  font-size: 2.8rem;
}

.services-float-camera {
  top: 30%;
  right: 10%;
  font-size: 3.2rem;
}

.services-float-video {
  top: 38%;
  right: 30%;
  font-size: 2.9rem;
}

.services-float-hashtag {
  top: 50%;
  right: 8%;
  font-size: 3rem;
}

.services-float-instagram {
  top: 60%;
  right: 28%;
  font-size: 2.7rem;
}

.services-float-headphones {
  top: 70%;
  right: 48%;
  font-size: 3.1rem;
}

.services-float-megaphone {
  top: 80%;
  right: 15%;
  font-size: 2.8rem;
}

.services-float-calendar {
  top: 90%;
  right: 35%;
  font-size: 2.5rem;
}

.service-detail-cta {
  margin-top: 32px;
  display: inline-block;
}

/* OUR PROCESS SECTION */
.section-process {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.process-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  --glow-opacity: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  opacity: var(--glow-opacity);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  box-shadow: inset 0 0 20px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.8)),
              inset 0 0 40px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.4));
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 213, 74, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.process-number,
.process-step-title,
.process-step-description {
  position: relative;
  z-index: 2;
}

.process-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
  opacity: 0.9;
}

.process-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.process-step-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-hero-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-hero-floating {
    height: 400px;
    min-height: 400px;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero-main-title {
    font-size: 2.5rem;
  }
  
  .services-hero-main-subtitle {
    font-size: 1.125rem;
  }
  
  .services-hero-floating {
    height: 300px;
    min-height: 300px;
  }
  
  .services-float-element {
    font-size: 2rem;
  }
  
  .services-float-mic {
    font-size: 2.5rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .process-title {
    font-size: 2rem;
  }
}

/* SERVICE DETAIL SECTIONS */
.service-detail-section {
  padding: 32px 0;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 60px;
  align-items: center;
}

.service-detail-card {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.06), transparent),
    linear-gradient(135deg, rgba(10, 5, 20, 0.95), rgba(7, 4, 15, 0.95));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glow-opacity: 0;
  transition: all 0.3s ease-out;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 213, 74, 0.6), rgba(255, 213, 74, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--glow-opacity);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  box-shadow: inset 0 0 20px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.8)),
              inset 0 0 40px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.4)),
              0 0 30px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.6));
}

.service-detail-card:hover {
  --glow-opacity: 1;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(255, 213, 74, 0.3);
  transform: translateY(-4px);
}

.service-detail-reverse .service-detail-content {
  direction: rtl;
}

.service-detail-reverse .service-detail-content > * {
  direction: ltr;
}

/* Alternative approach using grid order for better control */
.service-detail-reverse .service-detail-left {
  order: 2;
}

.service-detail-reverse .service-detail-right {
  order: 1;
}

.service-detail-left,
.service-detail-right {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  grid-row: 1;
}

.service-detail-icon {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-detail-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-detail-list i {
  color: var(--accent);
  font-size: 1.125rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.service-detail-list span {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* WORKS SECTION FOR EVENT DIRECTIONS PAGE */
.section-works {
  padding: 32px 0;
}

.works-header {
  text-align: center;
  margin-bottom: 48px;
}

.works-header .pill-soft {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.works-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.works-tagline {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.work-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 213, 74, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.work-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: #181008;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

.work-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  line-height: 1.3;
}

.work-card-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.work-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-hot);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
}

.work-card-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.work-card-link i {
  font-size: 0.875rem;
}

.works-cta {
  text-align: center;
}

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

@media (max-width: 768px) {
  .works-title {
    font-size: 2rem;
  }
  
  .works-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .work-card {
    padding: 24px 20px;
  }
}

/* OUR WORKS PAGE */
.works-hero {
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.22), transparent),
    linear-gradient(120deg, #120918, #050308 45%, #1b101e);
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.works-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 213, 74, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 213, 74, 0.1) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
  background-position: 0 0, 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

.works-hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.works-hero-metrics {
  position: relative;
}

.works-metrics-float {
  position: relative;
}

.works-hero-text {
  color: var(--text-main);
}

.works-hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.1;
}

.works-hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.works-hero-cta {
  display: inline-flex;
  align-items: center;
}

.metrics-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.metric-item {
  text-align: center;
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* SUCCESS STORIES SECTION */
.section-success-stories {
  padding: 80px 0;
  background: transparent;
}

.success-stories-header {
  text-align: center;
  margin-bottom: 48px;
}

.success-stories-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.success-stories-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.works-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

/* Filter buttons inherit all pill styles */
.filter-btn {
  cursor: pointer;
}

/* Override the pill animation - only show on active */
.pill.filter-btn::after {
  animation: none;
  opacity: 0;
}

.pill.filter-btn.active::after {
  animation: shineBorder 2s linear infinite;
  opacity: 1;
}

.filter-btn.active {
  color: var(--accent-hot);
  border-color: rgba(255, 255, 255, 0.2);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.work-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  --glow-opacity: 0;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  opacity: var(--glow-opacity);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  box-shadow: inset 0 0 20px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.8)),
              inset 0 0 40px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.4));
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 213, 74, 0.3);
}

.work-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
}

.work-card-image img {
  width: 60%;
  height: auto;
  max-width: 60%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.work-card-image.torque-logo {
  background: rgba(255, 255, 255, 0.05);
}

.work-card-image.torque-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: 65%;
  background: #ffffff;
  z-index: 1;
  border-radius: 6px;
}

.work-card-image.torque-logo img {
  position: relative;
  z-index: 2;
}

.work-card:hover .work-card-image img {
  transform: scale(1.05);
}

.work-card-content {
  padding: 32px;
  position: relative;
  z-index: 2;
}

.work-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.work-card-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.work-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.work-metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.work-metric-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1;
}

.work-metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .works-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .works-hero-title {
    font-size: 2.5rem;
  }
  
  .works-hero-description {
    font-size: 1.125rem;
  }
  
  .metrics-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  
  .metric-number {
    font-size: 2.5rem;
  }
  
  .success-stories-title {
    font-size: 2.5rem;
  }
  
  .works-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* OUR CLIENTS PAGE */
.section-clients {
  padding: 80px 0;
}

.clients-header {
  text-align: center;
  margin-bottom: 64px;
}

.clients-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.clients-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.client-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  --glow-opacity: 0;
  display: flex;
  flex-direction: column;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  opacity: var(--glow-opacity);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  box-shadow: inset 0 0 20px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.8)),
              inset 0 0 40px rgba(255, 213, 74, calc(var(--glow-opacity) * 0.4));
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 213, 74, 0.3);
}

.client-card-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 2;
}

.client-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
}

.client-card-content {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.client-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.client-card-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* JOIN CLIENT FAMILY SECTION */
.section-join-client {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.join-client-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.join-client-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.join-client-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.join-client-cta {
  display: inline-flex;
  align-items: center;
}

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

@media (max-width: 768px) {
  .clients-title {
    font-size: 2.5rem;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .join-client-title {
    font-size: 2rem;
  }
}

/* CONTACT US PAGE */
.section-contact {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 100px;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.contact-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 213, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-content {
  flex: 1;
}

.contact-detail-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.contact-detail-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-text:hover {
  color: var(--accent);
}

/* CONTACT FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 213, 74, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: flex-start;
  margin-top: 8px;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-top: 8px;
  display: none;
}

.form-message.show,
.form-message-success,
.form-message-error {
  display: block;
}

.form-message-success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #81c784;
}

.form-message-error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #e57373;
}

/* MAP SECTION */
.section-map {
  padding: 0 0 80px 0;
}

.map-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
}

@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .testimonials-slider-wrapper {
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
  }

  .testimonials-slider {
    max-width: 100%;
  }

  .testimonials-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .testimonials-content .testimonial-quote-text {
    font-size: 1.1rem;
  }

  .testimonials-content .testimonial-author-name {
    font-size: 1.25rem;
  }

  .testimonials-image .testimonial-author-avatar {
    max-width: 100%;
  }

  .testimonials-slider-wrapper {
    position: relative;
    padding-bottom: 80px;
  }

  .testimonials-nav-btn {
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 16px;
    transform: none;
    z-index: 10;
  }

  .testimonials-nav-prev {
    left: 50%;
    transform: translateX(calc(-100% - 16px));
  }

  .testimonials-nav-next {
    left: 50%;
    transform: translateX(16px);
  }
  
  .services-hero-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
  }
  
  .services-hero-title {
    font-size: 2.5rem;
  }
  
  .services-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }
  
  .service-detail-card {
    padding: 24px 20px;
  }
  
  .service-detail-reverse .service-detail-content {
    direction: ltr;
  }
  
  /* Mobile: Always show content first, images second */
  /* For reverse sections, swap the order so content comes first */
  .service-detail-reverse .service-detail-left {
    order: 2;
  }
  
  .service-detail-reverse .service-detail-right {
    order: 1;
  }
  
  /* For normal sections, ensure content (left) comes before image (right) */
  .service-detail-section:not(.service-detail-reverse) .service-detail-left {
    order: 1;
  }
  
  .service-detail-section:not(.service-detail-reverse) .service-detail-right {
    order: 2;
  }
  
  .service-detail-title {
    font-size: 2rem;
  }
  
  .service-detail-icon {
    font-size: 2.5rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    border: none;
    background: transparent;
    box-shadow: none;
  }
  
  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }

  .section-collaborate {
    padding: 32px 0;
  }

  .collaborate-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .collaborate-description {
    font-size: 1.125rem;
    margin-bottom: 48px;
  }

  .collaborate-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .collaborate-features {
    gap: 20px;
  }

  .collaborate-feature-card {
    padding: 24px 20px;
  }

  .collaborate-cta {
    flex-direction: column;
  }

  .collaborate-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .testimonials-header {
    margin-bottom: 48px;
  }

  .testimonial-card-quote {
    padding: 32px 24px;
  }

  .testimonial-quote-icon {
    font-size: 3rem;
    top: 16px;
    left: 20px;
  }
}

/* CONTACT */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 2.1fr);
  gap: 24px;
  padding: 22px 18px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at top, rgba(255, 213, 74, 0.2), transparent),
    linear-gradient(130deg, #13091b, #050308 45%, #1d101a);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* FOOTER */

.site-footer {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #0a0510 0%, #050308 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  max-width: 400px;
}

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

.footer-logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(255, 213, 74, 0.5));
}

.footer-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.1rem;
  transition: all 0.3s ease-out;
  text-decoration: none;
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 213, 74, 0.1);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 12px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease-out;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
  opacity: 0;
}

.footer-links a:hover {
  color: var(--accent-hot);
}

.footer-links a:hover::before {
  opacity: 1;
  animation: glitchLine 0.4s steps(2, start) forwards;
}

@keyframes glitchLine {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10% {
    transform: translate3d(10px, 0, 0);
  }
  20% {
    transform: translate3d(0, 4px, 0);
  }
  30% {
    transform: scale3d(0.1, 1.4, 1) translate3d(0, -25px, 0);
    transform-origin: 100% 0%;
  }
  40% {
    transform: scale3d(1, 0.3, 1) translate3d(0, 25px, 0);
  }
  50% {
    transform: scale3d(0.5, 0.3, 1) translate3d(-100px, -80px, 0);
  }
  60% {
    transform: scale3d(1, 1.25, 1) translate3d(10px, -5px, 0);
  }
  70% {
    transform: scale3d(0.5, 0.5, 1) translate3d(0, 20px, 0);
  }
  80% {
    transform: translate3d(-30px, 10px, 0) scale3d(1, 0.4, 1);
    transform-origin: 100% 0%;
  }
  90% {
    transform: scale3d(1, 0.5, 1) translate3d(0, -15px, 0);
    transform-origin: 0% 50%;
  }
  100% {
    opacity: 1;
  }
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.footer-contact i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact span {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact a {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease-out;
  display: inline-block;
  position: relative;
}

.footer-contact a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
  opacity: 0;
}

.footer-contact a:hover {
  color: var(--accent-hot);
}

.footer-contact a:hover::before {
  opacity: 1;
  animation: glitchLine 0.4s steps(2, start) forwards;
}

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

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

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.footer-legal a:hover {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .hero-bottom {
    max-width: 500px;
  }

  .hero-float-media--1 {
    width: 140px;
    height: 140px;
  }

  .hero-float-media--2,
  .hero-float-media--3 {
    width: 110px;
    height: 110px;
  }

  .hero-float-media--4 {
    width: 160px;
    height: 110px;
  }

  .perspective-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

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

  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .highlight-image {
    height: 200px;
    padding: 32px;
  }

  .highlight-content {
    padding: 24px;
  }

  .highlight-title {
    font-size: 1.25rem;
  }

  .highlight-description {
    font-size: 1.25rem;
  }

  .featured-projects-container {
    gap: 28px;
  }

  .featured-project-card {
    flex-direction: column;
    gap: 32px;
    padding: 36px 28px;
  }

  .featured-project-logo {
    width: 160px;
    height: 160px;
    padding: 24px;
  }

  .featured-project-title {
    font-size: 2rem; /* 32px on tablet */
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  .site-header {
    padding: 10px 16px;
    width: calc(100% - 40px);
    top: 16px;
  }

  .container {
    padding: 0 24px;
    overflow-x: hidden;
  }

  .section-3d-carousel {
    overflow-x: hidden;
  }

  .demoWrapper {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  .hero-layout {
    padding: 100px 24px 60px;
  }

  .nav-links {
    position: absolute;
    inset-inline: 20px;
    top: 64px;
    padding: 10px 10px 12px;
    border-radius: 14px;
    background: rgba(5, 3, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    flex-direction: column;
    transform-origin: top center;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
  }

  .nav-links a {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav.open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-layout {
    padding: 100px 28px 50px;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-float-media--1 {
    width: 100px;
    height: 100px;
    top: -25%;
    left: 2%;
    z-index: 1;
  }

  .hero-float-media--2 {
    width: 90px;
    height: 90px;
    top: -28%;
    right: 2%;
  }

  .hero-float-media--3 {
    width: 90px;
    height: 90px;
    bottom: 0;
    left: 2%;
  }

  .hero-float-media--4 {
    width: 100px;
    height: 90px;
    bottom: 8%;
    right: 2%;
  }

  .scroll-hint-vertical {
    position: static;
    flex-direction: row;
    margin-top: 30px;
    align-items: center;
  }

  .scroll-label {
    writing-mode: horizontal-tb;
    letter-spacing: 0.18em;
  }

  .perspective-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-card {
    min-height: 380px;
  }

  .service-front {
    min-height: 380px;
  }

  .brands-intro {
    margin-bottom: 50px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .work-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .view-all-btn {
    width: 100%;
    justify-content: center;
  }

  .about-grid,
  .team-grid,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .work-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-projects-container {
    gap: 24px;
    margin-bottom: 32px;
  }

  .featured-project-card {
    padding: 28px 20px;
    gap: 24px;
  }

  .featured-project-logo {
    width: 140px;
    height: 140px;
    padding: 20px;
  }

  .featured-project-title {
    font-size: 1.75rem; /* 28px on mobile */
  }

  .featured-project-description {
    font-size: 1.25rem;
  }

  .highlights-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .highlight-image {
    height: 180px;
    padding: 24px;
  }

  .highlight-content {
    padding: 20px;
  }

  .highlight-title {
    font-size: 1.125rem;
  }

  .highlight-description {
    font-size: 1.125rem;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    width: calc(100% - 32px);
    padding: 10px 12px;
  }

  .hero-layout {
    padding: 100px 20px 50px;
  }
}

/* 3D Carousel Section Styles */
.section-3d-carousel {
  padding: 80px 0 40px;
  overflow: visible;
}

.section-3d-carousel .work-header {
  margin-bottom: 20px;
}

.demoWrapper {
  width: 100%;
  max-width: 1000px;
  height: 400px;
  -webkit-font-smoothing: antialiased;
  margin: 30px auto;
  perspective: 1000px;
  transform-style: preserve-3d;
  margin-bottom: 20px;
  position: relative;
}

.carousel-3d-card {
  position: absolute;
  width: 580px;
  height: 320px;
  left: 50%;
  top: 50%;
  margin-left: -290px;
  margin-top: -160px;
  backface-visibility: hidden;
}

.carousel-3d-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 32px 36px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.12), transparent),
    linear-gradient(135deg, rgba(10, 5, 20, 0.98), rgba(7, 4, 15, 0.98));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 213, 74, 0.08);
  transition: box-shadow 0.3s ease-out;
  overflow: hidden;
}

.carousel-3d-card-inner:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 213, 74, 0.25);
  cursor: grab;
}

.carousel-3d-logo {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.carousel-3d-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.carousel-3d-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.carousel-3d-content .pill {
  align-self: flex-start;
}

.carousel-3d-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.carousel-3d-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carousel-3d-cta {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 968px) {
  .demoWrapper {
    height: 360px;
    margin-bottom: 60px;
  }
  
  .carousel-3d-card {
    width: 480px;
    height: 280px;
    margin-left: -240px;
    margin-top: -140px;
  }
  
  .carousel-3d-card-inner {
    padding: 24px 28px;
    gap: 24px;
  }
  
  .carousel-3d-logo {
    width: 110px;
    height: 110px;
  }
  
  .carousel-3d-card-title {
    font-size: 1.2rem;
  }
  
  .carousel-3d-description {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 600px) {
  .section-3d-carousel {
    padding: 60px 0 30px;
    overflow-x: hidden;
  }
  
  .demoWrapper {
    height: 420px;
    margin-bottom: 40px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  
  .carousel-3d-card {
    width: 300px;
    height: 380px;
    margin-left: -150px;
    margin-top: -190px;
  }
  
  .carousel-3d-card-inner {
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
  }
  
  .carousel-3d-logo {
    width: 90px;
    height: 90px;
  }
  
  .carousel-3d-card-title {
    font-size: 1.1rem;
  }
  
  .carousel-3d-description {
    font-size: 0.85rem;
    -webkit-line-clamp: 3;
  }
}


