/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

/* CSS Variables */
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-accent: #ffffff;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e0e0e0;
  --color-gray-300: #a0a0a0;
  --color-dark-100: #333333;
  --color-dark-200: #1a1a1a;
  --color-dark-300: #0f0f0f;
  --border-radius-sm: 0.125rem;
  --border-radius: 0.25rem;
  --border-radius-lg: 0.375rem;
  --border-radius-xl: 0.5rem;
  --border-radius-2xl: 0.75rem;
  --border-radius-full: 9999px;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Glass effect variables */
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.03);
  --glass-highlight: rgba(255, 255, 255, 0.05);
  --glass-shadow: rgba(0, 0, 0, 0.2);
  --glass-blur: 5px;
}

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

html, body {
  background: var(--color-black) !important;
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: #000000 !important;
  color: var(--color-white);
  min-height: 100vh;
  line-height: 1.5;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

/* Glass effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 16px 0 var(--glass-shadow);
  transition: all var(--transition-medium);
  opacity: 0.8;
}

.glass-card:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.3);
  border-color: var(--glass-highlight);
  transform: translateY(-3px);
  opacity: 0.9;
}

.glass-button {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1.5rem;
  color: var(--color-white);
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
  opacity: 0.8;
}

.glass-button:hover {
  background: var(--glass-highlight);
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 0.9;
}

/* Intro Animation */
.intro-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 3.5s ease-in-out forwards;
  overflow: hidden;
}

.intro-animation::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  animation: pulseGradient 3s ease-in-out infinite;
}



/* Dynamic Background Animation */
.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background-color: #000000;
}

/* Particle layers */
.particle-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* Gradient overlay */
.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 4;
  pointer-events: none;
  opacity: 0.8;
}

/* Animated grid background */
.animated-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  opacity: 0.1;
  animation: gridMove 80s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Glow spots */
.animated-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.01) 0%, rgba(0, 0, 0, 0) 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.01) 0%, rgba(0, 0, 0, 0) 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.005) 0%, rgba(0, 0, 0, 0) 40%);
  z-index: 1;
  opacity: 0.15;
  animation: glowMove 60s ease-in-out infinite alternate;
}

@keyframes glowMove {
  0% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
  }
  100% {
    background-position: 10% 20%, 90% 80%, 60% 40%;
  }
}

/* Water Bubbles Animation */
.bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 15;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow:
    inset 0 0 5px rgba(255, 255, 255, 0.03),
    0 0 3px rgba(255, 255, 255, 0.02);
  opacity: 0;
  animation: bubbleFloat linear infinite;
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  z-index: 5;
  mix-blend-mode: screen;
  --bubble-opacity: 0.05;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.bubble::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 15%;
  height: 15%;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  filter: blur(2px);
}

.bubble::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 45%;
  width: 3%;
  height: 3%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(1px);
}

/* Floating particles */
.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  filter: blur(1px);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.02);
  animation: particlePulse 6s infinite alternate ease-in-out;
}

@keyframes particlePulse {
  0% {
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.02);
    opacity: var(--particle-opacity, 0.03);
  }
  100% {
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.04);
    opacity: calc(var(--particle-opacity, 0.03) * 1.2);
  }
}

/* Light beams */
.light-beam {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  transform-origin: top;
  z-index: 2;
  opacity: 0.05;
  filter: blur(0.5px);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.01);
}

