/* ====================================
   ENHANCED ADVANTAGES SECTION - PHOTO BASED
   ==================================== */

/* Hero Stats Cards - More Subtle */
.hero-stats-container {
  gap: 1.5rem;
}

.stats-card {
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.stats-card:hover {
  transform: translateY(-6px) scale(1.03) !important;
  background: rgba(255, 255, 255, 0.75) !important;
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.18) !important;
}

.stat-icon-wrapper {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.stats-card:hover .stat-icon-wrapper {
  transform: scale(1.15) rotate(5deg) !important;
}

.advantages-section-enhanced {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  overflow: hidden;
}

.advantages-section-enhanced::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle,
      rgba(59, 130, 246, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.advantages-section-enhanced::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle,
      rgba(147, 197, 253, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.advantages-section-enhanced .container {
  position: relative;
  z-index: 1;
}

/* Advantages Title - Presentation Style */
.advantages-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a2e;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.advantages-title .title-accent {
  background: linear-gradient(135deg, #3B82F6 0%, #2B5278 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantages-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Photo Grid Layout */
.advantages-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

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

@media (max-width: 640px) {
  .advantages-photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual Photo Item */
.advantage-photo-item {
  position: relative;
  height: 340px;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.advantage-photo-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.15) 0%,
      rgba(147, 197, 253, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.advantage-photo-item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.12);
}

.advantage-photo-item:hover::before {
  opacity: 1;
}

/* Background Photo */
.advantage-photo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.advantage-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(0.85);
}

.advantage-photo-item:hover .advantage-photo-bg img {
  transform: scale(1.15);
  filter: brightness(0.7);
}

/* Gradient Overlay */
.advantage-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(26, 43, 61, 0.3) 0%,
      rgba(26, 43, 61, 0.75) 60%,
      rgba(26, 43, 61, 0.95) 100%);
  transition: background 0.6s ease;
  z-index: 1;
}

.advantage-photo-item:hover .advantage-photo-overlay {
  background: linear-gradient(180deg,
      rgba(59, 130, 246, 0.4) 0%,
      rgba(26, 43, 61, 0.85) 60%,
      rgba(26, 43, 61, 0.98) 100%);
}

/* Content Overlay */
.advantage-photo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.advantage-photo-item:hover .advantage-photo-content {
  transform: translateY(-8px);
}

/* Icon */
.advantage-photo-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.advantage-photo-item:hover .advantage-photo-icon {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(96, 165, 250, 0.6);
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.advantage-photo-icon i {
  width: 28px;
  height: 28px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Title */
.advantage-photo-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.advantage-photo-item:hover .advantage-photo-title {
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  transform: translateX(4px);
}

/* Text */
.advantage-photo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.advantage-photo-item:hover .advantage-photo-text {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transform: translateX(4px);
}

/* ====================================
   ENHANCED INDUSTRY CARDS - LESS PROMINENT BADGES
   ==================================== */

.industry-section {
  background: #ffffff;
}

.industry-card {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

/* Make stats less prominent */
.industry-stats {
  opacity: 0.7 !important;
  transition: opacity 0.4s ease !important;
}

.industry-card:hover .industry-stats {
  opacity: 1 !important;
}

.industry-stat {
  background: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(8px) !important;
}

.industry-card-image img {
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease;
  filter: brightness(0.9);
}

.industry-card:hover .industry-card-image img {
  transform: scale(1.2);
  filter: brightness(0.75);
}

.industry-image-overlay {
  background: linear-gradient(180deg,
      rgba(26, 43, 61, 0) 0%,
      rgba(26, 43, 61, 0.5) 60%,
      rgba(26, 43, 61, 0.8) 100%);
  transition: background 0.6s ease;
}

.industry-card:hover .industry-image-overlay {
  background: linear-gradient(180deg,
      rgba(59, 130, 246, 0.1) 0%,
      rgba(26, 43, 61, 0.6) 60%,
      rgba(26, 43, 61, 0.9) 100%);
}

/* ====================================
   ENHANCED SOURCE GLOBALLY SECTION
   ==================================== */

/* ====================================
   ULTRA-PROFESSIONAL AUTOMOTIVE SECTION
   ==================================== */

.ultra-pro-automotive-section {
  padding: 140px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.pro-header-wrapper {
  margin-bottom: 80px;
}

.pro-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #1a1a2e;
  margin: 0;
  letter-spacing: -0.03em;
}

.title-blue-accent {
  background: linear-gradient(135deg, #2B5278 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Visual Grid */
.pro-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.pro-service-card {
  position: relative;
  height: 620px;
  border-radius: 48px;
  overflow: hidden;
  background: #f8fafb;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.pro-card-image {
  height: 70%;
  position: relative;
  overflow: hidden;
}

.img-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.pro-service-card:hover .img-zoom {
  transform: scale(1.1);
}

.pro-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26, 43, 61, 0.2) 100%);
}

.pro-card-badge {
  position: absolute;
  top: 35px;
  left: 35px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 20px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.pro-card-content {
  padding: 40px;
  background: #ffffff;
  height: 30%;
}

.pro-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px 0;
}

.pro-card-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Bottom Row - Screenshot Precision */
.pro-bottom-row {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 60px;
  align-items: center;
}

.pro-coverage-box {
  background: #f8fafb;
  border-radius: 40px;
  padding: 40px;
  transition: all 0.5s ease;
}

.pro-coverage-box:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.coverage-inner {
  display: flex;
  align-items: center;
  gap: 25px;
}

.coverage-img-box {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  overflow: hidden;
}

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

.coverage-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 5px 0;
}

.coverage-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

/* Pro Description Block */
.pro-description-wrapper {
  padding-left: 20px;
}

.pro-main-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.35;
  color: #1a1a2e;
  margin: 0 0 40px 0;
  letter-spacing: -0.01em;
}

.pro-text-highlight {
  color: #3B82F6;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(59, 130, 246, 0.2);
}

.pro-action-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-pro-navy {
  background: #2B5278;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(43, 82, 120, 0.15);
}

.btn-pro-navy:hover {
  background: #1a1a2e;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(43, 82, 120, 0.25);
}

.btn-pro-blue-circle {
  width: 65px;
  height: 65px;
  background: #3B82F6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.btn-pro-blue-circle:hover {
  transform: rotate(45deg) scale(1.1);
  background: #2B5278;
}

/* Animations */
.reveal-left {
  transform: translateX(-40px);
  opacity: 0;
}

.reveal-right {
  transform: translateX(40px);
  opacity: 0;
}

.reveal-up {
  transform: translateY(30px);
  opacity: 0;
}

.ultra-pro-automotive-section.in-view .reveal-left,
.ultra-pro-automotive-section.in-view .reveal-right,
.ultra-pro-automotive-section.in-view .reveal-up {
  transform: translate(0);
  opacity: 1;
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.ultra-pro-automotive-section [data-delay="200"] {
  transition-delay: 0.2s;
}

.ultra-pro-automotive-section [data-delay="300"] {
  transition-delay: 0.3s;
}

.ultra-pro-automotive-section [data-delay="400"] {
  transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1200px) {
  .pro-visual-grid {
    gap: 30px;
  }

  .pro-bottom-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pro-header-wrapper {
    margin-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .pro-visual-grid {
    grid-template-columns: 1fr;
  }

  .pro-service-card {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .ultra-pro-automotive-section {
    padding: 80px 0;
  }

  .pro-main-title {
    font-size: 2.4rem;
  }

  .pro-coverage-box {
    padding: 30px;
  }
}

/* ====================================
   ENHANCED ABOUT SECTION
   ==================================== */

/* Make floating stat cards more subtle */
.stat-card-floating {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.stat-card-floating:hover {
  transform: translateY(-10px) scale(1.08) !important;
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.25) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.about-visual .visual-image {
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease;
  filter: brightness(0.85);
}

.about-visual:hover .visual-image {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.visual-overlay {
  background: linear-gradient(180deg,
      rgba(26, 43, 61, 0.2) 0%,
      rgba(26, 43, 61, 0.5) 60%,
      rgba(26, 43, 61, 0.8) 100%);
  transition: background 0.6s ease;
}

.about-visual:hover .visual-overlay {
  background: linear-gradient(180deg,
      rgba(59, 130, 246, 0.2) 0%,
      rgba(26, 43, 61, 0.6) 60%,
      rgba(26, 43, 61, 0.9) 100%);
}

/* ====================================
   RESPONSIVE ADJUSTMENTS
   ==================================== */

@media (max-width: 768px) {
  .advantage-photo-item {
    height: 280px;
  }

  .advantage-photo-content {
    padding: 1.5rem;
  }

  .advantage-photo-title {
    font-size: 1.25rem;
  }

  .advantage-photo-text {
    font-size: 0.9rem;
  }

  .advantage-photo-icon {
    width: 48px;
    height: 48px;
  }

  .advantage-photo-icon i {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .advantages-section-enhanced {
    padding: 5rem 0;
  }

  .advantage-photo-item {
    height: 240px;
  }

  .advantages-photo-grid {
    gap: 1.5rem;
  }
}

/* ====================================
   SECTION HEADER ANIMATIONS
   ==================================== */

.section-title-animated {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.word-animate {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: wordFadeIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.word-animate[data-word='1'] {
  animation-delay: 0.2s;
}

.word-animate[data-word='2'] {
  animation-delay: 0.4s;
}

.word-animate[data-word='3'] {
  animation-delay: 0.6s;
}

.word-animate:hover {
  transform: translateY(-8px) scale(1.1);
  text-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  animation: wordGlow 0.9s ease-in-out infinite alternate;
}

.word-animate.title-accent:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.2);
  animation: accentGlow 0.9s ease-in-out infinite alternate;
}

@keyframes wordGlow {
  0% {
    text-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  }

  100% {
    text-shadow: 0 8px 32px rgba(59, 130, 246, 0.7),
      0 0 20px rgba(59, 130, 246, 0.3);
  }
}

@keyframes accentGlow {
  0% {
    filter: brightness(1.2) drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
  }

  100% {
    filter: brightness(1.4) drop-shadow(0 6px 20px rgba(59, 130, 246, 0.7));
  }
}

@keyframes wordFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  60% {
    opacity: 0.8;
    transform: translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Description Word Animation */
.section-description-animated {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.desc-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  animation: descWordFadeIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.desc-word:hover {
  transform: translateY(-3px) scale(1.05);
  color: #3b82f6;
  font-weight: 600;
}

.desc-word[data-delay='0'] {
  animation-delay: 0.8s;
}

.desc-word[data-delay='1'] {
  animation-delay: 0.9s;
}

.desc-word[data-delay='2'] {
  animation-delay: 1s;
}

.desc-word[data-delay='3'] {
  animation-delay: 1.1s;
}

.desc-word[data-delay='4'] {
  animation-delay: 1.2s;
}

.desc-word[data-delay='5'] {
  animation-delay: 1.3s;
}

.desc-word[data-delay='6'] {
  animation-delay: 1.4s;
}

.desc-word[data-delay='7'] {
  animation-delay: 1.5s;
}

.desc-word[data-delay='8'] {
  animation-delay: 1.6s;
}

.desc-word[data-delay='9'] {
  animation-delay: 1.7s;
}

.desc-word[data-delay='10'] {
  animation-delay: 1.8s;
}

@keyframes descWordFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  60% {
    opacity: 0.7;
    transform: translateY(-3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trigger animation on scroll */
.advantages-section-enhanced.in-view .word-animate,
.advantages-section-enhanced.in-view .desc-word {
  animation-play-state: running;
}

/* ====================================
   ANIMATION ENHANCEMENTS
   ==================================== */

@keyframes photoReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

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

.advantage-photo-item[data-animate='fade-up'] {
  animation: photoReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

.advantage-photo-item[data-delay='0'] {
  animation-delay: 0.1s;
}

.advantage-photo-item[data-delay='100'] {
  animation-delay: 0.2s;
}

.advantage-photo-item[data-delay='200'] {
  animation-delay: 0.3s;
}

.advantage-photo-item[data-delay='300'] {
  animation-delay: 0.4s;
}

.advantage-photo-item[data-delay='400'] {
  animation-delay: 0.5s;
}

.advantage-photo-item[data-delay='500'] {
  animation-delay: 0.6s;
}

/* ====================================
   CUSTOM REVEAL ANIMATIONS
   ==================================== */

[data-scroll-animate] {
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-premium-section.in-view [data-scroll-animate] {
  opacity: 1;
}

.services-premium-section.in-view .card-reveal-left {
  transform: translateX(0);
}

.services-premium-section.in-view .card-reveal-right {
  transform: translateX(0);
}

.services-premium-section.in-view .card-reveal-up {
  transform: translateY(0);
}

.card-reveal-left {
  transform: translateX(-50px);
}

.card-reveal-right {
  transform: translateX(50px);
}

.card-reveal-up {
  transform: translateY(40px);
}

/* Staggered Delays for Premium Section */
.services-premium-section [data-delay="100"] {
  transition-delay: 0.1s;
}

.services-premium-section [data-delay="200"] {
  transition-delay: 0.2s;
}

.services-premium-section [data-delay="300"] {
  transition-delay: 0.3s;
}

.services-premium-section [data-delay="400"] {
  transition-delay: 0.4s;
}

.services-premium-section [data-delay="500"] {
  transition-delay: 0.5s;
}

/* ====================================
   TIMELINE STORY SECTION - BRAND NEW
   ==================================== */

.timeline-story-section {
  padding: 140px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Background Gradients for Depth */
.timeline-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 500px;
  background: radial-gradient(circle at center top, rgba(59, 130, 246, 0.05), transparent 70%);
  pointer-events: none;
}

/* Header */
.timeline-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px auto;
  position: relative;
  z-index: 2;
}

.timeline-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #3B82F6;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(59, 130, 246, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
}

.timeline-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a2e;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
}

.text-highlight {
  position: relative;
  display: inline-block;
  color: #3B82F6;
}

.timeline-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

/* Timeline Wrapper */
.timeline-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* The Central Line */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(59, 130, 246, 0.05) 0%,
      rgba(59, 130, 246, 0.3) 15%,
      rgba(59, 130, 246, 0.3) 85%,
      rgba(59, 130, 246, 0.05) 100%);
  transform: translateX(-50%);
}

/* Timeline Items */
.timeline-item {
  position: relative;
  margin-bottom: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  width: 42%;
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.timeline-item.left {
  justify-content: flex-start;
  padding-right: 50%;
}

.timeline-item.left .timeline-content {
  margin-right: 60px;
  margin-left: auto;
  /* Push to center line */
}

.timeline-item.right {
  justify-content: flex-end;
  padding-left: 50%;
}

.timeline-item.right .timeline-content {
  margin-left: 60px;
  margin-right: auto;
  /* Push to center line */
}

.timeline-item:hover .timeline-content {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
}

/* Dots on the Line */
.timeline-dot-wrapper {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: #3B82F6;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #ffffff;
}

.timeline-dot-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  animation: pulse-dot 2s infinite;
  z-index: 1;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Card Content Styling */
.timeline-image {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.img-hover-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.timeline-item:hover .img-hover-zoom {
  transform: scale(1.1);
}

.timeline-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 43, 61, 0) 0%, rgba(26, 43, 61, 0.6) 100%);
  z-index: 1;
}

.timeline-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.timeline-icon i {
  color: #3B82F6;
  width: 24px;
  height: 24px;
}

.timeline-text-box {
  padding: 40px;
  position: relative;
}

.timeline-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.timeline-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.timeline-step {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
  .timeline-line {
    left: 40px;
  }

  .timeline-item {
    justify-content: flex-start !important;
    padding-left: 80px !important;
    padding-right: 20px !important;
    margin-bottom: 80px;
  }

  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .timeline-dot-wrapper {
    left: 40px;
  }
}

@media (max-width: 600px) {
  .timeline-story-section {
    padding: 80px 0;
  }

  .timeline-title {
    font-size: 2.5rem;
  }

  .timeline-wrapper {
    padding-top: 20px;
  }

  /* Hide line mostly on mobile or adjust */
  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    padding-left: 50px !important;
    padding-right: 15px !important;
  }

  .timeline-dot-wrapper {
    left: 20px;
  }

  .timeline-text-box {
    padding: 30px 25px;
  }

  .timeline-step {
    font-size: 3rem;
  }
}

/* ====================================
   BIG CARDS TIMELINE UPDATES
   ==================================== */

.timeline-story-section.big-cards-mode .timeline-wrapper {
  max-width: 1300px;
  /* Wider container for big cards */
  padding: 60px 0;
}

.timeline-story-section.big-cards-mode .timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 80px;
  position: relative;
}

.timeline-story-section.big-cards-mode .timeline-row:last-child {
  margin-bottom: 0;
}

/* Items in Row */
.timeline-story-section.big-cards-mode .timeline-item {
  width: 46%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.timeline-story-section.big-cards-mode .timeline-content {
  width: 100%;
  margin: 0 !important;
  /* Reset specific margins */
  height: 100%;
}

/* Big Card Styling */
.timeline-content.big-card {
  border-radius: 40px;
}

.timeline-content.big-card .timeline-image {
  height: 420px;
  /* Much taller */
}

/* Typography Boost */
.timeline-content.big-card .timeline-card-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.timeline-content.big-card .timeline-card-desc {
  font-size: 1.15rem;
  line-height: 1.7;
}

.timeline-content.big-card .timeline-step {
  font-size: 5rem;
  top: 30px;
  right: 30px;
  opacity: 0.15;
  color: #000;
}

/* Dot Positioning for Rows */
.timeline-story-section.big-cards-mode .timeline-item .timeline-dot-wrapper {
  top: 60px;
  /* Align with top part of card roughly */
}

.timeline-story-section.big-cards-mode .timeline-item.left .timeline-dot-wrapper {
  left: auto;
  right: -5.5%;
  /* Push into the center gap */
  transform: translateX(50%);
}

.timeline-story-section.big-cards-mode .timeline-item.right .timeline-dot-wrapper {
  left: -5.5%;
  /* Push into the center gap */
  right: auto;
  transform: translateX(-50%);
}

.timeline-story-section.big-cards-mode .timeline-line {
  /* Ensure line stays centered in wrapper */
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  /* Slightly thicker */
  background: linear-gradient(180deg,
      rgba(59, 130, 246, 0.1) 0%,
      rgba(59, 130, 246, 0.4) 15%,
      rgba(59, 130, 246, 0.4) 85%,
      rgba(59, 130, 246, 0.1) 100%);
}

/* Center Super Card */
.timeline-row.single-center {
  justify-content: center;
  margin-top: 40px;
}

.timeline-story-section.big-cards-mode .timeline-item.center {
  width: 80%;
  max-width: 1000px;
  align-items: center;
}

.timeline-story-section.big-cards-mode .timeline-item.center .timeline-dot-wrapper {
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  /* On top of the card or clearly marking center */
}

.timeline-content.super-card .timeline-image {
  height: 500px;
  /* Massive for the finale */
}

/* Responsive Adjustments for Big Cards */
@media (max-width: 1024px) {
  .timeline-story-section.big-cards-mode .timeline-row {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
  }

  .timeline-story-section.big-cards-mode .timeline-item {
    width: 100%;
    padding-left: 50px;
    /* Space for line */
  }

  /* Reset Dot to Left Side for mobile linear view */
  .timeline-story-section.big-cards-mode .timeline-item.left .timeline-dot-wrapper,
  .timeline-story-section.big-cards-mode .timeline-item.right .timeline-dot-wrapper,
  .timeline-story-section.big-cards-mode .timeline-item.center .timeline-dot-wrapper {
    left: 20px;
    right: auto;
    transform: translateX(-50%);
    top: 50px;
  }

  .timeline-story-section.big-cards-mode .timeline-line {
    left: 20px;
  }
}

/* ====================================
   CINEMATIC STORY SECTION
   ==================================== */

.cinematic-story-section {
  padding: 160px 0;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.cinematic-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 150%;
  height: 600px;
  background: radial-gradient(circle at center top, rgba(59, 130, 246, 0.05), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.story-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 120px auto;
}

.story-pre-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #3B82F6;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.story-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 24px 0;
  letter-spacing: -0.04em;
}

.story-main-title .accent {
  background: linear-gradient(135deg, #3B82F6 0%, #2B5278 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
}

/* Story Sequence Stacking */
.story-sequence {
  display: flex;
  flex-direction: column;
  gap: 180px;
  /* Space between blocks */
  position: relative;
}

/* The Connecting Path Line */
.story-sequence::after {
  content: '';
  position: absolute;
  top: 100px;
  bottom: 100px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(59, 130, 246, 0) 0%,
      rgba(59, 130, 246, 0.2) 10%,
      rgba(59, 130, 246, 0.2) 90%,
      rgba(59, 130, 246, 0) 100%);
  transform: translateX(-50%);
  z-index: 0;
}

.story-block {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.story-block.reverse {
  flex-direction: row-reverse;
}

/* Visual Side */
.story-visual {
  flex: 1.2;
  position: relative;
}

.story-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  height: 550px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.12);
  background: #f1f5f9;
}

.story-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-block:hover .story-image-wrapper img {
  transform: scale(1.08);
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26, 43, 61, 0.4) 100%);
}

.story-number {
  position: absolute;
  top: -40px;
  right: -40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(59, 130, 246, 0.1);
  line-height: 0.8;
  pointer-events: none;
  z-index: -1;
}

.reverse .story-number {
  right: auto;
  left: -40px;
}

/* Content Side */
.story-content {
  flex: 1;
  padding: 40px;
}

.story-icon {
  width: 70px;
  height: 70px;
  background: #f8fafb;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: #3B82F6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.story-icon i {
  width: 32px;
  height: 32px;
}

.story-feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.story-feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 32px;
}

.story-feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #1a1a2e;
  font-weight: 500;
}

.story-feature-list li i {
  width: 22px;
  height: 22px;
  color: #3B82F6;
}

/* Finish Section */
.story-block.finish {
  background: #f8fafb;
  border-radius: 60px;
  padding: 80px;
}

.story-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #2B5278;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: all 0.4s ease;
}

.story-btn:hover {
  background: #3B82F6;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
}

/* Mobile Responsive */
@media (max-width: 1100px) {

  .story-block,
  .story-block.reverse {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .story-content {
    padding: 0;
  }

  .story-icon {
    margin: 0 auto 30px auto;
  }

  .story-feature-list {
    align-items: center;
  }

  .story-number {
    font-size: 8rem;
    top: -20px;
    right: 20px;
  }

  .story-sequence::after {
    display: none;
  }

  .story-image-wrapper {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .cinematic-story-section {
    padding: 80px 0;
  }

  .story-main-title {
    font-size: 2.5rem;
  }

  .story-feature-title {
    font-size: 2rem;
  }

  .story-block.finish {
    padding: 40px 20px;
  }
}