/* --- 1. CSS Reset & Variables — Light Editorial Studio Theme --- */
:root {
  --bg: #F7F7F8;
  --surface: #FFFFFF;
  --surface-border: #E4E4E7;
  --text: #18181B;
  --text-muted: #71717A;
  --primary: #D97706;
  --primary-hover: #B45309;
  --max-width: 1200px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* --- 2. Buttons & Badges --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background-color: var(--primary);
  color: #000;
}

.btn-instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: black;
  color: #ffffff;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-instagram-cta:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: black;
  box-shadow: 0 5px 10px rgba(101, 98, 95, 0);
}

.btn-secondary {
  border: 1px solid var(--surface-border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--text);
}

.btn-full {
  width: 100%;
}

/* Container */
.hero-language-pills {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

/* Individual Apple-Grade Pill */
.lang-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 5px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  border: 1px solid #929292;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  color: #18181B;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

/* High-Contrast 3-Second Specular Sweep */
.lang-pill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(24, 24, 27, 0.12) 50%,
      transparent 100%);
  transform: skewX(-25deg);
  animation: pillShineSweep 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

/* Stagger animation across pills */
.hero-language-pills .lang-pill:nth-child(2)::after {
  animation-delay: 0.2s;
}

.hero-language-pills .lang-pill:nth-child(3)::after {
  animation-delay: 0.4s;
}

@keyframes pillShineSweep {
  0% {
    left: -120%;
  }

  35% {
    left: 180%;
  }

  100% {
    left: 180%;
  }
}

/* --- 3. Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--surface-border);
  z-index: 100;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 247, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

.nav-container {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.logo-image {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--primary);
  letter-spacing: 0.12em;
}

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

.nav-links a {
  color: #40404b;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Tab Bar hidden on desktop */
.mobile-tab-bar {
  display: none;
}



/* --- 4. Hero Section --- */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

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

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-hook-action {
  margin-top: 8px;
}

.btn-hook {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background-color: #18181B;
  color: #FFFFFF;
  border-radius: 9999px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hook .play-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hook:hover {
  background-color: var(--primary);
  color: black;
  transform: translateX(4px);
}

.btn-hook:hover .play-arrow {
  transform: translateX(4px);
  color: black;
}

.circle-profile-frame {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  width: 100%;
  /* Crisp double-ring: 1px subtle amber hairline + 4px clean white spacer */
  border: 4px solid #FFFFFF;
  outline: 1.5px solid rgba(217, 119, 6, 0.35);
  /* Layered Apple-style elevation with a soft, diffused warm studio back-glow */
  box-shadow:
    0 24px 64px -12px rgba(217, 119, 6, 0.14),
    0 12px 28px -6px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, outline-color 0.3s ease;
}

.circle-profile-frame:hover {
  outline-color: rgba(217, 119, 6, 0.55);
  box-shadow:
    0 32px 72px -12px rgba(217, 119, 6, 0.20),
    0 16px 32px -6px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04);
}

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

/* --- 5. Work & Audio Cards --- */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--surface-border);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

.filter-bar {
  display: flex;
  gap: 8px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--text);
  color: var(--bg);
}

.audio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audio-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.audio-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.audio-card.playing {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.15);
}

.audio-card-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.audio-volume-wrapper:hover .audio-volume-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Custom Thin Slider Styles */
.audio-scrubber, .audio-volume-slider, .reel-scrubber, .reel-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
}

.audio-scrubber, .reel-scrubber {
  height: 4px;
  background: linear-gradient(to right, var(--primary) var(--progress, 0%), var(--surface-border) var(--progress, 0%));
}

.audio-volume-slider, .reel-volume-slider {
  background: linear-gradient(to right, var(--primary) var(--progress, 100%), var(--surface-border) var(--progress, 100%));
}


.reel-volume-slider {
  width: 55px;
  height: 4px;
}

.audio-scrubber::-webkit-slider-thumb,
.audio-volume-slider::-webkit-slider-thumb,
.reel-scrubber::-webkit-slider-thumb,
.reel-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.4);
}

.audio-scrubber::-moz-range-thumb,
.audio-volume-slider::-moz-range-thumb,
.reel-scrubber::-moz-range-thumb,
.reel-volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.4);
}


.audio-card:hover .play-btn,
.audio-card.playing .play-btn {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.05);
}

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

.track-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.track-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.track-status {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: end;
  column-gap: 10px;
  row-gap: 6px;
}

