/* ============================================
   VILOSTUDIOS - PREMIUM ANIMATION STUDIO
   Standalone Version - All CSS Bundled
   ============================================ */

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

:root {
  --orange: #FF6B35;
  --orange-light: #FF8C42;
  --black: #000000;
  --black-soft: #0a0a0a;
  --gray-dark: #1a1a1a;
  --gray: #2a2a2a;
  --white: #ffffff;
  --text: #e0e0e0;
  --text-muted: #888888;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 0px;
  display: none;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0px;
  display: none;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Custom scrollbar for select dropdowns - Dark glassmorphism theme */
select::-webkit-scrollbar {
  width: 6px;
}

select::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  margin: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

select::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 53, 0.3);
  border-radius: 3px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

select::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 53, 0.5);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.2);
}

select::-webkit-scrollbar-thumb:active {
  background: rgba(255, 107, 53, 0.7);
  border-color: rgba(255, 107, 53, 0.5);
}

select::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.4);
}

/* Firefox scrollbar for selects */
select {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 107, 53, 0.3) rgba(0, 0, 0, 0.4);
}

/* Additional scrollbar styling for any scrollable containers */
.time-slots-grid::-webkit-scrollbar,
.scheduler-container::-webkit-scrollbar {
  width: 6px;
}

.time-slots-grid::-webkit-scrollbar-track,
.scheduler-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.time-slots-grid::-webkit-scrollbar-thumb,
.scheduler-container::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 53, 0.3);
  border-radius: 3px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.time-slots-grid::-webkit-scrollbar-thumb:hover,
.scheduler-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 53, 0.5);
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.main-content {
  z-index: 10;
  padding-left: 0;
  padding-top: 0;
}

.main-content::after {
  content: '';
  position: fixed;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 150px;
  pointer-events: none;
  z-index: 10001;
}

/* Background Video */
.background-video-container {
  height: 100vh;
}

.background-video {
  transform: translate(-50%, -50%) translateZ(0);
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  background: #000;
}

.video-shader-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.video-shader-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 3;
}

.video-footer {
  bottom: 2rem;
  right: 2rem;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  pointer-events: auto !important;
}

.video-social-links {
  gap: 1rem;
}

.video-social-links a {
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  width: 32px;
  height: 32px;
  pointer-events: auto !important;
  text-decoration: none;
  z-index: 10001;
}

.video-social-links a:hover {
  border-color: rgba(255, 107, 53, 0.4);
}

.video-copyright {
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(40px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navigation.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.nav-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-logo:hover::before {
  opacity: 1;
}

.nav-logo:hover {
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: rgba(255, 107, 53, 0.15);
}

.logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.nav-logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.4));
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.nav-logo:hover .logo-text {
  color: var(--orange-light);
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-family: 'Inter', sans-serif;
  overflow: visible;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link:not(.active) {
  background: rgba(255, 255, 255, 0.05);
}

.nav-link::before {
  display: none;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.nav-link.active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-link.active::before {
  display: none;
}

.nav-link svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.nav-link.active svg {
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-text {
  display: none;
}

.nav-footer {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.nav-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  color: var(--white);
  text-decoration: none;
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 8px;
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.nav-login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.5s ease;
}

.nav-login-button:hover::before {
  left: 100%;
}

.nav-login-button:hover {
  color: var(--white);
  background: var(--orange-light);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-login-button:active {
  transform: translateY(0) scale(1);
}

.nav-login-button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
  position: relative;
  z-index: 1;
}

.nav-login-button:hover svg {
  transform: translateX(2px);
}

/* User Profile Navigation */
.user-profile-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-user-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-user-button:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(255, 140, 66, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.nav-user-avatar img,
.nav-user-avatar[src] {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.nav-user-name {
  color: rgba(255, 107, 53, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.25rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10001;
  pointer-events: auto;
}

.lang-button {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  z-index: 10002;
  pointer-events: auto;
}

.lang-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 107, 53, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.lang-button:hover::before {
  opacity: 1;
}

.lang-button:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.lang-button.active {
  color: var(--white);
  background: rgba(255, 107, 53, 0.3);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.lang-button.active::before {
  opacity: 1;
  background: rgba(255, 107, 53, 0.2);
}

/* Animated Title */
.animated-title-container {
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  width: 90%;
  transition: opacity 0.3s ease-out;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.ae-text-container {
  padding: 0.875rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(15, 15, 15, 0.35) 100%
  );
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 8px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ae-text-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.08) 50%,
    transparent 100%
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.ae-text-word {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-family: 'Inter', sans-serif;
  transform-style: preserve-3d;
  opacity: 1 !important;
  visibility: visible !important;
  text-transform: none;
  white-space: normal;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    var(--orange) 30%,
    #ff8c5a 50%,
    var(--orange) 70%,
    rgba(255, 255, 255, 0.9) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.25));
  position: relative;
  z-index: 1;
  min-height: 2.5rem;
  padding: 0 1rem;
}

.ae-text-word::after {
  content: '|';
  animation: blink 1s step-end infinite;
  margin-left: 2px;
  opacity: 0.7;
}

@keyframes blink {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0; }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.ae-text-letter {
  display: inline-block !important;
  transform-origin: center center;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  animation: letterPulse 3s ease-in-out infinite;
  animation-delay: calc(var(--index, 0) * 0.15s);
  opacity: 1 !important;
  visibility: visible !important;
  color: var(--orange) !important;
}

@keyframes letterPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(-2px); }
}

/* Sections */
.section {
  min-height: 100vh;
  padding: 8rem 6rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.section-header {
  margin-bottom: 4rem;
}

.section-number {
  font-size: 0.9rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-weight: 500;
  opacity: 1;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
  font-family: 'Inter', sans-serif;
}

.section-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-muted);
  margin-top: 1rem;
  font-weight: 400;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

/* About */
.about-section {
  position: relative;
  z-index: 10;
}

/* Diagonal Fade Transition */
.section-diagonal-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: 11;
  pointer-events: none;
  overflow: hidden;
}

.section-diagonal-fade::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 0%,
    transparent 42%,
    rgba(0, 0, 0, 0.1) 44%,
    rgba(0, 0, 0, 0.3) 46%,
    rgba(0, 0, 0, 0.6) 48%,
    rgba(0, 0, 0, 0.85) 50%,
    rgba(0, 0, 0, 0.95) 52%,
    #000 54%,
    #000 100%
  );
  transform-origin: bottom left;
  transform: translate(-30%, 30%) rotate(135deg);
}

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

