/* ============================================================================
   BASE STYLES & VARIABLES
   ============================================================================ */
:root {
  /* Colors */
  --clr-1: #00c2ff;
  --clr-2: #33ff8c;
  --clr-3: #ffc640;
  --clr-4: #e54cff;

  /* Typography */
  --fs: clamp(2.5rem, 7vw, 6rem);
  --ls: clamp(-6px, -1vw, -3px);

  /* Layout */
  --blur: 1rem;
  --panel-content-max: 720px;
  --section-content-max: 1000px;
  --studio-max-width: 1000px;
  --studio-gap: 16px;
  --card-radius: 12px;
  --card-padding: 14px;
  --section-padding-vertical: 48px;

  /* Backgrounds */
  --card-bg: linear-gradient(180deg, rgba(131, 129, 129, 0.136), rgba(32, 32, 32, 0.01));

  /* Text Colors */
  --text-muted: rgba(234, 234, 234, 0.82);
}

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

html {
  max-width: 100vw;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: #eaeaea;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Performance Optimization */
.aurora-text,
.carousel-item,
.image-block,
.logo-track {
  will-change: transform;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(110deg, #3a4045 0%, #768087 35%, #ffffff 45%, #ffffff 50%, #768087 55%, #3a4045 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  background-position: center center;
}

/* ============================================================================
   UTILITIES
   ============================================================================ */
.spacer {
  height: 200vh;
  position: relative;
  z-index: 0;
  background: #080808;
}

.divider-container {
  background: #000;
  position: relative;
  z-index: 1;
  min-height: 28px;
  padding: 8px 0;
}

.divider-silver {
  width: 100%;
  max-width: none;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, #000 0%, #c4c4c4 40%, #e6e6e6 50%, #c4c4c4 60%, #000 100%);
  position: relative;
  z-index: 10000;
}

.fade-mask {
  position: relative;
  overflow: hidden;
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

/* ============================================================================
   COMPONENTS
   ============================================================================ */
/* Buttons */
.btn-primary,
.btn-outline,
.glow-border {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 28px);
  border-radius: 8px 10px;
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 6;
  isolation: isolate;
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--clr-2);
  color: #000;
  box-shadow: 0 4px 15px rgba(51, 255, 140, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(51, 255, 140, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Glow Button Variant */
.glow-border {
  background: #111;
  color: #b5b5b5;
  animation: fadeIn 1.6s ease-out forwards;
}

.glow-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 10px;
  background: linear-gradient(45deg, #2cf8ff, #7a25f2, #ed2eed);
  background-size: 400%;
  animation: glowing 20s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  filter: blur(1.2px);
  z-index: -1;
}

/* Social Floating Buttons - Premium Redesign */
.social-floats-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
  align-items: flex-end;
}

.social-float {
  width: 46px;
  height: 46px;
  border-radius: 14px; /* More modern rounded corners than 50% */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.social-float::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-float:hover::before {
  opacity: 1;
}

.social-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  z-index: 1;
}

.social-float:hover .social-icon {
  transform: scale(1.1);
}

.instagram-float:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  border-color: transparent;
}

.whatsapp-float:hover {
  background: #25D366;
  border-color: transparent;
}

.facebook-float:hover {
  background: #1877F2;
  border-color: transparent;
}

/* Tooltip implementation */
.social-float::after {
  content: attr(title);
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .social-floats-container {
    bottom: 20px;
    right: 20px;
    gap: 8px;
  }
  
  .social-float {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  
  .social-float::after {
    display: none; /* Hide tooltips on mobile */
  }
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-content {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 30%,
      rgba(148, 0, 211, 0.04) 40%,
      rgba(0, 0, 255, 0.04) 45%,
      rgba(0, 255, 0, 0.04) 50%,
      rgba(255, 255, 0, 0.04) 55%,
      rgba(255, 0, 0, 0.04) 60%,
      rgba(255, 255, 255, 0) 70%,
      rgba(255, 255, 255, 0) 100%);
  background-size: 300% auto;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: 1.2rem;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), glare-sweep 8s linear infinite;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.close-btn:hover {
  background: rgba(255, 0, 0, 0.8);
  transform: rotate(90deg);
}

.popup-content h2 {
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 600;
  text-align: center;
}

.popup-content form {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1rem);
}

.popup-content form input {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 0.9rem) clamp(1rem, 2.5vw, 1.2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.6rem;
  outline: none;
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: #fff;
  transition: all 0.3s ease;
}

.popup-content form input:focus {
  border-color: #00ff88;
  background: rgba(255, 255, 255, 0.08);
}

.popup-content form button {
  background: linear-gradient(135deg, #00ff88 0%, #00cc70 100%);
  border: none;
  color: #000;
  padding: clamp(0.8rem, 2vw, 1rem);
  border-radius: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 600;
  margin-top: 0.5rem;
}

.popup-content form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px clamp(12px, 5vw, 50px);
  height: clamp(48px, 12vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: rgba(10, 10, 10, 0.097);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backface-visibility: hidden;
  transform: translateZ(0);
}

.logo-img {
  height: clamp(20px, 5vw, 40px);
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 5vw, 40px);
  flex: 1;
  justify-content: center;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 200;
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
}

.nav-actions {
  display: flex;
  gap: clamp(8px, 2vw, 15px);
  align-items: center;
}

.action-btn {
  width: clamp(32px, 8vw, 40px);
  height: clamp(32px, 8vw, 40px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 24, 24, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
  color: #fff;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.call-btn:hover {
  background: rgba(0, 194, 255, 0.2);
  border-color: #00c3ff95;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-menu .bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

.hamburger-menu.is-active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.is-active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.is-active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 99;
}

.nav-menu.is-active {
  transform: translateX(0);
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 300;
}

/* ============================================================================
   HERO / INTRO
   ============================================================================ */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  gap: 5px;
  z-index: 50;
  background: #000;
  transition: opacity 0.3s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.intro-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.intro-panel {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

.panel-left video,
.panel-right video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.overlay-left,
.overlay-right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  z-index: 10;
  font-weight: 200;
  padding: clamp(16px, 3vw, 24px) clamp(20px, 5vw, 64px);
  text-align: left;
}

.overlay-left h2,
.overlay-left p,
.overlay-right h2,
.overlay-right p {
  width: min(92%, var(--panel-content-max));
}

.left-font,
.right-font {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: clamp(15px, 2vw, 25px);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #a2abb3 0%, #c4cbd1 35%, #ffffff 45%, #ffffff 50%, #c4cbd1 55%, #a2abb3 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: glare-sweep 4s ease-in-out 2 forwards;
}

.overlay-left p,
.overlay-right p {
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.main-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #050505;
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  padding: clamp(12px, 3vw, 20px);
  transition: opacity 0.3s;
}

.title-container {
  text-align: center;
  position: relative;
  z-index: 5;
}

.title-container h2 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  animation: fadeIn 1s forwards;
}

.title-container h1 {
  font-size: var(--fs);
  font-weight: 800;
  letter-spacing: var(--ls);
  color: #fff;
  animation: fadeIn 1.2s forwards;
}

.aurora-text {
  background-image: linear-gradient(110deg, #3a4045 0%, #768087 35%, #ffffff 45%, #ffffff 50%, #768087 55%, #3a4045 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  animation: glare-sweep 4s ease-in-out 2 forwards;
}

@keyframes glare-sweep {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.sa-description {
  display: block;
  max-width: 980px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.sa-description .sa-col p {
  font-family: 'figtree', sans-serif;
  max-width: 620px;
  margin: 0 auto 12px;
  text-align: justify;
  line-height: 1.6;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.client-logo-banner {
  position: absolute;
  bottom: clamp(30px, 3vh, 60px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 90vw, 800px);
  overflow: hidden;
  z-index: 7;
}

.client-logo-banner::before,
.client-logo-banner::after {
  content: '';
  position: absolute;
  top: 0;
  width: clamp(60px, 20vw, 200px);
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.client-logo-banner::before {
  left: 0;
  background: linear-gradient(to right, #050505 0%, transparent 100%);
}

.client-logo-banner::after {
  right: 0;
  background: linear-gradient(to left, #050505 0%, transparent 100%);
}

.logo-track {
  display: flex;
  gap: clamp(20px, 3vw, 80px);
  width: fit-content;
  will-change: transform;
}

.logo-set {
  display: flex;
  gap: clamp(20px, 3vw, 80px);
}

.logo-item {
  width: clamp(40px, 10vw, 100px);
  height: clamp(40px, 10vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(101, 101, 101, 0.05);
  border-radius: clamp(8px, 1vw, 16px);
  padding: clamp(8px, 1.5vw, 18px);
  transition: transform 0.3s;
}

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

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
}

/* ============================================================================
   CONTENT SECTIONS
   ============================================================================ */
.content-section {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: clamp(30px, 5vw, 60px) clamp(15px, 3vw, 20px);
}

.content-section h2.section-title {
  width: min(92%, var(--section-content-max));
  margin: 0 auto;
}

.content-section p {
  color: rgba(240, 239, 239, 0.782);
  font-size: clamp(12px, 1.8vw, 16px);
  max-width: var(--section-content-max);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* About / Produce / Learn Common */
.about-container,
.produce-container,
.learn-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  padding: clamp(40px, 8vw, 80px) clamp(15px, 5vw, 60px);
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.content h2,
.produce-content-col h2,
.learn-content-col h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: clamp(20px, 3vw, 30px);
  background: linear-gradient(110deg, #3a4045 0%, #768087 35%, #ffffff 45%, #ffffff 50%, #768087 55%, #3a4045 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  background-position: center center;
}

.content h2.animate-glare,
.produce-content-col h2.animate-glare,
.learn-content-col h2.animate-glare {
  animation: glare-sweep 4s ease-in-out 2 forwards;
}

.content p,
.produce-content-col p,
.learn-content-col p {
  font-size: 0.9rem;
  color: #b3b3b3;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  max-width: 580px;
}

.content a,
.produce-content-col a,
.learn-content-col a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
  border: 1px solid #666;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  white-space: nowrap;
  width: fit-content;
  transition: all 0.3s;
}

.content a:hover,
.produce-content-col a:hover,
.learn-content-col a:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
}

.images-grid,
.produce-images-top-row,
.learn-images-top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
  width: 100%;
}

.learn-images-col,
.produce-images-col {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 16px);
}

.image-block,
.image-block-small,
.image-block-wide {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.image-block-small {
  aspect-ratio: 3/4;
}

.image-block-wide {
  aspect-ratio: 16/9;
}

.image-block img,
.image-block-small img,
.image-block-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-block:hover img,
.image-block-small:hover img,
.image-block-wide:hover img {
  transform: scale(1.05);
}

/* Carousel */
#carousel-section {
  background: #000;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.carousel-wrapper {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 25px 0;
  overflow: hidden;
  position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(40px, 8vw, 140px);
  height: 100%;
  pointer-events: none;
  z-index: 9;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 12px;
  padding: 12px 8px;
  cursor: grab;
}

.carousel-item {
  flex: 0 0 155px;
  width: 155px;
  height: 200px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-item:hover {
  transform: translateY(-6px);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 12px 10px;
  color: white;
}

.card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.card-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  opacity: 0.9;
}

.carousel-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(45, 45, 45, 0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
}

.carousel-nav-prev {
  left: 40px;
}

.carousel-nav-next {
  right: 40px;
}

/* ============================================================================
   TESTIMONIALS SECTION
   ============================================================================ */
.testimonials {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.85)),
    url("https://ik.imagekit.io/Nex1ora2/dj-performance-training.jpg?updatedAt=1765352486546") center / cover no-repeat;
  font-family: "Inter", sans-serif;
  position: relative;
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(60px, 8vw, 80px) 20px;
  border-radius: 20px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: clamp(30px, 5vw, 60px);
  font-weight: 600;
  justify-content: center;
  color: #fff;
}

.testimonial-container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  /* Reduced by 20% from clamp(170px, 20vh, 240px) */
  --card-h: clamp(136px, 16vh, 192px);
  height: var(--card-h);
  min-height: var(--card-h);
  background: transparent;
}

.testimonial {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.98);
  width: min(88%, 820px);
  padding: clamp(12px, 2.2vw, 20px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease, transform .45s cubic-bezier(.2, .9, .2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.testimonial.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.quote {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.45;
  margin: 0 0 clamp(8px, 1vw, 10px) 0;
  color: #ddd;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  max-height: calc(1.45em * 4);
}

.author {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  color: #fff;
  margin: 0;
}

.role {
  font-size: clamp(0.7rem, 1.2vw, 0.82rem);
  letter-spacing: 1px;
  color: #bdbdbd;
  margin: 4px 0 0 0;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(16px, 2vw, 22px);
  gap: clamp(12px, 2vw, 20px);
  flex-wrap: wrap;
}

button.prev,
button.next {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: clamp(36px, 7vw, 40px);
  height: clamp(36px, 7vw, 40px);
  font-size: clamp(14px, 2vw, 18px);
  cursor: pointer;
  transition: background 0.25s;
}

button.prev:hover,
button.next:hover {
  background: #222;
}

.dots {
  display: flex;
  gap: clamp(6px, 1vw, 10px);
}

.dots span {
  width: clamp(8px, 1.5vw, 10px);
  height: clamp(8px, 1.5vw, 10px);
  background: #555;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.18s, background 0.18s;
}

.dots span.active {
  background: #fff;
  transform: scale(1.14);
}

.reveal-up {
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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


/* ============================================================================
   STUDIO SETUP SECTION
   ============================================================================ */

.studio-setup-enhanced {
  background: #000;
  color: #eaeaea;
  padding: clamp(60px, 8vw, 100px) 0;
  /* Consistent vertical padding */
  overflow-x: hidden;
}

.studio-inner {
  max-width: var(--studio-max-width);
  margin: 0 auto;
  padding: 0 18px;
}


.studio-header {
  font-family: 'Inter', sans-serif;
  font-weight: 50;
  text-align: center;
  margin-bottom: 10px;
}

.studio-header .section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  color: #fff;
}

.studio-sub {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.gear-grid {
  display: grid;
  gap: var(--studio-gap);
  margin-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  align-items: stretch;
}

@media (min-width: 1100px) {
  .gear-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gear-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.gear-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: var(--card-padding);
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
  overflow: hidden;
}

.gear-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.06);
}

.card-media {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 6px;
}

.card-media .fi {
  font-size: 36px;
  color: #fff;
}

.card-title {
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(1rem, 2.2vw, 1.06rem);
  margin: 6px 0;
}

.card-excerpt {
  color: rgba(234, 234, 234, 0.92);
  font-size: clamp(0.86rem, 1.8vw, 0.96rem);
  line-height: 1.4;
  margin: 0;
}

.card-cta {
  align-self: flex-end;
  margin-top: 10px;
  background: transparent;
  border: 0;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.studio-footer {
  text-align: center;
  margin-top: 18px;
}

.studio-cta {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #120d0d, #3c3c3b);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* Modal */
.gear-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 2, 2, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  padding: 18px;
  z-index: 1200;
}

.gear-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.modal-inner {
  background: #0f0f10;
  border-radius: 12px;
  padding: 18px;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.modal-content h3 {
  margin: 4px 0 8px;
  font-size: 1.15rem;
}

.modal-specs {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.04);
  color: rgba(234, 234, 234, 0.9);
}


/* ============================================================================
   WHY CHOOSE SOUNDABODE SECTION
   ============================================================================ */

.why-soundabode {
  background: #000;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 80px);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-inner {
  max-width: var(--section-content-max);
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: clamp(28px, 6vw, 40px);
  font-family: 'Inter', sans-serif;
}

.why-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Dropdown */
.why-dropdown {
  width: 100%;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.why-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  color: #ffffff;
  border: 1px solid rgba(124, 124, 124, 0.692);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  width: clamp(220px, 48%, 420px);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.why-dropdown-toggle .why-arrow {
  transition: transform 0.22s ease;
  font-size: 0.95rem;
  opacity: 0.9;
}

.why-dropdown-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  width: 100%;
  transform: translateY(-6px);
  transition: max-height 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease, transform 0.28s ease;
  background: rgba(6, 6, 6, 0.9);
  border-radius: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.why-dropdown-list {
  list-style: disc;
  margin: 12px auto;
  padding-left: 24px;
  max-width: 800px;
  color: #e8e8e8;
  line-height: 1.6;
  font-size: 0.97rem;
}

.why-dropdown.open .why-dropdown-panel {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 12px;
}

.why-dropdown.open .why-dropdown-toggle .why-arrow {
  transform: rotate(180deg);
}

/* Cards */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 32px);
  align-items: stretch;
}

.why-card {
  background: linear-gradient(180deg, rgba(51, 50, 50, 0.229), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: clamp(18px, 3.5vw, 28px);
  border-radius: 12px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(131, 131, 131, 0.85);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.card-icon {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #ffb86b;
  filter: drop-shadow(0 6px 18px rgba(255, 184, 107, 0.06));
}

.card-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 18px 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
}

.card-list li {
  margin-bottom: 8px;
}

.learn-btn {
  display: inline-block;
  align-self: flex-start;
  text-decoration: none;
  padding: 8px 14px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(111, 110, 110, 0.547);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: transparent;
  transition: background 0.25s ease, transform 0.18s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.learn-btn:hover {
  background: linear-gradient(90deg, rgba(130, 80, 255, 0.14), rgba(0, 194, 255, 0.06));
  transform: translateY(-3px);
  border-color: rgba(130, 80, 255, 0.95);
  box-shadow: 0 18px 40px rgba(130, 80, 255, 0.06);
}


/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.faq-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  color: #ffffff;
  text-transform: none;
}

.faq-list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  padding: 1px;
  overflow: visible;
}

.faq-head {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  height: 13px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.15));
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  justify-content: space-between;
}

.faq-head .faq-number {
  color: rgba(130, 130, 200, 0.95);
  font-weight: 800;
  margin-right: 8px;
  min-width: 36px;
  text-align: center;
}

.faq-head .faq-title {
  flex: 1;
  text-align: left;
  font-weight: 700;
}

.faq-head .faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-body {
  padding: 14px 20px 22px 20px;
  color: rgba(235, 235, 235, 0.9);
  font-weight: 300;
  line-height: 1.6;
  border-radius: 0 0 12px 12px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms cubic-bezier(0.2, 0.8, 0.2, 1), padding 250ms ease;
}

.faq-item[data-open="true"] .faq-body {
  max-height: 600px;
  padding-top: 12px;
  padding-bottom: 20px;
}

.faq-item[data-open="true"] .faq-head .faq-toggle {
  transform: rotate(45deg);
  background: rgba(0, 200, 120, 0.12);
  color: #00ff99;
}

/* ============================================================================ 
   FOOTER
   ============================================================================ */

.site-footer {
  background-color: #0b0b0b;
  font-family: 'Inter', sans-serif;
  color: #fff;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 50px) 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 20;
}

.site-footer,
.site-footer a {
  pointer-events: auto;
}

.site-footer a {
  cursor: pointer;
  text-decoration: none;
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  width: 100%;
}

/* Brand Column */
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a0a0a0;
  margin-bottom: 24px;
  text-align: justify;
}

.footer-address {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
  text-align: justify;
}

/* Headings */
.footer-column h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 24px 0;
}

