/* Fortex Clone - CSS Variables */
/* NOTE: Satoshi font is a premium font. 
   If you have Satoshi font files, add them via @font-face.
   Otherwise, Inter (already loaded) will be used as fallback. */
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2'),
       url('fonts/Satoshi-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Medium.woff2') format('woff2'),
       url('fonts/Satoshi-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Bold.woff2') format('woff2'),
       url('fonts/Satoshi-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #ae0079;
  --primary-color-hover: #c7008f;
  --bg-color: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #141414;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.64);
  --text-tertiary: rgba(255, 255, 255, 0.4);
  --border-color: rgba(255, 255, 255, 0.12);
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Satoshi', 'Inter', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-2xl: 8rem;
  
  /* Layout */
  --container-max-width: 1280px;
  --section-padding: 8rem 2rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: auto; /* Let Lenis handle smooth scrolling */
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom Cursor - Only on desktop */
@media (min-width: 769px) and (pointer: fine) {
  body {
    cursor: none;
  }
  
  .custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    opacity: 1;
    left: 0;
    top: 0;
    will-change: transform;
    transform-origin: center center;
    /* GSAP handles positioning with x, y, xPercent, yPercent */
  }

  .custom-cursor.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary-color);
    background: rgba(174, 0, 121, 0.1);
    mix-blend-mode: normal;
  }
}

/* Mobile - use default cursor */
@media (max-width: 768px), (pointer: coarse) {
  body {
    cursor: auto;
  }
  
  .custom-cursor {
    display: none !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
}

.display-font {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-color);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(174, 0, 121, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

button:hover::before {
  width: 300px;
  height: 300px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  will-change: transform;
  border-radius: 0;
}

/* Premium Image Loading Effect */
img {
  opacity: 1;
  transition: opacity 0.6s ease;
}

img.loaded {
  opacity: 1;
}

/* Lazy load images */
img[data-src] {
  opacity: 0;
  transition: opacity 0.6s ease;
}

img[data-src].loaded {
  opacity: 1;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transform: translateY(0);
}

.navbar.scrolled {
  background-color: transparent;
  box-shadow: none;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-link-badge {
  font-size: 0.7em;
  color: var(--primary-color);
  vertical-align: super;
  margin-left: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-shrink: 0;
}

.nav-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  font-size: 12px;
  color: var(--text-secondary);
}

.contact-phone,
.contact-email {
  white-space: nowrap;
}

.nav-social {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  font-size: 12px;
  color: var(--text-secondary);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 40px;
  height: 30px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle::before {
  display: none !important;
}

.nav-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}

.nav-toggle:hover::before {
  display: none !important;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  width: 40px;
}

.nav-toggle span:nth-child(2) {
  width: 30px;
}

.nav-toggle span:nth-child(3) {
  width: 20px;
}

.nav-toggle:hover span {
  opacity: 0.7;
}

/* Active state - X animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  width: 30px;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 30px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FULLSCREEN MENU OVERLAY - Matching Fortex Design
   ═══════════════════════════════════════════════════════════════════════════ */

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0a0a0a;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.fullscreen-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.fullscreen-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.fullscreen-logo sup {
  font-size: 0.6em;
  vertical-align: super;
}

.fullscreen-close {
  background: none !important;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 2px solid #ffffff;
  transition: opacity 0.3s ease;
  overflow: visible;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.fullscreen-close::before {
  display: none !important;
  content: none !important;
}

.fullscreen-close:hover {
  opacity: 0.7;
  background: none !important;
}

.fullscreen-close:hover::before {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.fullscreen-close:focus {
  outline: none !important;
  box-shadow: none !important;
}

.fullscreen-menu-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem 3rem;
  align-items: flex-start;
}

.fullscreen-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fullscreen-nav-link {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.2;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.fullscreen-nav-link:hover {
  opacity: 0.6;
}

.nav-badge {
  font-size: 0.35em;
  font-weight: 400;
  color: var(--primary-color);
  vertical-align: super;
  letter-spacing: 0.02em;
}

.nav-badge.hiring {
  color: var(--primary-color);
}

.fullscreen-right {
  max-width: 380px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 1rem;
}

.fullscreen-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.fullscreen-tagline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.fullscreen-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.fullscreen-phone {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.fullscreen-email {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.fullscreen-email:hover {
  opacity: 0.7;
}

.fullscreen-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fullscreen-social {
  display: flex;
  gap: 2rem;
}

.fullscreen-social-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.3s ease;
}

.fullscreen-social-link:hover {
  opacity: 0.7;
}

.fullscreen-social-link .arrow {
  font-size: 0.75em;
}

.fullscreen-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fullscreen-legal-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.fullscreen-legal-link:hover {
  color: #ffffff;
}

.legal-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* Fullscreen menu animations */
.fullscreen-menu .fullscreen-nav-link {
  opacity: 0;
  transform: translateY(30px);
}

.fullscreen-menu.active .fullscreen-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-menu.active .fullscreen-nav-link:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .fullscreen-nav-link:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-menu.active .fullscreen-nav-link:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-menu.active .fullscreen-nav-link:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-menu.active .fullscreen-nav-link:nth-child(5) { transition-delay: 0.3s; }
.fullscreen-menu.active .fullscreen-nav-link:nth-child(6) { transition-delay: 0.35s; }

.fullscreen-menu .fullscreen-nav-link {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Responsive adjustments for fullscreen menu */
@media (max-width: 768px) {
  .fullscreen-menu-header {
    padding: 1rem 1.5rem;
  }
  
  .fullscreen-menu-content {
    flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
  }
  
  .fullscreen-right {
    text-align: left;
    max-width: 100%;
    align-items: flex-start;
  }
  
  .fullscreen-contact {
    align-items: flex-start;
  }
  
  .fullscreen-menu-footer {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: flex-start;
  }
  
  .fullscreen-nav-link {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 120px 2rem 4rem;
  padding-bottom: 6rem;
  /* Ensure background covers full width, no split layout */
  background: #0a0a0a;
}

/* === Hero Background === */
.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  z-index: 0;
  transition: transform 0.1s ease-out;
}

.hero-bg-slide-1 {
  cursor: none;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  /* Ensure background covers full width as single image, no split */
  display: block;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.3);
  transform: scale(1.1);
  position: absolute;
  top: 0;
  left: 0;
}

.hero-bg-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.3);
  transform: scale(1.1);
}

.hero-bg-img-fallback {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.3);
  transform: scale(1.1);
  z-index: -1;
}

/* Show fallback if video fails to load */
.hero-background-image:has(video:not([src])) .hero-bg-img-fallback,
.hero-background-image video[poster] + .hero-bg-img-fallback {
  display: block;
}

.hero-light-trails {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 40%, rgba(174, 0, 121, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero Caption Overlay (first slide only) */
.hero-caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
  opacity: 1;
  will-change: opacity, transform;
  width: 100%;
}

.hero-caption-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-caption-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-color);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-container {
  max-width: var(--container-max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-xl);
}

.hero-intro {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-color);
  max-width: 600px;
  font-weight: 400;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--font-heading);
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-headline .headline-line1,
.hero-headline .headline-line2,
.hero-headline .headline-line3 {
  display: block;
}

.hero-headline .headline-line2 {
  white-space: nowrap; /* Keep "WE MAKE IT" on one line */
}

.hero-headline .headline-line3 {
  white-space: nowrap; /* Keep flip-words and "//." together on one line */
}

.hero-headline .highlight-real {
  color: var(--primary-color);
}

/* Flip Words Animation Styles */
.flip-words-container {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  white-space: nowrap;
  overflow: visible;
  text-align: left;
}

.flip-letter {
  display: inline-block;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
  transform-origin: 50% 50%;
}

/* Ensure flip-words stays inline with heading text */
.hero-headline .flip-words-container {
  color: var(--primary-color);
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

/* Placeholder styling before animation starts */
.flip-word-placeholder {
  color: var(--primary-color);
  display: inline-block;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
}

.scroll-hint-text {
  font-size: 0.875rem;
  color: var(--text-color);
  font-weight: 400;
}

.scroll-hint-line {
  width: 100px;
  height: 1px;
  background-color: var(--primary-color);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: var(--spacing-xl);
}

.hero-services-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: flex-end;
}

.service-link-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  color: var(--text-color);
  padding: var(--spacing-xs) 0;
  opacity: 1 !important;
  visibility: visible !important;
  justify-content: flex-end; /* Align items to the right */
}