.about-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-intro-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 40%,
    rgba(255, 107, 53, 0.95) 60%,
    rgba(255, 255, 255, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
}

.about-intro-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

.about-intro-description strong {
  color: var(--orange);
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.about-card {
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  box-shadow: none;
}

.about-card::before {
  display: none;
}

.about-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: none;
  box-shadow: none;
}

.about-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.about-card:hover .about-card-icon {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.24);
  box-shadow: none;
  transform: none;
}

.about-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  stroke-width: 2;
  fill: none;
}

.about-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Inter', sans-serif;
  margin: 0 0 1rem 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.about-card-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
  .about-intro {
    margin-bottom: 3rem;
  }
  
  .about-grid {
    gap: 1.5rem;
  }
  
  .about-card {
    padding: 2rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .about-content {
    padding: 0 1.5rem;
  }
  
  .about-intro {
    margin-bottom: 2.5rem;
  }
  
  .about-intro-title {
    font-size: 1.75rem;
  }
  
  .about-intro-description {
    font-size: 1rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-card {
    padding: 2rem 1.5rem;
  }
  
  .about-card-title {
    font-size: 1.25rem;
  }
  
  .about-card-text {
    font-size: 0.9375rem;
  }
}

@media (max-width: 640px) {
  .about-content {
    padding: 0 1rem;
  }
  
  .about-intro-title {
    font-size: 1.5rem;
  }
  
  .about-intro-description {
    font-size: 0.9375rem;
  }
  
  .about-card {
    padding: 1.75rem 1.25rem;
  }
  
  .about-card-icon {
    width: 48px;
    height: 48px;
  }
  
  .about-card-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .about-panel {
    padding: 2rem 1.5rem;
  }
  
  .about-panel-features {
    flex-direction: column;
  }
  
  .about-panel-feature {
    width: 100%;
  }
}

.about-highlight-content h3 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

.about-highlight-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .about-description-intro {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
  
  .about-text {
    padding: 3rem 2.5rem;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 650px;
}

.stat-item {
  text-align: left;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 40px;
  height: 2px;
  background: var(--orange);
  opacity: 0.6;
}

.stat-number {
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), rgba(255, 140, 66, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.about-actions {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-short {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  max-width: 600px;
  line-height: 1.7;
  font-style: italic;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 107, 53, 0.4);
}

/* Production Pipeline */
.pipeline-section {
  position: relative;
  z-index: 10;
  background: #080808;
}

.pipeline-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 5rem 3rem 7rem;
  position: relative;
}

.pipeline-phase-label {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--orange);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4rem;
  padding: 0.875rem 2rem;
  background: rgba(255, 107, 53, 0.08);
  border: 2px solid rgba(255, 107, 53, 0.78);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.18);
}

.pipeline-phase-label-hex {
  position: absolute;
  top: -4.5rem;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0;
  white-space: nowrap;
}