.duration {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.waveform-container {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: 3px;
  height: 16px;
  align-items: flex-end;
  cursor: pointer;
}

.waveform-container .bar {
  width: 3px;
  height: 4px;
  background: var(--surface-border);
  border-radius: 2px;
}

.audio-card.playing .waveform-container .bar {
  background: var(--primary);
  animation: wave 1s infinite ease-in-out;
}

.audio-card.playing .waveform-container .bar:nth-child(2) {
  animation-delay: 0.2s;
}

.audio-card.playing .waveform-container .bar:nth-child(3) {
  animation-delay: 0.4s;
}

.audio-card.playing .waveform-container .bar:nth-child(4) {
  animation-delay: 0.1s;
}

.audio-card.playing .waveform-container .bar:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes wave {

  0%,
  100% {
    height: 4px;
  }

  50% {
    height: 16px;
  }
}

/* New Tab Switcher Styles */
.work-tab-switcher {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 9999px;
  padding: 4px;
  gap: 4px;
}

.tab-switch-btn {
  background: transparent;
  border: none;
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-switch-btn.active {
  background: var(--text);
  color: var(--bg);
}

/* --- Video Reels Section (Apple iOS/macOS Aesthetic) --- */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.reel-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.reel-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.reel-card.playing {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.18);
}

.reel-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

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

/* Center Frosted Glass Play Overlay */
.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.reel-play-icon {
  font-size: 1.2rem;
  margin-left: 2px;
}

.reel-card.playing .reel-play-icon {
  margin-left: 0;
}

.reel-video-wrapper:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Hide play button when video is playing, but fade back in on hover over video */
.reel-card.playing .reel-play-btn {
  opacity: 0;
  pointer-events: none;
}

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

/* Video Control Bar Overlay */
.reel-controls-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.reel-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reel-volume-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reel-mute-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.reel-mute-btn:hover {
  transform: scale(1.15);
  opacity: 1;
}

.reel-mute-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.reel-timer {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.reel-progress-container {
  width: 100%;
  padding: 6px 0;
  margin-top: -3px;
  cursor: pointer;
  position: relative;
  touch-action: none;
}

.reel-card-info {
  padding: 14px 4px 4px 4px;
}

.reel-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.reel-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Card Action Icons */
.card-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 12px;
}

.action-icon {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s;
}

.action-icon:hover {
  color: var(--primary);
}

/* Reels Placeholder Grid */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.reel-card-placeholder {
  aspect-ratio: 9 / 16;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- 6. Clients & Services --- */
.carousel-container {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  position: relative;
  /* Soft fade on edges */
  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);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 40px; /* Space between logos */
  width: max-content;
  animation: marquee 50s linear infinite;
}

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

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

.client-logo {
  height: 86px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) opacity(0.6);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.client-logo:hover {
  transform: translateY(-3px) scale(1.05);
  filter: grayscale(100%) brightness(0) opacity(1);
}

/* --- 6.5 Testimonials --- */
.testimonials-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 16px;
}

.testimonials-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px); /* 3 cards on desktop */
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px); /* 2 cards visible on tablet */
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%; /* 1 card visible on mobile */
  }
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  z-index: 2;
}

.slider-btn svg {
  width: 24px;
  height: 24px;
  color: var(--text);
}

.slider-btn:hover {
  background: var(--surface);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: scale(1.05);
}

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

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}

.testimonial-card::before,
.testimonial-modal-content::before {
  content: "“";
  position: absolute;
  left: 18px;
  top: 32px;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  border-top: 1px solid var(--surface-border);
  padding-top: 16px;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.author-company {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.read-more-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  margin-top: -4px;
  margin-bottom: 8px;
  transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.read-more-btn:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.testimonial-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.testimonial-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-modal-content {
  background: var(--surface);
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border: 1px solid var(--surface-border);
}

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

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(0,0,0,0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background-color 0.2s ease;
}

.modal-close-btn:hover {
  background-color: rgba(0,0,0,0.1);
}

.modal-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  margin-top: 16px;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--surface-border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 87, 34, 0.2);
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 87, 34, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  z-index: 2;
}

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

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-num-watermark {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(0,0,0, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* --- 7. Contact & Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.social-pills-container {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-pills-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0;
}

.social-pills-grid {
  display: flex;
  gap: 12px;
}

.social-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
}

.social-pill svg {
  color: var(--text);
  transition: transform 0.3s ease, fill 0.3s ease;
  fill: currentColor;
}

/* Platform specific hover colors */
.social-pill[data-platform="instagram"]:hover { background: #e1306c; color: white; border-color: #e1306c; }
.social-pill[data-platform="whatsapp"]:hover { background: #25d366; color: white; border-color: #25d366; }
.social-pill[data-platform="twitter"]:hover { background: #000000; color: white; border-color: #000000; }
.social-pill[data-platform="linkedin"]:hover { background: #0a66c2; color: white; border-color: #0a66c2; }

.social-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.social-pill:hover svg {
  transform: scale(1.1);
  color: white;
}

/* Tooltip */
.social-pill::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--text);
  color: var(--surface);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
}

.social-pill:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #40404b;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid transparent;
  color: var(--text);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: rgb(182, 177, 172);
  box-shadow: 0 0 0 2px rgba(172, 168, 164, 0.041);
}

/* Custom  Dropdown */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid transparent;
  color: var(--text);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-select-wrapper.open .custom-select-trigger {
  background: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.15);
}

.custom-select-icon {
  transition: transform 0.2s ease;
  color: var(--text-muted);
}

.custom-select-wrapper.open .custom-select-icon {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 100;
  overflow: hidden;
  padding: 6px 0;
}

.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  display: block;
  padding: 10px 16px;
  margin: 2px 6px;
  font-size: 0.95rem;
  background: var(--bg-light);
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.custom-option:hover,
.custom-option.selected {
   /*no colors */
  color: var(--text);
  font-weight: 500;
}

/* intl-tel-input tweaks */
.iti { width: 100%; }
.form-group .iti input[type="tel"] {
  padding-left: 52px !important;
}
.iti__country-list {
  background: var(--surface) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  font-family: inherit !important;
  font-size: 0.9rem !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
}
.iti__search-input {
  border-radius: 6px !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  padding: 8px !important;
  background: rgba(0,0,0,0.03) !important;
}

.contact-form .btn {
  border-radius: 99px;
  padding: 18px;
  font-size: 1.05rem;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted) !important;
  opacity: 0.7 !important;
}