.service-link-item:hover {
  transform: translateX(-5px);
}

.service-link-item:hover .service-connector {
  width: 60px;
  opacity: 1;
}

.service-link-item:hover .service-number,
.service-link-item:hover .service-name {
  color: var(--primary-color);
}

.service-number {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--text-color);
  font-weight: 400;
  font-family: var(--font-body);
  white-space: nowrap;
  width: 50px; /* Fixed width for alignment */
  text-align: right;
  flex-shrink: 0;
}

.service-connector {
  width: 40px;
  height: 1px;
  background-color: var(--primary-color);
  transition: all var(--transition-base);
  opacity: 0.8;
  flex-shrink: 0;
}

.service-name {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--text-color);
  font-weight: 400;
  font-family: var(--font-body);
  white-space: nowrap;
}

.hero-footer-right {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-sm);
}

.hero-copyright {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
  transform: rotate(180deg);
}

/* Intro Section */
.intro-section {
  padding: var(--section-padding);
  padding-bottom: 0;
  background-color: var(--bg-color);
  position: relative;
  z-index: 10;
  margin-top: -100vh; /* Pull up to overlap hero */
  transform: translateY(100vh); /* Start below viewport */
  will-change: transform;
}

.intro-section-spacer {
  height: 100vh; /* Compensate for negative margin-top */
  width: 100%;
  display: block;
  margin-top: -8rem; /* Reduce gap to carousel */
}

.intro-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.intro-tagline {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.intro-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.service-preview {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.service-number {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--font-display);
}

.service-name {
  font-size: 18px;
  color: var(--text-secondary);
}

.intro-main-tagline {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.tagline-line1,
.tagline-line2 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.intro-copyright {
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   IMMERSIVE 3D CAROUSEL SECTION - Exceptional Design
   ═══════════════════════════════════════════════════════════════════════════ */

.carousel-section {
  padding: 6rem 0 8rem;
  background: linear-gradient(180deg, 
    var(--bg-color) 0%, 
    #0a0a12 30%,
    #080810 70%,
    var(--bg-color) 100%
  );
  position: relative;
  z-index: 12;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  margin-top: -6rem;
}

/* Atmospheric Background Effects */
.carousel-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.carousel-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: glowPulse 8s ease-in-out infinite;
}

.carousel-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ae0079 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.carousel-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #c7008f 0%, transparent 70%);
  bottom: 10%;
  right: -5%;
  animation-delay: -4s;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

.carousel-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Section Header */
.carousel-header {
  width: 100%;
  max-width: 1400px;
  padding: 0 3rem;
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

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

.carousel-section-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ae0079;
  background: rgba(174, 0, 121, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(174, 0, 121, 0.2);
  margin-bottom: 1.5rem;
}

.carousel-main-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  margin: 0;
}

.carousel-main-title .title-line {
  display: block;
}

.carousel-main-title .title-line:first-child {
  color: var(--text-primary);
  background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-main-title .title-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: transparent;
}

.carousel-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.carousel-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

.carousel-nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-nav-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-nav-btn:hover {
  background: rgba(174, 0, 121, 0.2);
  border-color: rgba(174, 0, 121, 0.4);
  transform: scale(1.05);
}

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

.carousel-progress {
  width: 100px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, #ae0079, #c7008f);
  border-radius: 100px;
  transition: width 0.3s ease;
}

/* Main Carousel Container */
.carousel-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Individual Carousel Cards */
.carousel-card {
  flex-shrink: 0;
  width: 340px;
  height: 460px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transform: scale(0.92);
  opacity: 0.6;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 25px 80px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.carousel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 2;
  transition: opacity 0.4s ease;
}

.carousel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
}

.carousel-card.active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 
    0 35px 100px -20px rgba(174, 0, 121, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 60px -10px rgba(174, 0, 121, 0.2);
}

.carousel-card:hover {
  transform: scale(1.02);
  opacity: 1;
}

.carousel-card.active:hover {
  transform: scale(1.04);
}

/* Card Image */
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card:hover .carousel-image {
  transform: scale(1.08);
}

/* Card Content Overlay */
.carousel-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 5;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card.active .carousel-card-content,
.carousel-card:hover .carousel-card-content {
  transform: translateY(0);
  opacity: 1;
}

.card-category {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ae0079;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-category::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ae0079;
  animation: categoryPulse 2s ease-in-out infinite;
}

@keyframes categoryPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.card-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
}