.pipeline-row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  position: relative;
  margin-bottom: 5rem;
}

.pipeline-row::before {
  content: '';
  position: absolute;
  left: 3rem;
  right: 3rem;
  top: 3rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.6) 5%,
    rgba(255, 107, 53, 0.6) 95%,
    transparent 100%
  );
  box-shadow: 0 0 6px rgba(255, 107, 53, 0.16);
  z-index: 0;
}

.pipeline-row-lower {
  margin-bottom: 0;
}

.pipeline-row-lower::before {
  left: 3rem;
  right: 3rem;
}

.pipeline-divider {
  position: relative;
  width: 3px;
  min-width: 3px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 107, 53, 0.55) 20%,
    rgba(255, 107, 53, 0.55) 80%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.18);
  align-self: stretch;
  margin: 0 1.5rem;
  flex-shrink: 0;
}

.pipeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
}

.pipeline-step-connector {
  position: absolute;
  left: 50%;
  top: 6rem;
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 107, 53, 0.7) 0%,
    rgba(255, 107, 53, 0.32) 70%,
    transparent 100%
  );
  transform: translateX(-50%);
  z-index: 0;
}

.pipeline-step-number {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, rgba(255, 140, 66, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 4px rgba(0, 0, 0, 1),
    0 0 0 6px rgba(255, 107, 53, 0.72),
    0 8px 20px rgba(255, 107, 53, 0.24),
    0 4px 10px rgba(0, 0, 0, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 2.5rem;
}

.pipeline-step:hover .pipeline-step-number {
  transform: scale(1.06) translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(0, 0, 0, 1),
    0 0 0 7px rgba(255, 107, 53, 0.78),
    0 10px 24px rgba(255, 107, 53, 0.28),
    0 5px 12px rgba(0, 0, 0, 0.4),
    inset 0 2px 5px rgba(255, 255, 255, 0.28);
}

.pipeline-step-content {
  text-align: center;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(250, 250, 252, 0.96) 100%
  );
  border: 2px solid rgba(255, 107, 53, 0.75);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.24),
    0 2px 6px rgba(255, 107, 53, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.pipeline-step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.85), rgba(255, 140, 66, 0.85));
  opacity: 0.35;
}

.pipeline-step:hover .pipeline-step-content {
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28),
    0 4px 10px rgba(255, 107, 53, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 107, 53, 0.82);
}

.pipeline-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.pipeline-step-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4a4a4a;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

@media (max-width: 1400px) {
  .pipeline-step-number {
    width: 5rem;
    height: 5rem;
    font-size: 1.75rem;
  }
  
  .pipeline-step-title {
    font-size: 1.125rem;
  }
  
  .pipeline-step-description {
    font-size: 0.875rem;
  }
}