/* --- 9. Footer --- */
.footer { padding: 60px 0 30px; border-top: 1px solid var(--surface-border); background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--surface-border); margin-bottom: 20px; }
.footer-col { display: flex; flex-direction: column; }

.brand-col { position: relative; }
.brand-col::before {
  content: '';
  position: absolute;
  top: -40px; bottom: -40px; left: -20px; right: -40px;
  background-image: url('/assets/images/logo.jpg');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}
.brand-col > * { position: relative; z-index: 1; }
.footer-name { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 5px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-title { font-size: 1rem; color: var(--primary); margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-divider { width: 40px; height: 3px; background: var(--primary); margin-bottom: 15px; border-radius: 2px; }
.footer-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; max-width: 320px; }
.footer-heading { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text); margin-bottom: 20px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-list li, .footer-list a { font-size: 0.9rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s ease; }
.footer-list li { display: flex; align-items: center; gap: 8px; }
.footer-icon { opacity: 0.7; flex-shrink: 0; }
.footer-list a:hover { color: var(--primary); }
.footer-socials { display: flex; gap: 15px; margin-top: 20px; }
.footer-socials a { color: var(--text-muted); transition: color 0.2s ease; }
.footer-socials a:hover { color: var(--primary); }
.footer-legal { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.legal-links { display: flex; gap: 15px; align-items: center; }
.legal-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.legal-links a:hover { color: var(--primary); }
.legal-links .divider { opacity: 0.3; }
.back-to-top-btn { display: inline-flex; align-items: center; text-decoration: none; color: var(--text-muted); font-weight: 500; transition: color 0.2s ease; }
.back-to-top-btn:hover { color: var(--primary); }

.legal-right-col { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.developer-signature { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.developer-signature a { color: var(--text); font-weight: 700; text-decoration: none; transition: color 0.2s; }
.developer-signature a:hover { color: var(--primary); }
.heart-3d { animation: heartbeat 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1); filter: drop-shadow(0 2px 4px rgba(230, 57, 70, 0.4)); margin: 0 2px; }

@keyframes heartbeat {
  0% { transform: scale(1); }
  10% { transform: scale(1.15); }
  20% { transform: scale(1); }
  30% { transform: scale(1.15); }
  40% { transform: scale(1); }
  100% { transform: scale(1); }
}

/* Animated Download Button */
.Btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--surface-border);
  border-radius: 20px;
  background-color: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition-duration: 0.3s;
}

.svgIcon {
  fill: var(--text);
  height: 15px;
  width: 15px;
  margin-bottom: 2px;
}

.icon2 {
  width: 12px;
  height: 3px;
  border-bottom: 1.5px solid var(--text);
  border-left: 1.5px solid var(--text);
  border-right: 1.5px solid var(--text);
}

/* Hover state (Static color change, no loop) */
.Btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.Btn:hover .icon2 {
  border-color: black;
}
.Btn:hover .svgIcon {
  fill: black;
}

/* Downloading state ONLY (Continuous sliding loop) */
.Btn.downloading {
  background-color: var(--primary);
  border-color: var(--primary);
}
.Btn.downloading .icon2 {
  border-color: black;
}
.Btn.downloading .svgIcon {
  fill: black ;
  animation: slide-in-top 1s linear infinite;
}

/* Success state (Checkmark) */
.Btn.success .svgIcon {
  animation: none;
  margin-bottom: 0;
  height: 16px;
  width: 16px;
  fill: black;
}
.Btn.success .icon2 {
  display: none;
}
.Btn.success {
  border-color: var(--bg);
}

/* 3-Second Popup Notification (Toast) */
.toast-notification {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
}
.toast-notification.show {
  bottom: 30px;
  opacity: 1;
}

@keyframes slide-in-top {
  0% { transform: translateY(-8px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.card-actions {
  grid-column: 1 / span 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 2px;
  position: relative;
}

/* --- Copy Track Link Button --- */
.copy-link-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--surface-border);
  border-radius: 20px;
  background-color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
  color: var(--text);
  padding: 0;
}
.copy-link-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: black;
}
.copy-link-btn.copied {
  background-color: #10B981;
  border-color: #10B981;
  color: white;
}

/* --- Multi-Social Share Tooltip --- */
.tooltip-container {
  width: 32px;
  height: 32px;
  background: var(--surface);
  border: 1.5px solid var(--surface-border);
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}
.tooltip-container:hover, .tooltip-container.active {
  background: var(--primary);
  border-color: var(--primary);
}
.tooltip-container .text {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--text);
  transition: all 0.2s;
}
.tooltip-container:hover .text, .tooltip-container.active .text {
  fill: black;
}