/* Wave effect */
.wave {
  position: absolute;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.005), rgba(255, 255, 255, 0));
  z-index: 1;
  opacity: 0.05;
  transform-origin: 50% 50%;
  backdrop-filter: blur(0.3px);
  -webkit-backdrop-filter: blur(0.3px);
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  5% {
    opacity: calc(var(--bubble-opacity) * 0.2);
  }
  20% {
    opacity: var(--bubble-opacity);
  }
  40% {
    opacity: calc(var(--bubble-opacity) * 0.6);
  }
  60% {
    opacity: var(--bubble-opacity);
  }
  80% {
    opacity: calc(var(--bubble-opacity) * 0.4);
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

@keyframes bubbleWobble {
  0% {
    transform: translateX(-5px) rotate(-2deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  100% {
    transform: translateX(5px) rotate(2deg);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: var(--particle-opacity, 0.5);
  }
  90% {
    opacity: var(--particle-opacity, 0.5);
  }
  100% {
    transform: translateY(var(--float-y, -100px)) translateX(var(--float-x, 50px));
    opacity: 0;
  }
}

@keyframes beamGlow {
  0% {
    opacity: 0.1;
    transform: scaleY(0.8) translateX(0);
  }
  50% {
    opacity: 0.3;
    transform: scaleY(1.2) translateX(var(--beam-x, 10px));
  }
  100% {
    opacity: 0.1;
    transform: scaleY(0.8) translateX(0);
  }
}

@keyframes waveFlow {
  0% {
    transform: translateY(0) scaleY(1) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(var(--wave-y, 30px)) scaleY(1.2) rotate(var(--wave-rotate, 1deg));
    opacity: 0.2;
  }
  100% {
    transform: translateY(0) scaleY(1) rotate(0deg);
    opacity: 0.1;
  }
}

@keyframes backgroundPulse {
  0% {
    opacity: 0.8;
    background-position: 0% 0%;
  }
  50% {
    opacity: 1;
    background-position: 100% 100%;
  }
  100% {
    opacity: 0.8;
    background-position: 0% 0%;
  }
}

/* Glitch effect */
.intro-logo .glitch-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: glitch 3s linear infinite;
  animation-delay: 1.5s;
}

.intro-logo .glitch-effect:nth-child(2) {
  color: rgba(255, 255, 255, 0.8);
  animation-delay: 1.7s;
}

@keyframes glitch {
  0% {
    transform: translate(0);
    opacity: 0;
  }
  1% {
    transform: translate(-2px, 2px);
    opacity: 0.5;
  }
  2% {
    transform: translate(2px, -2px);
    opacity: 0.5;
  }
  3% {
    transform: translate(0);
    opacity: 0;
  }
  14% {
    transform: translate(0);
    opacity: 0;
  }
  15% {
    transform: translate(-2px, -2px);
    opacity: 0.5;
  }
  16% {
    transform: translate(2px, 2px);
    opacity: 0.5;
  }
  17% {
    transform: translate(0);
    opacity: 0;
  }
  100% {
    transform: translate(0);
    opacity: 0;
  }
}

.intro-logo-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-logo {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.02em;
  color: var(--color-white);
  opacity: 0;
  transform: scale(0.8);
  animation: logoAnimation 3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.intro-tagline {
  font-size: 1.25rem;
  color: var(--color-gray-300);
  opacity: 0;
  margin-top: 1rem;
  animation: taglineAnimation 3s ease-in-out forwards;
  text-align: center;
}

.intro-logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-white);
  animation: lineAnimation 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.8s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  85% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logoAnimation {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  30% {
    opacity: 1;
    transform: scale(1.1) translateY(0);
  }
  40% {
    transform: scale(1) translateY(0);
  }
  85% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.2) translateY(-20px);
  }
}

@keyframes taglineAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  40% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes lineAnimation {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes pulseGradient {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
}

/* Particles for intro animation */
.particle {
  position: absolute;
  background-color: var(--color-white);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.2;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

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

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

/* Utility classes */
.text-blue {
  color: var(--color-blue);
}

.text-yellow {
  color: var(--color-yellow);
}

.text-pink {
  color: var(--color-pink);
}

.text-green {
  color: var(--color-green);
}

.bg-black {
  background-color: var(--color-black);
}

/* Header styles */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.01);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.main-nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.5rem 1rem;
}

.logo {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--color-white);
  position: relative;
  transition: var(--transition-fast);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo span {
  position: relative;
}

.text-blue {
  color: var(--color-white);
  opacity: 0.7;
  transition: var(--transition-fast);
}

.logo:hover .text-blue {
  opacity: 1;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  font-size: 0.75rem;
  font-weight: 500;
}

.nav-link {
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
  position: relative;
  color: var(--color-gray-300);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.5;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-white);
}

.contact-button {
  margin-left: 1rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.02);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  animation: subtleButtonGlow 3s infinite alternate;
  opacity: 0.8;
}

@keyframes subtleButtonGlow {
  0% {
    border-color: rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  }
  100% {
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.05);
  }
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.1);
  animation: none;
  opacity: 0.9;
}

/* Main container */
.main-container {
  min-height: 80vh;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero section */
.hero-section {
  width: 100%;
  padding-bottom: 2rem;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--color-black);
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.hero-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.8s ease-out forwards;
}

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

.agency-label {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-gray-300);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  animation: fadeIn 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out 0.1s forwards;
}

.hero-title span {
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-title:hover span::after {
  transform: scaleX(1);
}

.hero-description {
  font-size: 0.875rem;
  color: var(--color-gray-300);
  max-width: 20rem;
  margin-top: 0.75rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.primary-button {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--color-white);
  transition: var(--transition-fast);
  font-size: 0.75rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  animation: subtleButtonGlow 3s infinite alternate;
  opacity: 0.8;
}

.primary-button:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.1);
  animation: none;
  opacity: 0.9;
}

.secondary-button {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.02);
  font-weight: 500;
  color: var(--color-white);
  transition: var(--transition-fast);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.7;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.05);
  opacity: 0.8;
}

/* Button ripple effect */
.button-ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Form success message */
.form-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-success-message svg {
  width: 3rem;
  height: 3rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.form-success-message p {
  font-size: 0.875rem;
  color: var(--color-white);
  max-width: 20rem;
  line-height: 1.5;
}

.stats-container {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-box {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-lg);
  padding: 0.875rem;
  text-align: center;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  transition: var(--transition-fast);
}

.stat-box:hover {
  transform: translateY(-2px);
  border-color: var(--glass-highlight);
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.2);
}

.stat-label {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-gray-300);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.stat-value {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-white);
  position: relative;
  display: inline-block;
}