.card-year {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* View Button */
.card-view-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transform: scale(0) rotate(-45deg);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-view-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  transition: transform 0.3s ease;
}

.carousel-card:hover .card-view-btn {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.card-view-btn:hover {
  background: rgba(174, 0, 121, 0.8);
  transform: scale(1.1) rotate(0deg) !important;
}

.card-view-btn:hover svg {
  transform: translate(2px, -2px);
}

/* Floating Indicator */
.carousel-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  animation: indicatorFloat 3s ease-in-out infinite;
}

@keyframes indicatorFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.indicator-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(174, 0, 121, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: indicatorArrow 1.5s ease-in-out infinite;
}

.indicator-icon svg {
  width: 16px;
  height: 16px;
  stroke: #ae0079;
}

@keyframes indicatorArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.indicator-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* Full Image Overlay */
.carousel-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.overlay-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 90%;
  max-height: 90%;
}

.carousel-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.carousel-close svg {
  width: 24px;
  height: 24px;
}

.carousel-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.carousel-full-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-overlay.active .carousel-full-image {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.overlay-info {
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.carousel-overlay.active .overlay-info {
  transform: translateY(0);
  opacity: 1;
}

.overlay-info .overlay-category {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ae0079;
  display: block;
  margin-bottom: 0.5rem;
}

.overlay-info .overlay-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .carousel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 2rem;
  }
  
  .carousel-header-right {
    align-items: flex-start;
    width: 100%;
  }
  
  .carousel-subtitle {
    text-align: left;
  }
  
  .carousel-card {
    width: 300px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .carousel-section {
    padding: 4rem 0 6rem;
  }
  
  .carousel-header {
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .carousel-main-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  
  .carousel-wrapper {
    height: 420px;
  }
  
  .carousel-card {
    width: 260px;
    height: 350px;
  }
  
  .card-title {
    font-size: 1.4rem;
  }
  
  .carousel-indicator {
    padding: 0.75rem 1.25rem;
  }
  
  .carousel-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-progress {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .carousel-card {
    width: 240px;
    height: 320px;
  }
  
  .carousel-card-content {
    padding: 1.5rem;
  }
  
  .carousel-indicator {
    display: none;
  }
}

/* Clients Section */
/* Clients Section - Matching Fortex Design */
.clients-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 15; /* Higher than intro section so it appears on top */
}

.clients-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.clients-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-2xl);
  position: relative;
}

.section-header-left {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

/* Remove any inherited padding from parent containers */
.clients-header,
.why-us-header,
.services-section-header,
.process-section-header,
.insights-header,
.faq-section-header {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* All section headers at exact same position from left edge of viewport */
.clients-container,
.why-us-container,
.services-section-header,
.process-section-header,
.insights-header,
.faq-section-header {
  padding-left: 5vw !important;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .clients-container,
  .why-us-container,
  .services-section-header,
  .process-section-header,
  .insights-header,
  .faq-section-header {
    padding-left: 1.5rem !important;
  }
}

.section-accent-bar {
  width: 4px;
  height: 60px;
  background-color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.section-header-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.section-number {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1;
  display: block;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-body);
  text-transform: none;
  line-height: 1.2;
  display: block;
  margin: 0;
}

.section-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-xs);
}

.clients-copyright {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1;
}

.clients-brand {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-card {
  background-color: var(--bg-secondary);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  min-height: 300px;
  position: relative;
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.client-card:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.client-logo-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.client-logo-svg {
  width: 100%;
  height: 100%;
  color: var(--text-color);
}

.client-logo-img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: brightness(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-card:hover .client-logo-img {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.client-name {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font-body);
  text-align: center;
}

.client-identifier {
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE US SECTION - Matching Fortex Design Screenshots
   ═══════════════════════════════════════════════════════════════════════════ */

.why-us-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.why-us-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.why-us-header {
  margin-bottom: var(--spacing-lg);
}

.why-us-content {
  margin-top: var(--spacing-lg);
  text-align: center;
}

/* Main Title - Centered with highlight */
.why-us-main-title {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 400;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--spacing-lg);
  color: var(--text-color);
  text-align: center;
  position: relative;
}

.why-us-main-title .title-highlight {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.why-us-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto var(--spacing-2xl);
  max-width: 700px;
  text-align: center;
}

/* Two-Column Blocks Grid */
.why-us-blocks {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-lg);
  align-items: stretch;
  margin-bottom: 0;
}

.why-us-block {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
}

/* Experience Block - Left Side */
.experience-block {
  background: linear-gradient(145deg, #1a1a1f 0%, #0f0f12 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.block-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-family: var(--font-heading);
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  text-align: left;
}

.block-description {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--spacing-xl);
  text-align: left;
}

.block-description strong {
  font-weight: 600;
  color: var(--text-color);
}

/* Project Thumbnails - Horizontal Row */
.project-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
  margin-top: auto;
}

.thumbnail-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0c;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0.9;
}