@media (max-width: 1200px) {
  .pipeline-container {
    padding: 4rem 2rem 6rem;
  }
  
  .pipeline-row {
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .pipeline-step-number {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .pipeline-step-content {
    padding: 1.5rem 1.25rem;
  }
  
  .pipeline-step-title {
    font-size: 1.125rem;
  }
  
  .pipeline-step-description {
    font-size: 0.875rem;
  }
  
  .pipeline-divider {
    margin: 0 1.25rem;
  }
}

@media (max-width: 1024px) {
  .pipeline-container {
    padding: 3rem 1.5rem 4rem;
  }
  
  .pipeline-row {
    gap: 1.25rem;
  }
  
  .pipeline-row::before {
    left: 2.5rem;
    right: 2.5rem;
    top: 2.25rem;
  }
  
  .pipeline-step-number {
    width: 4rem;
    height: 4rem;
    font-size: 1.25rem;
  }
  
  .pipeline-phase-label {
    font-size: 1.125rem;
    padding: 0.625rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .pipeline-container {
    padding: 3rem 1.5rem 4rem;
  }
  
  .pipeline-phase-label {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    margin-bottom: 2.5rem;
  }
  
  .pipeline-row {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3.5rem;
  }
  
  .pipeline-row::before {
    display: none;
  }
  
  .pipeline-step {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .pipeline-step-connector {
    height: 3rem;
  }
  
  .pipeline-step-number {
    width: 5rem;
    height: 5rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .pipeline-step-content {
    padding: 1.75rem 1.5rem;
  }
  
  .pipeline-step-title {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }
  
  .pipeline-step-description {
    font-size: 0.9375rem;
  }
  
  .pipeline-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--orange) 20%,
      var(--orange) 80%,
      transparent 100%
    );
    margin: 2.5rem 0;
  }
  
  .pipeline-phase-label-hex {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 640px) {
  .pipeline-container {
    padding: 2rem 1rem;
  }
  
  .pipeline-row {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .pipeline-step-number {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.375rem;
  }
  
  .pipeline-step-content {
    padding: 1.25rem 1rem;
  }
  
  .pipeline-step-title {
    font-size: 1rem;
  }
  
  .pipeline-step-description {
    font-size: 0.875rem;
  }
  
  .pipeline-phase-label {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

/* Portfolio */
.portfolio-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(
    180deg,
    #000 0%,
    #0a0a0a 15%,
    #0f0f0f 30%,
    #0a0a0a 50%,
    #050505 70%,
    #000 100%
  );
  background-attachment: fixed;
}

.portfolio-list-container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.portfolio-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .portfolio-list {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2.5rem;
  }
}

@media (min-width: 1400px) {
  .portfolio-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1800px) {
  .portfolio-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.portfolio-list-item {
  display: block;
  position: relative;
  cursor: pointer;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
}

.portfolio-list-item:hover {
  transform: none;
  box-shadow: none;
  z-index: 5;
}

.portfolio-item-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.2s ease;
  filter: brightness(0.9) contrast(1);
}

.portfolio-list-item:hover .portfolio-item-image img {
  transform: none;
  filter: brightness(1) contrast(1.05);
}

.portfolio-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.94) 100%);
  padding: 1.5rem 1.25rem;
  transform: translateY(0);
  opacity: 1;
  transition: none;
  pointer-events: auto;
}

.portfolio-list-item:hover .portfolio-item-overlay {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.portfolio-item-category {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.portfolio-item-title {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  line-height: 1.3;
}

.portfolio-item-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Inter', sans-serif;
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 0.6rem 0;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.portfolio-subtitle-link {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.portfolio-subtitle-link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.portfolio-item-client {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-client-info {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.portfolio-client-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portfolio-client-name {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

/* Portfolio Clients Carousel */
.portfolio-clients-carousel-wrapper {
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.74);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 2rem;
}

.portfolio-clients-carousel-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 2rem;
}

.portfolio-clients-carousel-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}


.portfolio-clients-carousel-wrapper::before,
.portfolio-clients-carousel-wrapper::after {
  display: none;
}

.portfolio-clients-carousel-container {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  contain: layout style;
  /* Mask for fade in/out effect - wider fade zones for continuous effect */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.portfolio-clients-carousel-track {
  display: flex;
  gap: 3rem;
  height: 100%;
  align-items: center;
  position: absolute;
  left: 0;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  /* Animation is handled by JavaScript for seamless looping; no jitter on loop */
  animation: none !important;
}

@keyframes portfolioCarouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Move by exactly one set width (calculated dynamically via JS) for seamless infinite loop */
    /* With tripled items [A,B,C,A,B,C,A,B,C], moving by exact set width creates perfect loop */
    transform: translateX(calc(-1 * var(--carousel-set-width, 1296px)));
  }
}

.portfolio-clients-carousel-item {
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.2s ease;
  position: relative;
}

.portfolio-clients-carousel-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  z-index: 10;
}


.portfolio-clients-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-clients-carousel-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.portfolio-clients-carousel-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  overflow: hidden;
  border-radius: 8px;
}

.portfolio-clients-carousel-link:hover {
  transform: scale(1.02);
}

.portfolio-clients-carousel-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.7) 80%, transparent 100%);
  color: #ffffff;
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 12px 12px;
  max-height: 60%;
  overflow-y: auto;
}

.portfolio-clients-carousel-item:hover .portfolio-clients-carousel-title-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.portfolio-clients-carousel-title-text {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.portfolio-clients-carousel-credits {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.portfolio-clients-carousel-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.portfolio-clients-carousel-link-item {
  color: #FF6B35;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 107, 53, 0.5);
  border-radius: 4px;
  transition: all 0.2s ease;
  pointer-events: auto;
}

.portfolio-clients-carousel-link-item:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: #FF6B35;
  color: #ffffff;
}

.portfolio-carousel-studio {
  background: rgba(255, 255, 255, 0.08);
}

.portfolio-carousel-studio img {
  filter: brightness(0) invert(1) opacity(0.9);
}

.portfolio-carousel-studio:hover img {
  filter: brightness(0) invert(1) opacity(1);
}

.portfolio-studios-carousel-section {
  margin-top: 4rem;
  position: relative;
}

.portfolio-studios-carousel-container {
  width: 100%;
  position: relative;
}

.portfolio-studios-carousel-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.portfolio-studios-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-studios-carousel-item {
  flex-shrink: 0;
  width: 220px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.portfolio-studios-carousel-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.portfolio-studios-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) opacity(0.6);
  transition: filter 0.3s ease;
}

.portfolio-studios-carousel-item:hover img {
  filter: brightness(0) invert(1) opacity(0.8);
}