.stat-value.animate {
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image-container {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  position: relative;
  filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.08)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
}

.hero-image {
  border-radius: var(--border-radius-2xl);
  border: 1px solid var(--color-dark-100);
  background-color: var(--color-dark-200);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.conversion-badge {
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(35, 38, 58, 0.8);
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  color: var(--color-yellow);
  font-weight: 700;
}

.growth-badge {
  position: absolute;
  left: 1rem;
  bottom: 1.25rem;
  background-color: var(--color-dark-300);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-xl);
  font-size: 0.75rem;
  color: var(--color-green);
  font-weight: 600;
}

/* Section styles */
.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0;
  background-color: var(--color-black);
}

.section-container {
  width: 100%;
  max-width: 896px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  position: relative;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-medium);
}

.section-title.animate {
  transform: translateY(0);
  opacity: 1;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.3;
  transition: var(--transition-fast);
}

.section-title:hover::after {
  width: 60px;
  opacity: 0.5;
}

.section-description {
  color: var(--color-gray-300);
  font-size: 0.875rem;
  font-weight: 400;
  max-width: 32rem;
  margin: 1rem auto 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  margin-top: 2.5rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  gap: 0.75rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-medium);
  transform: translateY(20px);
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, var(--glass-highlight) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card.animate {
  animation: featureCardIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(var(--animation-order, 0) * 0.1s);
}

@keyframes featureCardIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.04);
  opacity: 0.8;
}

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

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: var(--transition-fast);
  transform: translateY(5px);
}

.feature-card.animate .feature-icon {
  animation: featureIconIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc((var(--animation-order, 0) * 0.1s) + 0.2s);
}

@keyframes featureIconIn {
  0% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  opacity: 1;
}

.feature-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
  position: relative;
  transition: var(--transition-fast);
}

.feature-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.3;
}

.feature-card:hover .feature-title::after {
  width: 100%;
}

.feature-description {
  font-size: 0.75rem;
  color: var(--color-gray-300);
  text-align: center;
  line-height: 1.5;
  transform: translateY(5px);
  opacity: 0;
}

.feature-card.animate .feature-description {
  animation: featureDescIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc((var(--animation-order, 0) * 0.1s) + 0.3s);
}

@keyframes featureDescIn {
  0% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Metrics grid */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  margin-top: 2.5rem;
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  gap: 0.75rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
}

.metric-card.animate {
  transform: translateY(0);
  opacity: 1;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--glass-highlight);
  opacity: 0.3;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.04);
  opacity: 0.8;
}

.metric-card:hover::before {
  opacity: 0.2;
}

.metric-label {
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-300);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0.25rem 0;
  transition: var(--transition-fast);
}

.metric-card:hover .metric-value {
  transform: scale(1.05);
}

.metric-description {
  font-size: 0.75rem;
  color: var(--color-gray-300);
  text-align: center;
  line-height: 1.5;
}

.analytics-image {
  width: 100%;
  max-width: 32rem;
  margin: 2rem auto;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  padding: 0.5rem;
}

.clickable-analytics-image {
  cursor: zoom-in; /* Or pointer, zoom-in is more specific */
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.clickable-analytics-image:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Testimonials */
.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}

.testimonial-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-medium);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
}

.testimonial-card.animate {
  transform: translateY(0);
  opacity: 1;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 4rem;
  color: var(--glass-highlight);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.04);
  opacity: 0.8;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.client-avatar {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
  filter: brightness(1.05);
  animation: subtleAvatarGlow 4s infinite alternate;
  opacity: 0.8;
}

@keyframes subtleAvatarGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    filter: brightness(1.05);
  }
  100% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    filter: brightness(1.1);
  }
}

.testimonial-card:hover .client-avatar {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  filter: brightness(1.1);
  animation: none;
  opacity: 0.9;
}

.client-name {
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.875rem;
}

.client-role {
  font-size: 0.75rem;
  color: var(--color-gray-300);
  font-weight: 400;
}

.testimonial-quote {
  color: var(--color-white);
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.testimonial-image {
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 20rem;
  transition: var(--transition-fast);
  filter: brightness(1.05) contrast(1.05);
  animation: subtleImageGlow 5s infinite alternate;
  opacity: 0.8;
}

@keyframes subtleImageGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
    filter: brightness(1.05) contrast(1.05);
  }
  100% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
    filter: brightness(1.08) contrast(1.08);
  }
}

.testimonial-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  filter: brightness(1.1) contrast(1.1);
  animation: none;
  opacity: 0.9;
}

/* Partners */
.partners-container {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  height: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer */
.footer {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  color: var(--color-gray-200);
  padding: 3rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.01);
  box-shadow: 0 -4px 16px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}

.footer-info {
  max-width: 20rem;
}

.footer-logo {
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.footer-description {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--color-gray-100);
  opacity: 0.8;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

.footer-email {
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--color-blue);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 500;
}

.footer-nav-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-blue);
}

.copyright {
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.6;
  margin-top: 1.5rem;
}