.thumbnail-item:hover .thumbnail-image {
  transform: scale(1.1);
  opacity: 1;
}

.thumbnail-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.thumb-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Different colored dots for each thumbnail - magenta theme */
.thumbnail-item:nth-child(1) .thumb-icon {
  background: linear-gradient(135deg, #ae0079 0%, #c7008f 100%);
}

.thumbnail-item:nth-child(2) .thumb-icon {
  background: linear-gradient(135deg, #c7008f 0%, #e600a6 100%);
}

.thumbnail-item:nth-child(3) .thumb-icon {
  background: linear-gradient(135deg, #9e006d 0%, #ae0079 100%);
}

.thumbnail-item:nth-child(4) .thumb-icon {
  background: linear-gradient(135deg, #d100a0 0%, #f000b8 100%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLLING TESTIMONIALS ANIMATION
   ═══════════════════════════════════════════════════════════════════════════ */

.testimonials-container {
  margin-top: 1.5rem;
  max-height: 380px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.testimonials-columns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: scrollUp 15s linear infinite;
}

.testimonials-column:nth-child(2) {
  animation-duration: 19s;
  animation-direction: reverse;
}

.testimonials-column:nth-child(3) {
  animation-duration: 17s;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  max-width: 220px;
  box-shadow: 0 4px 20px rgba(174, 0, 121, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(174, 0, 121, 0.2);
}

.testimonial-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(174, 0, 121, 0.3);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

/* Hide third column on smaller screens */
.testimonials-column-third {
  display: none;
}

@media (min-width: 900px) {
  .testimonials-column-third {
    display: flex;
  }
}

@media (max-width: 600px) {
  .testimonials-columns {
    gap: 0.75rem;
  }
  
  .testimonial-card {
    max-width: 180px;
    padding: 1rem;
  }
  
  .testimonial-text {
    font-size: 0.75rem;
  }
}

/* Pause animation on hover */
.testimonials-container:hover .testimonials-column {
  animation-play-state: paused;
}

/* Satisfaction Block - Right Side */
.satisfaction-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.satisfaction-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.satisfaction-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.satisfaction-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(
    180deg, 
    transparent 0%, 
    transparent 30%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.satisfaction-label {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.satisfaction-value {
  font-size: clamp(4.5rem, 12vw, 7rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-color);
  line-height: 0.9;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.satisfaction-sublabel {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.satisfaction-rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars .star {
  color: #fbbf24;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.rating-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-color);
  margin-left: var(--spacing-xs);
}

.satisfaction-tagline {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
}

.satisfaction-tagline strong {
  color: var(--text-color);
  font-weight: 600;
}

/* Orange Corner Accent */
.satisfaction-accent {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  width: clamp(40px, 5vw, 60px);
  height: clamp(40px, 5vw, 60px);
  border-right: 3px solid var(--primary-color);
  border-top: 3px solid var(--primary-color);
}

/* ═══════════════════════════════════════════════════════════════════════════
   THREE PANELS SECTION - Matching Fortex Design Screenshots
   ═══════════════════════════════════════════════════════════════════════════ */

.why-us-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: var(--spacing-2xl);
  width: 100%;
  min-height: 85vh;
  margin-left: calc(-1 * var(--spacing-xl));
  margin-right: calc(-1 * var(--spacing-xl));
  width: calc(100% + var(--spacing-xl) * 2);
}

.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 85vh;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING PANEL - Left Panel with Image Background
   ═══════════════════════════════════════════════════════════════════════════ */

.pricing-panel {
  background-color: #1a1a1f;
  position: relative;
}

.pricing-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 85vh;
  display: flex;
}

.pricing-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85);
}

.pricing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.5) 0%, 
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

/* FORTEX Logo at top */
.pricing-overlay::before {
  content: 'FORTEX®';
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.05em;
}

.pricing-note-top {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: var(--spacing-lg);
}

.pricing-note-top::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  display: inline-block;
  flex-shrink: 0;
}

.pricing-content-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  width: 100%;
}

.pricing-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  font-family: var(--font-heading);
  line-height: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-word-flexible {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 0.15em 0.4em;
  font-weight: 400;
}

.pricing-word-pricing {
  display: block;
  color: var(--text-color);
  margin-top: 0.1em;
  font-weight: 400;
}

.pricing-subheadline {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}

.pricing-note {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.pricing-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 1rem 2rem;
  background-color: var(--text-color);
  color: var(--bg-color);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 200px;
}

.pricing-cta-button:hover {
  background-color: var(--primary-color-hover);
  color: var(--text-color);
  transform: translateY(-2px);
}

.cta-arrow {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.pricing-cta-button:hover .cta-arrow {
  transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES PANEL - Center Panel with Two Feature Items
   ═══════════════════════════════════════════════════════════════════════════ */

.features-panel {
  background-color: #0f0f12;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  min-height: 85vh;
  height: 100%;
  position: relative;
}

.feature-item {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background-color: transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.feature-icon {
  width: clamp(50px, 6vw, 70px);
  height: clamp(50px, 6vw, 70px);
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.feature-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-family: var(--font-heading);
  color: var(--text-color);
  margin-bottom: var(--spacing-sm);
}

.feature-description {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

/* Corner Bracket Accents */
.feature-accent {
  position: absolute;
  width: clamp(20px, 3vw, 30px);
  height: clamp(20px, 3vw, 30px);
  border: 2px solid var(--primary-color);
  opacity: 1;
}

.feature-accent-top-left {
  top: clamp(1rem, 2vw, 1.5rem);
  left: clamp(1rem, 2vw, 1.5rem);
  border-right: none;
  border-bottom: none;
}

.feature-accent-bottom-right {
  bottom: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  border-left: none;
  border-top: none;
}

.feature-item:nth-child(2) {
  margin-top: 0;
}

/* Remove the horizontal divider */
.features-panel::before {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUPPORT PANEL - Right Panel with Chat Interface
   ═══════════════════════════════════════════════════════════════════════════ */

.support-panel {
  background-color: #0f0f12;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  min-height: 85vh;
  height: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Red Top Accent Bar */
.support-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-color);
}

.support-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.support-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  font-family: var(--font-heading);
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}

/* Hamburger Menu Icon */
.support-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 30px;
  justify-content: center;
  align-items: flex-end;
}

.support-menu-btn span {
  height: 2px;
  background: #ffffff;
  display: block;
  transition: width 0.2s ease;
}

.support-menu-btn span:nth-child(1) { width: 20px; }
.support-menu-btn span:nth-child(2) { width: 16px; }
.support-menu-btn span:nth-child(3) { width: 20px; }

.support-menu-btn:hover span {
  width: 20px;
}

.support-tagline {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
  max-width: 100%;
}

.support-tagline strong,
.support-tagline em {
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHAT WINDOW - Messaging Interface
   ═══════════════════════════════════════════════════════════════════════════ */

.chat-window {
  display: flex;
  flex-direction: column;
  background-color: #1a1a1f;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex: 1;
  width: 100%;
  min-height: 350px;
}


/* Chat Conversation Area */
.chat-conversation {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
  overflow-y: auto;
  background: #1a1a1f;
}

.chat-message {
  display: flex;
  width: 100%;
  align-items: flex-end;
}

.chat-message-user {
  justify-content: flex-start;
}

.chat-message-agent {
  justify-content: flex-end;
}

/* Chat Bubbles */
.chat-bubble {
  padding: 12px 16px;
  border-radius: 20px;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.5;
  word-wrap: break-word;
  position: relative;
  max-width: 85%;
}

.chat-message-user .chat-bubble {
  background-color: #ffffff;
  color: #1a1a1f;
  border-bottom-left-radius: 6px;
}

.chat-message-agent .chat-bubble {
  background: linear-gradient(135deg, #ae0079 0%, #c7008f 100%);
  color: #ffffff;
  border-bottom-right-radius: 6px;
}

/* Hide timestamps for cleaner look */
.chat-time {
  display: none;
}

/* Chat Input Area */
.chat-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #1a1a1f;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.chat-input {
  flex: 1;
  background: #2a2a30;
  border: none;
  border-radius: 24px;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 12px 18px;
  outline: none;
  transition: all 0.2s ease;
}

.chat-input:focus {
  background: #35353d;
  box-shadow: 0 0 0 2px rgba(174, 0, 121, 0.3);
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Chat Input Icons */
.chat-input-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-icon-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.chat-icon-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.chat-icon-btn svg {
  width: 18px;
  height: 18px;
}

.chat-send-btn {
  display: none;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  opacity: 0.7;
}

.chat-send-btn {
  background-color: var(--primary-color);
  color: var(--text-color);
  opacity: 1;
  font-size: 1rem;
  font-weight: 600;
}

.chat-icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.chat-send-btn:hover {
  background-color: var(--primary-color-hover);
  transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
}

.pricing-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.pricing-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
}

.pricing-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.pricing-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

.pricing-note {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: var(--spacing-lg);
}

.pricing-cta {
  display: inline-block;
  padding: 16px 32px;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: var(--spacing-xl);
  transition: background-color var(--transition-base);
}

.pricing-cta:hover {
  background-color: var(--primary-color-hover);
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.pricing-feature h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.pricing-feature p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-support {
  margin-top: var(--spacing-xl);
}

.pricing-support h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.pricing-support p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.support-chat {
  background-color: var(--bg-color);
  border-radius: 16px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.chat-message {
  margin-bottom: var(--spacing-md);
}

.chat-message:last-child {
  margin-bottom: 0;
}

.chat-reply {
  margin-left: var(--spacing-lg);
}

.chat-question,
.chat-answer {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
}

.chat-button {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 8px;
  font-weight: 600;
  margin-top: var(--spacing-md);
}

.pricing-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  margin-top: var(--spacing-xl);
}

/* ═══════════════════════════════════════════════════════════════════════════
   OUR WORKS - ZOOM PARALLAX SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.our-works-section {
  background-color: #111;
}

.our-works-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.our-works-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-family: var(--font-heading);
  color: var(--text-color);
  margin-bottom: 1rem;
}

.our-works-title .title-highlight {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.our-works-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.zoom-parallax-container {
  position: relative;
  height: 200vh;
  background: #111;
}

.zoom-parallax-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #111;
}

/* Black overlay that fades in as image dissolves */
.zoom-black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  opacity: 0;
  z-index: 200;
  pointer-events: none;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
}

.works-item {
  overflow: hidden;
  border-radius: 0;
  will-change: transform;
}

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

/* Center image - will zoom to fill screen */
.works-item.works-center {
  z-index: 100;
  transform-origin: center center;
}

/* Row 1: Left tall, Right wide */
.works-item-1 {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 400px;
}

.works-item-2 {
  grid-column: 2 / 4;
  grid-row: 1;
  height: 250px;
}

/* Row 2: Center (main zoom), Right */
.works-item-3 {
  grid-column: 2;
  grid-row: 2;
  height: 220px;
  z-index: 10;
}

.works-item-4 {
  grid-column: 3;
  grid-row: 2;
  height: 220px;
}

/* Row 3: Three images */
.works-item-5 {
  grid-column: 1;
  grid-row: 3;
  height: 200px;
}

.works-item-6 {
  grid-column: 2;
  grid-row: 3;
  height: 200px;
}

.works-item-7 {
  grid-column: 3;
  grid-row: 3;
  height: 150px;
  align-self: start;
}

/* Center image gets special treatment */
.works-center {
  transform-origin: center center;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .works-item-1 {
    grid-row: 1;
    height: 200px;
  }
  
  .works-item-2 {
    grid-column: 2;
    height: 200px;
  }
  
  .works-item-3 {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 250px;
  }
  
  .works-item-4 {
    grid-column: 1;
    grid-row: 3;
    height: 180px;
  }
  
  .works-item-5 {
    grid-column: 2;
    grid-row: 3;
    height: 180px;
  }
  
  .works-item-6,
  .works-item-7 {
    display: none;
  }
}

@media (max-width: 600px) {
  .zoom-parallax-container {
    height: 150vh;
  }
  
  .works-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .works-item {
    height: 180px !important;
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  
  .works-item-4,
  .works-item-5 {
    display: none;
  }
}

/* Services Section */
.services-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.services-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.services-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.services-main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.services-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
}

.services-grid {
  display: grid;
  gap: var(--spacing-2xl);
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-md);
  align-items: start;
}

.service-number {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary-color);
  line-height: 1;
}

.service-divider {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-tertiary);
}

.service-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  grid-column: 2;
}

.service-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  grid-column: 2;
}

.service-cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: var(--spacing-lg);
  grid-column: 2;
  transition: background-color var(--transition-base);
}