/* --- Social Share Tooltip: Horizontal Row Below Share Button --- */
/* Common button style for all 8 social share icons */
.share-btn-icon {
  position: absolute;
  top: 42px; /* Expands directly below the share button */
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.9);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease, fill 0.2s ease;
}

.share-btn-icon svg {
  width: 32px;
  height: 32px;
}

/* Horizontal positioning — X starts on far left, Discord ends at right edge of card (0px) */
.tooltip7   { fill: #5865f2; right: 406px; } /* 1. Discord (Far Left) */
.tooltip5   { fill: #ff4500; right: 348px; } /* 2. Reddit */
.tooltip6   { fill: #bd081c; right: 290px; } /* 3. Pinterest */
.tooltip2   { fill: #1877f2; right: 232px; } /* 4. Facebook */
.tooltip1   { fill: #000000; right: 174px; } /* 5. X (Twitter) */
.tooltip-li { fill: #0a66c2; right: 116px; } /* 6. LinkedIn */
.tooltip3   { fill: #e1306c; right: 58px;  } /* 7. Instagram */
.tooltip4   { fill: #25d366; right: 0px;   } /* 8. WhatsApp (Far Right Edge) */

/* Show all icons when the share button is active/clicked */
.tooltip-container.active .share-btn-icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Individual brand hover colors when mouse is over each icon */
.tooltip-container .tooltip1:hover { background: #030303; fill: #fff; border-color: #000000; }
.tooltip-container .tooltip2:hover { background: #1877f2; fill: #fff; border-color: #1877f2; }
.tooltip-container .tooltip3:hover { background: #e1306c; fill: #fff; border-color: #e1306c; }
.tooltip-container .tooltip4:hover { background: #25d366; fill: #fff; border-color: #25d366; }
.tooltip-container .tooltip5:hover { background: #ff4500; fill: #fff; border-color: #ff4500; }
.tooltip-container .tooltip6:hover { background: #bd081c; fill: #fff; border-color: #bd081c; }
.tooltip-container .tooltip7:hover { background: #5865f2; fill: #fff; border-color: #5865f2; }
.tooltip-container .tooltip-li:hover { background: #0a66c2; fill: #fff; border-color: #0a66c2; }

/* --- 10. Responsive Mobile --- */
@media (max-width: 768px) {

  .hero-grid,
  .contact-grid,
  .audio-grid,
  .reels-grid {
    grid-template-columns: 1fr;
  }

  /* Hide desktop nav links on mobile */
  .nav-links {
    display: none;
  }

  /* iOS Floating Bottom Tab Bar mob */
  .mobile-tab-bar {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 9999px;
    padding: 16px 28px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 1000;
  }

  .tab-item {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .tab-item:active,
  .tab-item:focus {
    color: var(--primary);
  }

  .player-center {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-desc { margin: 0 auto; }
  .footer-socials { justify-content: center; }
  .footer-legal { flex-direction: column; gap: 15px; }
}

/* --- 11. Minimalist Studio Top Progress Bar (#D97706) --- */
.top-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(217, 119, 6, 0.8), 0 0 4px rgba(217, 119, 6, 0.5);
  z-index: 99999;
  pointer-events: none;
  animation: progressLoad 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: width 0.3s ease, opacity 0.4s ease 0.1s;
}

.top-progress-bar.done {
  width: 100% !important;
  opacity: 0;
}

@keyframes progressLoad {
  0% {
    width: 0%;
    opacity: 1;
  }

  60% {
    width: 75%;
    opacity: 1;
  }

  100% {
    width: 100%;
    opacity: 0;
  }
}

/* --- 12. Reduced Motion Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }

  .top-progress-bar {
    display: none;
  }
}