/* Portfolio page */
.portfolio-section {
  width: 100%;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
  min-height: 100vh;
  position: relative;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.portfolio-title {
  font-weight: 900;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.portfolio-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.portfolio-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-2xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  opacity: 0.9;
  min-height: 500px;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, var(--glass-highlight) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
  border-color: var(--glass-highlight);
  opacity: 1;
}

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

.portfolio-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.portfolio-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  filter: blur(8px);
  border: 2px solid var(--glass-border);
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.portfolio-avatar:hover {
  filter: blur(12px);
}

.portfolio-header {
  position: relative;
}

.portfolio-header::after {
  content: 'Logo Blurred Due To Client Confidentiality';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.025em;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}



.portfolio-header:hover::after {
  opacity: 1;
}

.portfolio-info {
  flex: 1;
  position: relative;
}

.portfolio-name {
  font-weight: 700;
  color: var(--color-white);
  font-size: 1.125rem;
  filter: blur(4px);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.portfolio-info::after {
  content: 'Show Name Blurred Due To Client Confidentiality';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.025em;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.portfolio-info:hover::after {
  opacity: 1;
}

.portfolio-role {
  font-size: 0.875rem;
  color: var(--color-gray-300);
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.4;
}

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.portfolio-stat {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 1;
  min-height: auto;
  justify-content: flex-start;
  align-items: flex-start;
}

.portfolio-stat .stat-label {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
  text-align: left;
}

.portfolio-stat .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  text-align: left;
}

.portfolio-quote {
  font-style: italic;
  color: var(--color-white);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  opacity: 0.9;
}

.portfolio-quote::before {
  content: '"';
  position: absolute;
  top: -0.25rem;
  left: -0.5rem;
  font-size: 1rem;
  color: var(--color-white);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.portfolio-analytics {
  border-radius: var(--border-radius);
  border: none;
  margin-top: auto;
  overflow: hidden;
  background: transparent;
  padding: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Portfolio responsive design */
@media (max-width: 1400px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for medium-large screens */
  }
}

@media (max-width: 768px) {
  body {
    font-size: 13px; /* Slightly smaller base font for mobile */
  }

  .main-nav {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    width: 100%;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
  
  .nav-link {
    padding: 0.5rem 1rem;
    display: block; /* Make links easier to tap */
    text-align: center;
  }

  .contact-button { /* In header */
    margin-top: 1rem;
    width: 80%;
    max-width: 250px;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content, .hero-image-container {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .hero-image-container {
    order: -1; /* Image first on mobile */
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem; /* Adjust font size */
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 0.9rem; /* Adjust font size */
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .primary-button,
  .hero-buttons .secondary-button {
    width: 90%;
    max-width: 300px;
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .stat-box {
    width: 80%;
    max-width: 280px;
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  .stat-value {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.8rem; /* Adjust section titles */
  }
  .section-description {
    font-size: 0.85rem; /* Adjust section descriptions */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .features-grid, 
  .metrics-grid,
  .portfolio-grid,
  .episodes-grid,
  .captures-image-grid,
  .team-grid {
    grid-template-columns: 1fr; /* Single column for all grids */
    gap: 1.5rem; /* Adjust gap */
  }
  
  .portfolio-card,
  .feature-card,
  .metric-card,
  .episode-item,
  .grid-item,
  .team-member {
    padding: 1rem; /* Adjust padding for cards/items in grids */
  }
  
  .portfolio-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .portfolio-avatar {
      margin-bottom: 0.5rem;
  }
  .portfolio-stats {
      grid-template-columns: repeat(2, 1fr); /* 2 stats per row on mobile */
      gap: 0.5rem;
  }
   .portfolio-stat {
      padding: 0.5rem;
  }
  .portfolio-quote {
      font-size: 0.85rem;
  }

  /* Testimonial Carousel on index.html */
  .testimonials-carousel .testimonial-slide {
    padding: 1rem; /* Reduce padding for slides */
  }
  .testimonial-content {
    padding: 1.5rem; /* Reduce padding inside content */
  }
  .testimonial-content h3 {
    font-size: 1.1rem;
  }
  .testimonial-content blockquote {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .testimonial-content div[style*="gap: 1rem"] { /* Stat-like pills */
    gap: 0.5rem !important;
    justify-content: center;
  }
  .testimonial-content div[style*="background: rgba(0, 123, 255, 0.1)"] {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem;
  }
  
  /* CTA Section (New Style on Portfolio) */
  .new-cta-style h2 {
    font-size: 1.9rem;
  }
  .new-cta-style .cta-label {
    font-size: 0.7rem;
  }
  .new-cta-style p {
    font-size: 0.9rem;
  }
  .new-cta-style .cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }
   .new-cta-style .cta-button-schedule,
   .new-cta-style .cta-button-portfolio {
    width: 90%;
    max-width: 300px;
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-info, .footer-nav {
    width: 100%;
    margin-bottom: 1.5rem;
    align-items: center; /* Center content within footer sections */
  }
  .footer-nav {
    margin-bottom: 0; /* No margin for the last item when stacked */
  }
  .footer-logo {
    font-size: 1.5rem;
  }
  .footer-description {
    font-size: 0.8rem;
  }
  .footer-nav-title {
    margin-bottom: 0.5rem;
  }
  
  /* Portfolio Page - Featured Captures & Episodes */
  .captures-image-grid .grid-item,
  .episodes-grid .episode-item {
    margin-bottom: 1rem; /* Add some space between stacked items */
  }
  
  /* Lightbox on portfolio page */
  .lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
  }
  .lightbox-prev, .lightbox-next {
    font-size: 1.5rem;
    padding: 0.75rem;
  }
  .lightbox-caption {
    font-size: 0.8rem;
  }
  
  /* Ensure some specific animations don't cause overflow or look odd */
  .hero-title span::after {
    animation: none; /* Disable typing caret on mobile if it causes issues */
  }
}

@media (max-width: 480px) {
  body {
    font-size: 12px; /* Even smaller base for very small phones */
  }
  .hero-title {
    font-size: 1.9rem; 
  }
  .section-title {
    font-size: 1.6rem;
  }
  .hero-description, .section-description {
    font-size: 0.8rem;
  }
  .portfolio-stats {
      grid-template-columns: 1fr; /* 1 stat per row on very small screens */
  }
  .testimonial-content {
    padding: 1rem;
  }
   .testimonial-content h3 {
    font-size: 1rem;
  }
  .testimonial-content blockquote {
    font-size: 0.85rem;
  }
}

/* Placeholder pages */
.placeholder-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  width: 100%;
}

.placeholder-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}

/* Media Queries */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }

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

  .portfolio-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero-container {
    flex-direction: row;
  }

  .hero-image-container {
    display: flex;
  }

  .features-grid, .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-container {
    flex-direction: row;
  }

  .footer-container {
    flex-direction: row;
  }

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

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

/* Animation classes */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

.pulse {
  animation: pulse 1s ease-in-out;
}

.section-title, .feature-card, .metric-card, .testimonial-card, .hero-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-title.animate, .feature-card.animate, .metric-card.animate, .testimonial-card.animate, .hero-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));
  transition: width 1s ease-in-out;
}

.hero-title.animate::after {
  width: 100%;
}

/* Services page styles */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0.8;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.04);
  opacity: 0.9;
}

.service-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.1);
  margin-bottom: 1rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 8px rgba(52, 152, 219, 0.3));
}