.service-cta:hover {
  background-color: var(--primary-color-hover);
}

.service-images {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.service-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROJECTS COUNTER SECTION - Compact Version
   ═══════════════════════════════════════════════════════════════════════════ */

.projects-counter-section {
  background-color: #0a0a0a;
  padding: 3rem 2rem 2rem;
}

.counter-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.counter-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.counter-number {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 400;
  font-family: var(--font-heading);
  line-height: 1;
  color: #ffffff;
}

.counter-plus {
  color: var(--primary-color);
  font-weight: 300;
}

.counter-value {
  color: #ffffff;
}

.counter-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
  font-family: var(--font-heading);
}

.counter-underline {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.counter-faded {
  color: rgba(255, 255, 255, 0.35);
}

.counter-white {
  color: #ffffff;
}

.counter-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #e85a3c;
  color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.counter-cta:hover {
  background-color: #d14a2c;
}

.cta-arrow-icon {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .projects-counter-section {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .counter-number {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  
  .counter-text {
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES SECTION - NEW INTERACTIVE MENU STYLE
   ═══════════════════════════════════════════════════════════════════════════ */

.services-section-new {
  padding: 4rem 2rem 6rem;
  background-color: #0a0a0a;
  min-height: 100vh;
}

.services-section-header {
  max-width: 100%;
  width: 100%;
  margin: 0 0 3rem 0;
}

.services-new-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

/* Left Side - Preview */
.services-left {
  position: sticky;
  top: 120px;
}

.services-preview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-preview-image {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0;
}

.services-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.services-preview-content {
  max-width: 320px;
}

.preview-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.preview-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
}

/* Right Side - Menu */
.services-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.services-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-menu-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-menu-item:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-number {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  min-width: 50px;
  transition: color 0.3s ease;
}

.menu-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-heading);
  line-height: 1.1;
  transition: color 0.3s ease;
}

/* Hover and Active States */
.service-menu-item:hover .menu-title,
.service-menu-item.active .menu-title {
  color: #ffffff;
}

.service-menu-item:hover .menu-number,
.service-menu-item.active .menu-number {
  color: var(--primary-color);
}

/* See Pricing Link */
.services-see-pricing {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  padding-top: 2rem;
}

.services-see-pricing:hover {
  opacity: 0.7;
}

.pricing-arrow {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 900px) {
  .services-new-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .services-left {
    position: relative;
    top: 0;
    order: 2;
  }
  
  .services-right {
    order: 1;
  }
  
  .services-preview-image,
  .services-preview-content {
    max-width: 100%;
  }
  
  .menu-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Process Section */
.process-section {
  padding: 80px 2rem 120px;
  background-color: #ffffff;
  color: #0a0a0a;
}

.process-section-header {
  margin-bottom: 60px;
}

/* Override colors for white background - keep same sizes as 001/002/003 */
.process-section-header .section-number {
  color: rgba(0, 0, 0, 0.5);
}

.process-section-header .section-title {
  color: rgba(0, 0, 0, 0.8);
}

.process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.process-left {
  position: sticky;
  top: 120px;
}

.process-main-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 24px;
  color: #0a0a0a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.process-description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
  max-width: 500px;
}

.process-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.process-cta:hover {
  opacity: 0.7;
}

.process-cta .cta-arrow {
  font-size: 18px;
}

.process-right {
  display: flex;
  flex-direction: column;
}

.process-step {
  position: relative;
  padding: 40px 0;
}

.step-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.step-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.step-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}

.step-info {
  flex: 1;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.55);
}