/* Active Clients Carousel */
.portfolio-active-clients-carousel-section {
  margin-top: 4rem;
  position: relative;
  padding: 3rem 0;
}

.portfolio-carousel-disclaimer {
  text-align: center;
  margin-top: 2rem;
  padding: 0 2rem;
}

.portfolio-disclaimer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.portfolio-clients-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  margin-bottom: 0;
}

.portfolio-active-clients-carousel-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 2rem;
}

.portfolio-active-clients-carousel-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.portfolio-active-clients-carousel-container {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 2rem;
}

.portfolio-active-clients-carousel-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  height: auto;
  will-change: transform;
  transform: translateY(-50%);
}

.portfolio-active-clients-carousel-item {
  flex-shrink: 0;
  width: 280px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  opacity: 1;
}

.portfolio-active-clients-carousel-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.portfolio-active-clients-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.5);
  transition: filter 0.3s ease;
}

.portfolio-active-clients-carousel-item:hover img {
  filter: brightness(0) invert(1) opacity(0.7);
}

@media (max-width: 768px) {
  .portfolio-active-clients-carousel-container {
    height: 140px;
  }
  
  .portfolio-active-clients-carousel-item {
    width: 220px;
    height: 110px;
    padding: 1.5rem;
  }
}

.portfolio-clients-carousel-disclaimer {
  padding: 1.5rem 2rem 0;
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.portfolio-clients-carousel-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .portfolio-studios-carousel-container {
    height: 150px;
  }

  .portfolio-studios-carousel-item {
    width: 200px;
    height: 120px;
    padding: 1.5rem;
  }
}

.portfolio-carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.95) 100%);
  padding: 1.5rem 1.25rem 1rem;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.portfolio-clients-carousel-item:hover .portfolio-carousel-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-carousel-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
  letter-spacing: -0.01em;
}

.portfolio-carousel-roles {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.portfolio-carousel-credit {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: italic;
  margin-top: 0.3rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .portfolio-clients-carousel-wrapper {
    margin-top: 4rem;
  }

  .portfolio-clients-carousel-container {
    height: 320px;
  }
  
  .portfolio-clients-carousel-item {
    width: 350px;
    height: 280px;
    padding: 1.5rem;
  }

  .portfolio-clients-carousel-track {
    gap: 2rem;
  }

  .portfolio-carousel-title {
    font-size: 0.95rem;
  }

  .portfolio-carousel-roles {
    font-size: 0.75rem;
  }
}

/* Portfolio Modal */
.portfolio-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-modal.active {
  display: flex;
  opacity: 1;
}

.portfolio-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.portfolio-modal-content {
  position: relative;
  width: 95%;
  max-width: 1600px;
  height: 90vh;
  max-height: 1200px;
  margin: auto;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

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

.portfolio-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.portfolio-modal-close:hover {
  background: var(--orange);
  transform: rotate(90deg);
}

.portfolio-modal-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.portfolio-modal-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 3rem 4rem 2rem;
}

.portfolio-modal-header {
  margin-bottom: 2rem;
  flex-shrink: 0;
}

.portfolio-modal-category {
  font-size: 0.85rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.4);
  border: 2px solid var(--orange);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.portfolio-modal-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  line-height: 1.2;
}

.portfolio-modal-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Inter', sans-serif;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.portfolio-modal-subtitle .portfolio-subtitle-link {
  font-size: inherit;
  color: inherit;
}

.portfolio-modal-client {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-modal-scrollable {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 1rem;
  margin-right: -1rem;
}

.portfolio-modal-scrollable::-webkit-scrollbar {
  width: 6px;
}

.portfolio-modal-scrollable::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.portfolio-modal-scrollable::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 53, 0.4);
  border-radius: 3px;
}

.portfolio-modal-scrollable::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 53, 0.6);
}

.portfolio-modal-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}

.portfolio-modal-description p {
  margin-bottom: 1.5rem;
}

.portfolio-modal-description h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 2rem 0 1rem;
  font-family: 'Inter', sans-serif;
}

.portfolio-modal-description ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.portfolio-modal-description li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

.portfolio-modal-description li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.portfolio-modal-carousel-wrapper {
  height: 200px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.portfolio-modal-carousel-wrapper::before,
.portfolio-modal-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.portfolio-modal-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, transparent 100%);
}

.portfolio-modal-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 10, 10, 1) 0%, transparent 100%);
}

.portfolio-carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-carousel-track {
  display: flex;
  gap: 1.5rem;
  height: 100%;
  align-items: center;
  position: absolute;
  left: 0;
  will-change: transform;
}

.portfolio-carousel-item {
  flex-shrink: 0;
  width: 280px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.portfolio-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) opacity(0.8);
  transition: filter 0.3s ease;
}