.service-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-description {
  font-size: 1rem;
  color: var(--color-gray-300);
  line-height: 1.6;
}

.service-features {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-gray-200);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: bold;
}

.service-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-blue);
}

.service-testimonial {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
  position: relative;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

.service-testimonial blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-testimonial blockquote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -10px;
  font-size: 8rem;
  color: rgba(52, 152, 219, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: -1;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--color-blue);
  font-weight: 600;
}

.service-cta-section {
  text-align: center;
  margin: 4rem 0 0;
  padding: 4.5rem 2rem; /* Slightly adjusted padding */
  background: linear-gradient(145deg, #0F0F0F 0%, #141414 100%); /* Slightly adjusted darker gradient */
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.04); /* Subtly increased border visibility */
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.service-cta-section::before { /* Top highlight line */
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%; /* Adjusted width */
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); /* Slightly more visible gradient */
  opacity: 0.8;
}

.service-cta-section::after { /* Large blurred radial gradient for depth */
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%; /* Adjust size as needed */
  height: 80%; /* Adjust size as needed */
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--color-accent-rgb, 80, 120, 180), 0.05) 0%, transparent 60%); /* Using a variable for accent or a fallback */
  filter: blur(50px); /* Increased blur for subtlety */
  opacity: 0.5; /* Adjust opacity as needed */
  z-index: 0; /* Behind content */
}


.service-cta-section .section-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* Ensure content is above the ::after pseudo-element */
}

.service-cta-section h2 {
  font-size: 2.7rem; /* Slightly increased for impact */
  font-weight: 700; /* Back to a bolder weight */
  margin-bottom: 1.25rem;
  color: var(--color-white);
  line-height: 1.3;
}

.service-cta-section h2 .text-blue {
  color: #6495ED; /* A more appealing, but still somewhat muted, cornflower blue */
}


.service-cta-section p {
  font-size: 1.05rem; /* Slightly increased */
  color: var(--color-gray-200); /* Lighter gray for better readability */
  margin-bottom: 2.5rem; /* Increased margin for button spacing */
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  opacity: 0.9;
}

/* Refined button styles for CTA section */
.service-cta-section .primary-button {
  padding: 0.75rem 2rem; /* Adjusted padding */
  font-size: 0.9rem; /* Adjusted font size */
  font-weight: 600; /* Bolder font weight */
  border-radius: var(--border-radius-xl); /* Slightly larger radius */
  background: rgba(255, 255, 255, 0.05); /* Slightly more opaque glass */
  border: 1px solid rgba(255, 255, 255, 0.08); /* Slightly more visible border */
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25), 0 2px 4px rgba(0,0,0,0.15);
  transition: all var(--transition-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.service-cta-section .primary-button:hover {
  background: rgba(255, 255, 255, 0.1); /* More noticeable brightening */
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3), 0 3px 7px rgba(0,0,0,0.2);
}