/* Lists */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 14px;
  text-align: justify;
}

.footer-column a {
  font-size: 0.95rem;
  color: #a0a0a0;
}

.social-links-text a {
  display: block;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #666;
}

.copyright {
  margin: 0;
}

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

.legal-links a {
  color: #666;
}

.legal-links a:hover {
  color: #999;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInMobile {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes aurora-move {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.7) translateY(-20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ============================================================================
   RESPONSIVE BREAKPOINTS - CONSOLIDATED
   ============================================================================ */

/* TABLETS (Max 1024px) */
@media (max-width: 1024px) {
  .testimonials {
    width: 100%;
    margin: 0 auto;
  }

  .overlay-left,
  .overlay-right {
    justify-content: center;
    align-items: center !important;
    text-align: center !important;
    padding: 2rem;
  }

  .left-font,
  .right-font {
    text-align: center !important;
    font-size: clamp(18px, 3vw, 24px);
  }

  .overlay-left p,
  .overlay-right p {
    text-align: justify !important;
    font-size: clamp(14px, 2.2vw, 18px);
    max-width: 90%;
  }

  .navbar {
    padding: 10px clamp(15px, 4vw, 30px);
  }

  .nav-links {
    gap: clamp(20px, 4vw, 35px);
  }

  .about-container,
  .produce-container,
  .learn-container {
    grid-template-columns: 1fr;
    gap: clamp(25px, 4vw, 40px);
    padding: clamp(40px, 6vw, 60px) clamp(20px, 3vw, 30px);
  }

  .produce-content-col,
  .learn-content-col {
    order: 1;
  }

  .produce-images-col,
  .learn-images-col {
    order: 2;
    margin-top: 30px;
  }

  .carousel-track {
    padding: 0 20px;
    gap: 20px;
  }

  .site-footer {
    padding: clamp(50px, 6vw, 80px) clamp(15px, 4vw, 30px);
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(40px, 6vw, 60px);
  }

  /* Carousel Items for Desktop/Tablet boundary */
  .carousel-nav-button {
    width: 50px;
    height: 50px;
  }

  .carousel-item {
    flex: 0 0 280px;
    height: 360px;
  }
}

/* SMALL TABLET (Max 900px) */
@media (max-width: 900px) {

  .about-container,
  .produce-container,
  .learn-container {
    gap: 30px;
  }

  .carousel-item {
    flex: 0 0 220px;
    height: 300px;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE (Max 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .intro-overlay {
    flex-direction: column;
    overflow: hidden;
    gap: 0;
  }

  .intro-panel {
    width: 100%;
    height: 50vh; /* Reverted to 50vh to show both panels */
    flex-shrink: 0;
  }

  /* Ensure the second panel is visible on mobile as requested */
  .panel-right {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .overlay-left,
  .overlay-right {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90%;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem;
  }

  .left-font,
  .right-font {
    margin-bottom: 15px;
  }

  .overlay-left .left-font,
  .overlay-left p,
  .overlay-right .right-font,
  .overlay-right p {
    animation: fadeInMobile 2s ease-out forwards !important;
  }

  .main-content {
    padding: 20px;
  }

  .client-logo-banner {
    padding-bottom: 30px;
  }

  .carousel-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .carousel-track {
    padding: 0 15px;
    gap: 15px;
  }

  .carousel-item {
    flex: 0 0 180px;
    height: 260px;
  }

  .footer-container {
    text-align: left;
  }

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

  /* Stack footer on mobile */
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}

/* SMALL PHONES (Max 600px) */
@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .about-container,
  .produce-container,
  .learn-container {
    padding: 30px 15px;
  }

  .images-grid,
  .produce-images-top-row,
  .learn-images-top-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .image-block,
  .image-block-small,
  .image-block-wide {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .carousel-wrapper {
    height: 280px;
  }

  .carousel-item {
    flex: 0 0 150px;
    height: 220px;
  }

  .testimonial-container {
    min-height: 120px;
  }
}

/* VERY SMALL PHONES (Max 480px) */
@media (max-width: 480px) {
  :root {
    --fs: clamp(1.5rem, 5vw, 3rem);
  }

  .navbar {
    height: 50px;
    padding: 8px 12px;
  }

  .action-btn {
    width: 32px;
    height: 32px;
  }

  .overlay-left,
  .overlay-right {
    width: 95%;
    padding: 1rem !important;
  }

  .left-font,
  .right-font {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .overlay-left p,
  .overlay-right p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .client-logo-banner {
    bottom: 40px;
    width: 95%;
  }

  .logo-item {
    width: 50px;
    height: 50px;
    padding: 8px;
  }

  .glow-border {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .popup-content {
    width: 95%;
    padding: 20px;
  }

  .carousel-item {
    flex: 0 0 130px;
    height: 180px;
  }
}

/* Print */
@media print {

  .navbar,
  .social-floats-container,
  .hamburger-menu,
  .popup-overlay {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