.portfolio-carousel-item:hover img {
  filter: brightness(0) invert(1) opacity(1);
}

@media (max-width: 768px) {
  .portfolio-modal-content {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .portfolio-modal-main {
    padding: 2rem 1.5rem 1rem;
  }

  .portfolio-modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .portfolio-carousel-item {
    width: 200px;
    height: 120px;
  }

  .portfolio-modal-carousel-wrapper {
    height: 150px;
  }
}

/* Why Section */
/* Partners Section */
.partners-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(
    180deg,
    #000 0%,
    #0a0a0a 15%,
    #0f0f0f 30%,
    #0a0a0a 50%,
    #050505 70%,
    #000 100%
  );
  background-attachment: fixed;
  padding: 6rem 2rem 8rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1320px;
  margin: 4rem auto 0;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(10, 10, 10, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.partner-card-link {
  cursor: pointer;
}

.partner-card::before {
  display: none;
}

.partner-card:hover::before {
  transform: none;
}

.partner-card-link:hover,
.partner-card:has(.partner-cta-btn):hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.partner-card:has(.partner-cta-btn):hover::before {
  transform: scaleX(1);
}

.partner-card:has(.partner-cta-btn):hover .partner-logo {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: none;
}

.partner-card:has(.partner-cta-btn):hover .partner-logo img {
  filter: brightness(1.1) contrast(1.2);
}

.partner-card:has(.partner-cta-btn):hover .partner-name {
  color: var(--orange);
}

.partner-card:has(.partner-cta-btn):hover .partner-description {
  color: rgba(255, 255, 255, 0.75);
}

.partner-logo {
  width: 160px;
  height: 160px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.partner-card-link:hover .partner-logo {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: none;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1) contrast(1.1);
  transition: filter 0.3s ease;
}

.partner-card-link:hover .partner-logo img {
  filter: brightness(1.1) contrast(1.2);
}

.partner-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.partner-card-link:hover .partner-name {
  color: rgba(255, 255, 255, 0.95);
}

.partner-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.partner-card-link:hover .partner-description {
  color: rgba(255, 255, 255, 0.75);
}

/* Partner CTA Button - Updated Design v2.0 */
.partner-cta-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding: 0.625rem 1.125rem !important;
  background: rgba(255, 107, 53, 0.1) !important;
  color: var(--orange) !important;
  font-size: 0.8125rem !important;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 107, 53, 0.25) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: none !important;
}