.service-cta-section .primary-button .arrow-icon {
  width: 1em;
  height: 1em;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.service-cta-section .primary-button:hover .arrow-icon {
  transform: translateX(4px);
  opacity: 1;
}


/* About page styles */
.about-story {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(52, 152, 219, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-image-caption {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  color: var(--color-white);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-subtitle {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin-top: 1rem;
}

.about-content p {
  font-size: 1.125rem;
  color: var(--color-gray-300);
  line-height: 1.7;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  justify-content: space-around;
}

.about-stat {
  text-align: center;
}

.about-stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 1rem;
  color: var(--color-gray-200);
  font-weight: 600;
}

.team-section {
  margin-top: 4rem;
}

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

.team-member {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--glass-highlight);
}

.team-member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--color-blue);
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.team-member-role {
  font-size: 0.875rem;
  color: var(--color-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member-bio {
  font-size: 0.875rem;
  color: var(--color-gray-300);
  line-height: 1.6;
}

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

  .about-story {
    flex-direction: row;
  }

  .about-image-container {
    flex: 1;
  }

  .about-content {
    flex: 2;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .additional-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Additional services styles */
.additional-services {
  margin-top: 4rem;
}

.section-subtitle {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-blue);
}

.additional-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.additional-service {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  transition: all 0.3s ease;
}

.additional-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--glass-highlight);
}

.additional-service h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.additional-service p {
  font-size: 0.875rem;
  color: var(--color-gray-300);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.additional-service-price {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-blue);
}

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

/* Contact page styles */
.contact-simple {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.contact-simple::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}

.contact-simple::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}

/* Contact info cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: contactMethodsIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.contact-info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--glass-highlight);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: -1;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.contact-info-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.3;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  padding: 0.5rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  animation: iconGlow 3s infinite alternate;
}

@keyframes iconGlow {
  0% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  }
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-white);
  opacity: 0.9;
}

.contact-info-content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.contact-info-content p,
.contact-info-content a {
  font-size: 0.875rem;
  color: var(--color-gray-300);
  transition: var(--transition-fast);
}

.contact-info-content a:hover {
  color: var(--color-white);
}

/* Timezone selector */
.timezone-selector {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timezone-dropdown {
  padding: 0.5rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 0.75rem;
  width: 100%;
  max-width: 250px;
  transition: all 0.2s ease;
}

.timezone-dropdown:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.timezone-dropdown option {
  background-color: var(--color-dark-200);
  color: var(--color-white);
}

#converted-time {
  font-size: 0.8rem;
  color: var(--color-gray-300);
  margin-top: 0.25rem;
  font-style: italic;
}

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.process-step-number {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  animation: numberGlow 3s infinite alternate;
}

@keyframes numberGlow {
  0% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
  }
}

.process-step-content p {
  font-size: 0.875rem;
  color: var(--color-gray-300);
}

.start-now-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  transition: var(--transition-fast);
  position: relative;
}

.start-now-button::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.5;
}

.start-now-button:hover {
  color: var(--color-white);
}

.start-now-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.start-now-button:hover .arrow-icon {
  transform: translateX(5px);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: contactMethodsIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes contactMethodsIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  transition: var(--transition-medium);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--glass-highlight);
}

.contact-method:hover::before {
  opacity: 1;
}

.contact-method-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  padding: 0.5rem;
  transition: var(--transition-fast);
}

.contact-method:hover .contact-method-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-method-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-white);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.contact-method:hover .contact-method-icon svg {
  opacity: 1;
}

.contact-method-info {
  flex: 1;
}

.contact-method-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.contact-method:hover .contact-method-info h3 {
  transform: translateY(-1px);
}

.contact-method-info p {
  font-size: 0.75rem;
  color: var(--color-gray-300);
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.contact-link {
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  display: inline-block;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.5;
}

.contact-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-link.primary-button {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  color: var(--color-black);
  transition: var(--transition-fast);
}

.contact-link.primary-button::after {
  display: none;
}

.contact-link.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-form-simple {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: contactFormIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes contactFormIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: -1;
}

.contact-form-simple h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  position: relative;
  display: inline-block;
}

.contact-form-simple h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.3;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--color-gray-200);
  transition: var(--transition-fast);
}

.form-group:focus-within label {
  color: var(--color-white);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  color: var(--color-white);
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--glass-highlight);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-300);
  opacity: 0.7;
}

.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.1;
}

.form-group:focus-within::after {
  transform: scaleX(1);
  transform-origin: left;
}