/* Process Section Mobile */
@media (max-width: 900px) {
  .process-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .process-left {
    position: relative;
    top: 0;
  }
  
  .process-main-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

@media (max-width: 768px) {
  .process-container {
    padding: 0 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUCCESS STORIES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.success-stories-section {
  padding: 2rem;
  background-color: #f5f5f5;
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

/* Base Card Styles */
.story-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  position: relative;
}

/* Card 1 - Title Card (White) */
.story-card-title {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
}

.story-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.story-brand {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 0.05em;
}

.story-corner-accent {
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.story-card-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.story-main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.1;
  font-family: var(--font-display);
}

.story-tagline {
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  margin-top: auto;
}

/* Card 2 - Image Card */
.story-card-image {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.story-person-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.story-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(232, 121, 102, 0.95) 0%, rgba(232, 121, 102, 0.85) 70%, transparent 100%);
  color: #fff;
}

.story-quote {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.story-divider {
  width: 40px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.story-author-simple {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.story-author-simple .author-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.story-author-simple .author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* Card 3 - Dark Stats Card */
.story-card-dark {
  background-color: #0a0a0a;
  color: #fff;
}

.story-stars {
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.story-stars-red {
  color: var(--primary-color);
}

.story-stars-dark {
  color: #0a0a0a;
}

.story-quote-dark {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2rem;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.stat-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.story-divider-dark {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
}

.story-author-dark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.author-avatar-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.story-author-dark .author-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.story-author-dark .author-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Card 4 - Light Stats Card */
.story-card-light {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  color: #0a0a0a;
}

.story-quote-light {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 2rem;
}

.stat-number-dark {
  font-size: 2.5rem;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1;
}

.stat-text-dark {
  font-size: 13px;
  color: #666;
}

.story-divider-light {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  margin-bottom: 1.5rem;
}

.story-author-light {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.author-name-dark {
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
}

.author-role-dark {
  font-size: 12px;
  color: #666;
}

/* Success Stories Responsive */
@media (max-width: 1200px) {
  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .success-stories-section {
    padding: 1rem;
  }
  
  .success-stories-grid {
    grid-template-columns: 1fr;
  }
  
  .story-card {
    min-height: 400px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LATEST INSIGHTS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.insights-section {
  padding: var(--section-padding);
  background-color: #0a0a0a;
}

.insights-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.insights-header {
  margin-bottom: 2rem;
}

/* Title Row */
.insights-title-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
  padding-left: 5vw;
  padding-right: 5vw;
}

.insights-main-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  font-family: var(--font-display);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.insights-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 350px;
  padding-top: 1rem;
}

.insights-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  justify-self: end;
  padding-top: 1rem;
}

.insights-link .link-arrow {
  font-size: 18px;
}

/* Blog Posts Grid */
.insights-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  padding-left: 5vw;
  padding-right: 5vw;
}

.insight-post {
  display: flex;
  flex-direction: column;
}

.insight-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.insight-featured .insight-image-wrapper {
  height: 400px;
}

.insight-small .insight-image-wrapper {
  height: 200px;
}

.insight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-corner-accent {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.insight-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.insight-date {
  font-size: 13px;
  color: var(--text-tertiary);
}

.insight-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.insight-featured .insight-title {
  font-size: 28px;
}

.insight-read-more {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 0.5rem;
}

.insight-read-more:hover {
  background-color: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.insights-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Insights Responsive */
@media (max-width: 1024px) {
  .insights-title-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .insights-link {
    justify-self: start;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-side {
    flex-direction: row;
  }
  
  .insight-small {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .insights-header {
    padding-left: 0;
  }
  
  .insights-title-row {
    padding: 0;
  }
  
  .insights-grid {
    padding: 0;
  }
  
  .insights-side {
    flex-direction: column;
  }
  
  .insight-featured .insight-image-wrapper {
    height: 300px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ SECTION - NEW DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-section-new {
  padding: var(--section-padding);
  background-color: #141414;
}

.faq-container-new {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.faq-section-header {
  margin-bottom: 3rem;
}

/* Two Column Layout */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-left: 5vw;
  padding-right: 5vw;
}

.faq-left {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.faq-main-title-new {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  font-family: var(--font-display);
  color: #fff;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.faq-description-new {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 350px;
  margin-bottom: 3rem;
}

.faq-cta {
  margin-top: auto;
}

.faq-cta-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-cta-button:hover {
  background-color: var(--primary-color-hover);
}

.faq-cta-button .button-arrow {
  font-size: 16px;
}

/* FAQ Accordion */
.faq-right {
  padding-top: 0.5rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item-new {
  cursor: pointer;
}

.faq-item-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.faq-item-number {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  min-width: 50px;
}

.faq-item-number .slash {
  color: var(--primary-color);
}

.faq-item-question {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  color: var(--text-tertiary);
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-new.active .faq-item-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

.faq-item-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding-left: calc(50px + 1.5rem);
  max-width: 700px;
}

.faq-item-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* FAQ Responsive */
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-left {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .faq-layout {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .faq-item-question {
    font-size: 17px;
  }
  
  .faq-item-answer p {
    padding-left: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION - NEW DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-section-new {
  padding: 6rem 0;
  background-color: var(--primary-color);
}

.contact-container-new {
  max-width: 100%;
  width: 100%;
  padding: 0 5vw;
}

.contact-main-title-new {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  font-family: var(--font-display);
  color: #fff;
  line-height: 1;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.contact-main-title-new .title-slash {
  font-style: italic;
}

/* Two Column Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-description-new {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 400px;
}

.contact-info-new {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-icon {
  color: #0a0a0a;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-label {
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0;
}

.contact-info-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}

/* Contact Form */
.contact-right {
  padding-top: 0;
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group-new {
  margin-bottom: 1.5rem;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  transition: border-color 0.3s ease;
}

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

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-bottom-color: #0a0a0a;
}

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

.form-submit-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: #fff;
  color: #0a0a0a;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 1rem;
}

.form-submit-new:hover {
  background-color: #f0f0f0;
}

.form-submit-new .button-arrow {
  font-size: 16px;
}

.form-disclaimer-new {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  margin-top: 1.5rem;
}

.form-disclaimer-new a {
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: none;
}

.form-disclaimer-new a:hover {
  text-decoration: underline;
}

/* Contact Responsive */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-container-new {
    padding: 0 1.5rem;
  }
  
  .contact-main-title-new {
    font-size: clamp(3rem, 12vw, 5rem);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER - NEW DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

.footer-new {
  background-color: #0a0a0a;
}

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-intro-text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  max-width: 350px;
}

.footer-email-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.footer-email-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-family: var(--font-body);
}

.footer-email-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-email-input:focus {
  outline: none;
}

.footer-email-submit {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-email-submit:hover {
  background-color: var(--primary-color-hover);
}

.footer-terms {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-terms a {
  color: #fff;
  text-decoration: none;
}

.footer-terms a:hover {
  text-decoration: underline;
}

/* Footer Navigation */
.footer-top-nav {
  display: flex;
  gap: 6rem;
  justify-content: flex-end;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-link {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
  opacity: 0.7;
}

.footer-nav-link .nav-tag {
  font-size: 12px;
  color: var(--primary-color);
  vertical-align: super;
}

/* Footer Middle Section */
.footer-middle {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding: 4rem 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-large {
  display: flex;
  align-items: flex-start;
}

.footer-brand-large .brand-text {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.footer-brand-large .brand-reg {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  color: #fff;
  vertical-align: top;
  margin-left: 0.5rem;
}

.footer-social-new {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.social-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.social-label .label-slash {
  color: var(--primary-color);
}

.social-links-new {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.social-link-new {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}

.social-link-new:hover {
  opacity: 0.7;
}

.social-link-new span {
  font-size: 16px;
}


/* Footer Bottom Section */
.footer-bottom-new {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  padding: 2rem 5vw;
  align-items: start;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-legal-links {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

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

.footer-copyright-new {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-center {
  text-align: center;
}

.footer-company-info {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
}

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

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.credit-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.framer-icon {
  font-size: 16px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-top-nav {
    justify-content: flex-start;
    gap: 4rem;
  }
  
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-social-new {
    align-items: flex-start;
  }
  
  .social-links-new {
    align-items: flex-start;
  }
  
  .footer-bottom-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-center {
    text-align: left;
  }
  
  .footer-bottom-right {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 3rem 1.5rem;
  }
  
  .footer-top-nav {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-nav-link {
    font-size: 18px;
  }
  
  .footer-middle {
    padding: 3rem 1.5rem;
  }
  
  .footer-brand-large .brand-text {
    font-size: clamp(4rem, 20vw, 8rem);
  }
  
  .footer-bottom-new {
    padding: 2rem 1.5rem;
  }
  
  .social-link-new {
    font-size: 18px;
  }
}

/* Scroll Indicator - Hidden */
.scroll-indicator {
  display: none;
  color: var(--text-secondary);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --section-padding: 6rem 2rem;
  }

  .nav-menu {
    gap: var(--spacing-md);
  }

  .nav-contact {
    display: none;
  }

  /* Why Choose Us - Tablet */
  .why-us-container {
    padding: 0 var(--spacing-lg);
  }

  .why-us-blocks {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }

  .project-thumbnails {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xs);
  }

  .thumbnail-label {
    font-size: 0.65rem;
  }

  .why-us-panels {
    grid-template-columns: 1fr 1fr;
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
    width: calc(100% + var(--spacing-lg) * 2);
  }

  .support-panel {
    grid-column: span 2;
    min-height: 500px;
  }
}

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

  /* Hero Section Mobile */
  .hero-section {
    padding: 100px 1.5rem 4rem;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .hero-left {
    padding-bottom: 0;
  }

  .hero-right {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .hero-services-list {
    align-items: flex-start;
  }

  .service-link-item {
    flex-direction: row;
  }

  .service-connector {
    width: 30px;
  }

  .hero-footer-right {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--spacing-xl);
    align-items: flex-start;
  }

  .hero-copyright {
    writing-mode: horizontal-tb;
    transform: none;
  }

  /* Clients Section Mobile */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-card {
    min-height: 250px;
    padding: var(--spacing-lg);
  }

  .clients-copyright {
    font-size: 2rem;
  }

  .section-accent-bar {
    height: 40px;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    flex-direction: column;
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--border-color);
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-actions {
    gap: var(--spacing-sm);
  }

  .nav-social {
    display: none;
  }

  .intro-services {
    grid-template-columns: 1fr;
  }

  /* Why Choose Us - Mobile */
  .why-us-blocks {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .experience-block {
    padding: var(--spacing-lg);
  }

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

  .satisfaction-image-wrapper {
    min-height: 400px;
  }

  /* Three Panels - Mobile */
  .why-us-panels {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-left: calc(-1 * var(--spacing-md));
    margin-right: calc(-1 * var(--spacing-md));
    width: calc(100% + var(--spacing-md) * 2);
  }

  .panel {
    min-height: 500px;
  }

  .pricing-image-wrapper {
    min-height: 500px;
  }

  .pricing-overlay::before {
    top: 1.5rem;
    left: 1.5rem;
  }

  .features-panel {
    padding: var(--spacing-lg);
    min-height: 400px;
  }

  .feature-item {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .support-panel {
    padding: var(--spacing-lg);
    min-height: auto;
  }

  .chat-window {
    min-height: 300px;
  }

  .services-grid {
    gap: var(--spacing-xl);
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-number,
  .service-divider {
    display: none;
  }

  .service-title,
  .service-description,
  .service-cta {
    grid-column: 1;
  }

  .faq-item {
    grid-template-columns: 1fr;
  }

  .faq-number,
  .faq-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 1rem;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    min-height: 200px;
  }

  .pricing-features {
    grid-template-columns: 1fr;
  }
}

/* Page Hero Styles */
.page-hero {
  padding: 12rem 2rem 6rem;
  background-color: var(--bg-color);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
}

.page-hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
}

.team-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  text-align: center;
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: var(--spacing-sm);
  transition: transform 0.5s ease;
}

.team-member:hover .team-image {
  transform: scale(1.05);
}

.team-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.team-role {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Values Section */
.values-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.values-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.values-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.value-number {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary-color);
  line-height: 1;
}

.value-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.value-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  text-align: center;
}

.cta-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.cta-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(174, 0, 121, 0.3);
}

/* Active Nav Link */
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  width: 100%;
}

/* Careers Section */
.careers-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.careers-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.careers-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.career-item {
  padding: var(--spacing-lg);
  background-color: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.career-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.career-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.career-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.career-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.career-details {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-size: 14px;
  color: var(--text-tertiary);
}

.career-apply {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.career-apply:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
}

.benefits-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.benefits-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.benefit-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.benefit-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}