.partner-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--orange) 0%, rgba(255, 107, 53, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.partner-cta-btn span {
  position: relative;
  z-index: 1;
}

.partner-cta-btn:hover {
  border-color: rgba(255, 107, 53, 0.45);
  color: var(--orange) !important;
  transform: none;
  box-shadow: none;
}

.partner-cta-btn:hover::before {
  opacity: 1;
}

.partner-cta-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.partner-cta-btn:hover svg {
  transform: translateX(3px);
}

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

@media (max-width: 768px) {
  .partners-section {
    padding: 4rem 1.5rem 6rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .partner-card {
    padding: 2.5rem 1.5rem;
  }

  .partner-logo {
    width: 140px;
    height: 140px;
  }

  .partner-name {
    font-size: 1.25rem;
  }

  .partner-description {
    font-size: 0.9375rem;
  }
}

.why-intro-card {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
}

.why-description {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text);
}

.why-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* Contact */
.contact-section {
  position: relative;
  z-index: 10;
  background: linear-gradient(
    180deg,
    #000 0%,
    #0a0a0a 15%,
    #0f0f0f 30%,
    #0a0a0a 50%,
    #050505 70%,
    #000 100%
  );
  background-attachment: fixed;
}

.contact-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-subtitle {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

.contact-description {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 3.5rem;
  font-family: 'Inter', sans-serif;
}

.contact-guidelines {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.78);
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
}

.contact-guidelines-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.contact-guidelines-email {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.contact-guidelines-email a {
  font-size: 1.1rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.contact-guidelines-email a:hover {
  color: var(--orange);
}

.contact-guidelines-warning {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--white);
}

.contact-guidelines ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.contact-value {
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.contact-value:hover {
  color: var(--orange);
  transform: translateX(5px);
}

.contact-form {
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: none;
}

.contact-form::before {
  display: none;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.form-group {
}

.form-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--font);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
  box-shadow: none;
}

/* Ensure select maintains dark theme */
.form-group select {
  background-color: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.form-group select::-webkit-select-value {
  color: rgba(255, 255, 255, 0.9);
}

.form-group select::-moz-select-value {
  color: rgba(255, 255, 255, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 1.25rem;
  position: relative;
  background-image: none;
  transition: all 0.2s ease;
}

.form-group select::-ms-expand {
  display: none;
}

/* Service Type dropdown - no custom arrow */
.form-group:has(select) {
  position: relative;
}

.form-group:has(select) select {
  padding-right: 1.25rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1), inset 0 1px 2px rgba(0, 0, 0, 0.3);
  transform: none;
}


.form-group select:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

.form-group select:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Smooth transition for select value changes */
.form-group select {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.2s ease,
              background-color 0.2s ease,
              box-shadow 0.2s ease;
}

/* Style select options - Dark theme matching glassmorphism */
.form-group select option {
  background: rgba(10, 10, 15, 1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.875rem 1rem !important;
  border: none !important;
  font-size: 0.9rem !important;
  font-family: var(--font) !important;
  font-weight: 500 !important;
}

.form-group select option:hover,
.form-group select option:focus {
  background: rgba(255, 107, 53, 0.15) !important;
  color: rgba(255, 255, 255, 1) !important;
}

.form-group select option:checked,
.form-group select option[selected] {
  background: rgba(10, 10, 15, 1) !important;
  color: rgba(255, 107, 53, 1) !important;
  font-weight: 600 !important;
}

.form-group select option:disabled {
  color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(10, 10, 15, 0.6) !important;
  cursor: not-allowed !important;
}

/* Style the select element to ensure dark background */
.form-group select {
  background-color: rgba(0, 0, 0, 0.3) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.form-group select:focus {
  background-color: rgba(0, 0, 0, 0.4) !important;
  color: rgba(255, 255, 255, 1) !important;
}

/* Improve select dropdown appearance */
.form-group select {
  cursor: pointer;
}

.form-group select:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.8;
}

/* Scheduler Section */
.scheduler-section {
}

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

.scheduler-icon {
  color: var(--orange);
  stroke: currentColor;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.scheduler-container {
  background: rgba(10, 10, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.875rem;
  backdrop-filter: blur(20px) saturate(180%);
}

/* Timezone Selector – matches Name/Email/Service Type inputs */
.scheduler-timezone {
  gap: 0.4rem;
}

.timezone-header {
  gap: 0.35rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timezone-icon {
  color: rgba(255, 107, 53, 0.7);
  stroke: currentColor;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.timezone-select-wrap {
}

.timezone-select {
  width: 100%;
  padding: 1rem 1.25rem;
  padding-right: 2.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font);
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.timezone-select:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

.timezone-select:focus {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1), inset 0 1px 2px rgba(0, 0, 0, 0.3);
  outline: none;
}

.timezone-select::-ms-expand {
  display: none;
}

.timezone-select option {
  background: rgba(10, 10, 15, 1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.875rem 1rem !important;
  border: none !important;
  font-size: 0.9rem !important;
  font-family: var(--font) !important;
  font-weight: 500 !important;
}

.timezone-select option:hover,
.timezone-select option:focus {
  background: rgba(255, 107, 53, 0.15) !important;
  color: rgba(255, 255, 255, 1) !important;
}

.timezone-select option:checked,
.timezone-select option[selected] {
  background: rgba(10, 10, 15, 1) !important;
  color: rgba(255, 107, 53, 1) !important;
  font-weight: 600 !important;
}

/* Calendar */
.calendar-container {
  gap: 0.5rem;
}

.calendar-header {
  padding: 0.25rem 0;
  min-height: 2.5rem;
}

.calendar-header .calendar-nav-btn {
  flex-shrink: 0;
}

.calendar-month-year {
  flex: 1;
  text-align: center;
  line-height: 1;
}

.calendar-nav-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  vertical-align: middle;
}

.calendar-nav-btn:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  color: rgba(255, 107, 53, 0.9);
}

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

.calendar-nav-btn svg {
  display: block;
  stroke: currentColor;
  width: 16px;
  height: 16px;
  margin: 0 auto;
}

.calendar-month-year {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font);
  letter-spacing: -0.01em;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}

.weekday {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0;
  font-family: var(--font);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
  position: relative;
  backdrop-filter: blur(5px);
  min-height: 28px;
}

.calendar-day:hover {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

.calendar-day.other-month {
  opacity: 0.25;
  cursor: not-allowed;
}

.calendar-day.other-month:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
}

.calendar-day.today {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.3);
  color: rgba(255, 107, 53, 0.9);
  font-weight: 600;
}

.calendar-day.selected {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.6);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.calendar-day.available {
  border-color: rgba(76, 175, 80, 0.3);
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.calendar-day.available:hover {
  border-color: rgba(76, 175, 80, 0.5);
  background: rgba(76, 175, 80, 0.1);
}

/* Unavailable days (not Friday/Saturday/Sunday) */
.calendar-day:not(.available):not(.other-month) {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Time Slots */
.time-slots-container {
  gap: 0.4rem;
}

.time-slots-header {
  gap: 0.35rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.time-icon {
  color: rgba(255, 107, 53, 0.7);
  stroke: currentColor;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.time-slots-grid {
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.4rem;
  min-height: 50px;
}

.time-slot-placeholder {
  grid-column: 1 / -1;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.time-slot-placeholder svg {
  stroke: currentColor;
  opacity: 0.3;
}

.time-slot {
  padding: 0.5rem 0.625rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.time-slot::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.time-slot:hover {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.time-slot:hover::before {
  left: 100%;
}

.time-slot.selected {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.6);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.time-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Appointment Summary */
.appointment-summary {
  padding: 0.75rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.summary-header {
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-icon {
  color: rgba(255, 107, 53, 0.8);
  stroke: currentColor;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.summary-content {
  gap: 0.25rem;
}

.summary-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font);
}

.summary-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 107, 53, 0.9);
  font-family: var(--font);
}

.summary-timezone {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font);
}

.form-status {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.form-status.success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #4caf50;
}

.form-status.error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: #f44336;
}

.contact-footer {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Footer Logo Section */
.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.contact-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}



.contact-footer-rights {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.contact-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-footer-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s ease;
}

.contact-footer-links a:hover {
  color: var(--orange);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 1.125rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
  .navigation {
    left: 1.5rem;
    top: 1.5rem;
    width: 260px;
  }

  .main-content {
    padding-left: 240px;
  }

  .section {
    padding: 6rem 4rem;
  }

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

  .animated-title-container {
    bottom: 1rem;
    left: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navigation {
    left: 1rem;
    top: 1rem;
    width: auto;
  }

  .animated-title-container {
    bottom: 1.5rem;
    width: 95%;
  }

  .ae-text-container {
    padding: 1rem 1.5rem;
  }

  .ae-text-word {
    font-size: clamp(1rem, 4vw, 1.5rem);
    letter-spacing: 0.08em;
    word-spacing: 0.4em;
  }

  .logo-text {
    display: none;
  }

  .nav-menu {
    flex-direction: row;
    padding: 1rem;
    gap: 0.25rem;
    border-radius: 20px;
  }

  .nav-text {
    display: none;
  }

  .nav-link {
    padding: 0.875rem;
    justify-content: center;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link:hover {
    transform: translateY(-2px);
  }

  .main-content {
    padding-left: 0;
    padding-top: 120px;
  }

  .section {
    padding: 4rem 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .portfolio-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.25rem;
  }

  .video-footer {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }

  .video-social-links {
    gap: 0.75rem;
  }

  .video-social-links a {
    width: 28px;
    height: 28px;
  }

  .video-social-links a svg {
    width: 16px;
    height: 16px;
  }

  .video-copyright {
    font-size: 0.65rem;
  }

  .animated-title-container {
    bottom: 0.75rem;
    left: 1rem;
  }

  .ae-text-word {
    font-size: clamp(1.5rem, 6vw, 3rem);
    letter-spacing: 0.03em;
  }

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

  .why-intro-card {
    padding: 1.75rem;
  }
}

@media (max-width: 768px) {
  .navigation.hidden {
    display: flex !important;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .animated-title-container {
    left: 50%;
    right: auto;
    bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
    width: min(calc(100vw - 2rem), 34rem);
    max-width: calc(100vw - 2rem);
    transform: translateX(-50%);
  }

  .ae-text-container {
    width: 100%;
    padding: 0.875rem 1rem;
  }

  .ae-text-word {
    min-height: 0;
    padding: 0;
    font-size: clamp(1.05rem, 4.8vw, 1.45rem);
    line-height: 1.45;
    letter-spacing: 0.04em;
    word-spacing: normal;
  }

  .video-footer {
    left: 50%;
    right: auto;
    bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
    width: max-content;
    max-width: calc(100vw - 2rem);
    transform: translateX(-50%);
    align-items: center;
    text-align: center;
  }

  .video-social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .vs-header {
    padding: 0.55rem 0.65rem;
    gap: 0.45rem;
  }

  .vs-header .nav-footer {
    gap: 0.35rem;
  }

  .vs-header .language-switcher {
    gap: 0.08rem;
    padding: 0.15rem;
  }

  .vs-header .lang-button {
    min-width: 1.75rem;
    padding: 0.32rem 0.38rem;
    font-size: 0.64rem;
  }

  .vs-header .nav-link {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    font-size: 0.68rem;
  }

  .video-footer {
    gap: 0.45rem;
  }

  .video-social-links {
    gap: 0.5rem;
  }

  .video-copyright {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
}