.form-submit {
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  transition: var(--transition-slow);
  z-index: 1;
  pointer-events: none;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit button {
  width: auto;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-status.success {
  background-color: rgba(39, 174, 96, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.2);
  opacity: 1;
}

.form-status.error {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.2);
  opacity: 1;
}

@media (min-width: 768px) {
  .contact-info-cards {
    flex-direction: row;
  }

  .contact-info-card {
    flex: 1;
  }

  .contact-methods {
    flex-direction: row;
  }

  .contact-method {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }
}

/* Featured Gallery Section */
.featured-gallery-section {
  background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
  padding: 0;
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.gallery-header {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.gallery-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.gallery-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #007bff 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-subtitle {
  font-size: 1.4rem;
  color: #007bff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Work Gallery Styles - Organized Collage */
.featured-work-section {
  margin: 0;
  padding: 2rem 1rem;
  width: 100%;
  background: #000;
}

.thumbnail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  min-height: 80vh;
  background: #000;
  overflow-x: hidden;
  justify-content: center;
  align-items: flex-start;
}

.thumbnail-item {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

/* More organized sizes for better collage effect */
.thumbnail-item:nth-child(12n+1) {
  width: 200px;
  height: 130px;
}

.thumbnail-item:nth-child(12n+2) {
  width: 180px;
  height: 120px;
}

.thumbnail-item:nth-child(12n+3) {
  width: 220px;
  height: 140px;
}

.thumbnail-item:nth-child(12n+4) {
  width: 160px;
  height: 100px;
}

.thumbnail-item:nth-child(12n+5) {
  width: 240px;
  height: 150px;
}

.thumbnail-item:nth-child(12n+6) {
  width: 190px;
  height: 125px;
}

.thumbnail-item:nth-child(12n+7) {
  width: 170px;
  height: 110px;
}

.thumbnail-item:nth-child(12n+8) {
  width: 210px;
  height: 135px;
}

.thumbnail-item:nth-child(12n+9) {
  width: 185px;
  height: 115px;
}

.thumbnail-item:nth-child(12n+10) {
  width: 230px;
  height: 145px;
}

.thumbnail-item:nth-child(12n+11) {
  width: 175px;
  height: 105px;
}

.thumbnail-item:nth-child(12n+12) {
  width: 195px;
  height: 125px;
}

.thumbnail-item:hover {
  transform: scale(1.08);
  z-index: 10;
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
  border-color: rgba(0, 123, 255, 0.6);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

.thumbnail-item:hover img {
  filter: brightness(1.1);
}

/* Gallery stats overlay */
.thumbnail-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(0, 123, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thumbnail-item:hover::after {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 2.5rem;
  }

  .gallery-subtitle {
    font-size: 1.2rem;
  }

  .gallery-description {
    font-size: 1rem;
  }

  .thumbnail-grid {
    max-width: 100%;
    padding: 0 1rem;
  }

  .thumbnail-item:nth-child(n) {
    width: 150px !important;
    height: 100px !important;
  }
}

/* Featured Captures Carousel - REMOVED - Replaced by Image Grid & Lightbox */
/* Styles for .featured-captures-section, .captures-carousel-wrapper, .captures-carousel, .capture-slide, .carousel-control were here */

/* Featured Captures - Image Grid & Lightbox */
.featured-captures-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.captures-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; /* Increased gap for better spacing */
  max-width: 1000px; /* Adjust as needed */
  margin: 2rem auto;
}

.grid-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--border-radius-lg); /* Softer radius */
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4 / 3; /* Maintain aspect ratio for thumbnails */
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.grid-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,123,255,0.3);
}

.grid-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Slightly darker overlay by default */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1; /* Visible by default */
  transition: background-color 0.3s ease, opacity 0.3s ease;
  pointer-events: none; /* Allow click on grid-item */
}

.grid-item:hover .grid-item-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Darken overlay on hover */
  opacity: 1;
}

.grid-item .view-icon {
  font-size: 2rem; /* Adjusted size */
  color: rgba(255, 255, 255, 0.7); /* Slightly transparent by default */
  transform: scale(1);
  transition: transform 0.3s ease, color 0.3s ease;
}

.grid-item:hover .view-icon {
  transform: scale(1.2);
  color: rgba(255, 255, 255, 1); /* Fully opaque on hover */
}

/* Lightbox Modal */
.lightbox-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  animation: lightboxFadeIn 0.5s ease-out;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 85%;
  max-height: 80vh; /* Adjusted for better vertical centering */
  border-radius: var(--border-radius-md);
  animation: lightboxZoomIn 0.5s ease-out;
}

@keyframes lightboxZoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
  margin: 15px auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -30px; /* Half of icon height approx */
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

.lightbox-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(0,0,0,0.6);
}

/* Featured Episodes Section */
.featured-episodes-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px; /* Adjust as needed */
  margin: 2rem auto;
}

.episode-item {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.episode-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,123,255,0.3);
  border-color: var(--glass-highlight);
}

.video-placeholder {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.episode-item:hover .video-placeholder img {
  transform: scale(1.1);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  pointer-events: none; /* Allows clicks to pass through to video-placeholder if needed */
}

.episode-item:hover .play-button-overlay {
  background-color: rgba(0, 123, 255, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.episode-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.episode-description {
  font-size: 0.8rem;
  color: var(--color-gray-300);
  line-height: 1.5;
}

/* Animations for new sections (can be tied to existing Intersection Observer) */
.featured-captures-section .animate-on-scroll,
.featured-episodes-section .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.featured-captures-section .animate-on-scroll.animate,
.featured-episodes-section .animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for grid items */
.episodes-grid .episode-item.animate-on-scroll {
  /* Animation delay will be set by JS or can be done with :nth-child if order is fixed */
  animation-delay: calc(var(--animation-order, 0) * 0.1s); /* Apply staggered delay */
}

@media (max-width: 768px) {
  .episodes-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }
  .carousel-control {
    padding: 0.5rem 0.75rem;
    font-size: 1.2rem;
  }
  .capture-slide img {
    max-height: 350px;
  }
}

/* New CTA Style based on reference image */
.new-cta-style {
  background-color: #1C1C1E; /* Dark background, similar to reference */
  border-radius: 20px;
  padding: 3.5rem 2rem; /* Adjusted padding */
  margin: 4rem auto;
  max-width: 800px; /* Max width for a single column focused look */
  box-shadow: 0 10px 40px rgba(0,0,0,0.2); /* Softer, deeper shadow */
  border-top: none;
  border-bottom: none;
  overflow: hidden; /* Keep overflow hidden for rounded corners */
}

.new-cta-style::before, .new-cta-style::after { /* Remove old pseudo-elements */
    display: none;
}

.new-cta-style .cta-container-single-col {
  display: flex; /* Still use flex for easy centering of the content block */
  justify-content: center; /* Center the content block */
  align-items: center; /* Center the content block */
  text-align: center; /* Center text within the content block */
}

.new-cta-style .cta-content-left { /* This will now be the main content block */
  max-width: 600px; /* Control the width of the text content */
  color: var(--color-gray-100); /* Light text color for dark background */
}

.new-cta-style .cta-label {
  display: inline-block;
  background-color: #FFD166; /* Brighter, distinct yellow for label */
  color: #272727; /* Dark text for label */
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700; /* Bolder label text */
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.new-cta-style h2 {
  font-size: 2.5rem; /* Adjusted heading size */
  font-weight: 700;
  color: var(--color-white); /* Bright white heading */
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.new-cta-style .gradient-text {
  background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FFD166); /* Refreshed, vibrant gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.new-cta-style p {
  font-size: 1rem;
  color: var(--color-gray-200); /* Lighter paragraph text */
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.new-cta-style .cta-buttons-group {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  justify-content: center; /* Center buttons */
  gap: 1rem;
  margin-bottom: 2rem;
}

.new-cta-style .cta-button-schedule,
.new-cta-style .cta-button-portfolio {
  padding: 0.8rem 1.75rem;
  border-radius: 10px; /* Slightly more rounded */
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  border: none; /* Remove border for a cleaner look */
}

.new-cta-style .cta-button-schedule {
  background-color: #FFD166; /* Main CTA yellow */
  color: #1C1C1E; /* Dark text for yellow button */
  box-shadow: 0 2px 8px rgba(255, 209, 102, 0.3);
}

.new-cta-style .cta-button-schedule:hover {
  transform: translateY(-2px);
  background-color: #FFC340; /* Slightly darker yellow on hover */
  box-shadow: 0 4px 12px rgba(255, 209, 102, 0.5);
}

.new-cta-style .cta-button-portfolio {
  background-color: rgba(255, 255, 255, 0.1); /* Subtle glass button */
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.15);
}

.new-cta-style .cta-button-portfolio:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.new-cta-style .cta-icon {
  width: 1em; /* Relative to font size */
  height: 1em;
}

.new-cta-style .cta-join-brands {
  font-size: 0.8rem;
  color: var(--color-gray-300); /* Muted text */
  opacity: 0.9;
}

.new-cta-style .lightning-icon {
  color: #FFD166; /* Yellow for the icon */
  font-size: 1.1em; /* Slightly larger icon */
  margin-right: 0.25rem;
  display: inline-block;
  transform: translateY(1px);
}

.new-cta-style .cta-image-right { /* Remove as image is gone */
  display: none;
}

/* Responsive adjustments for the new CTA */
@media (max-width: 992px) {
  .new-cta-style h2 {
    font-size: 2.2rem; /* Adjust for medium screens */
  }
  .new-cta-style .cta-content-left {
    /* text-align is already center from .cta-container-single-col */
  }
}

@media (max-width: 576px) {
  .new-cta-style {
    padding: 2.5rem 1.5rem;
    margin: 3rem auto;
  }
  .new-cta-style h2 {
    font-size: 1.8rem; /* Adjust for small screens */
  }
  .new-cta-style p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .new-cta-style .cta-buttons-group {
    flex-direction: column;
    align-items: stretch; /* Make buttons full width */
  }
   .new-cta-style .cta-button-schedule,
   .new-cta-style .cta-button-portfolio {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem; /* Adjust padding for stacked buttons */
  }
}
