.maintenance {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .maintenance__content {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .maintenance__image-wrapper {
    flex: 1;
    position: relative;
    animation: slideInLeft 1s ease-out;
  }
  
  .maintenance__image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
  }
  
  .maintenance__text {
    flex: 1;
    animation: slideInRight 1s ease-out;
  }
  
  .maintenance__title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
  }
  
  .text-primary {
    background: linear-gradient(135deg, #00A0FA, #0077ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  .maintenance__description {
    color: #64748B;
    line-height: 1.7;
    font-size: 16px;
    max-width: 500px;
  }
  
  .floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #FF3B30;
    animation: floatIn 0.6s ease-out 0.8s both;
  }
  
  .icon-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 59, 48, 0.1);
  }
  
  /* Animations */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes floatIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Hover Effects */
  .maintenance__image-wrapper:hover .maintenance__image {
    transform: scale(1.02);
  }
  
  .floating-badge {
    transition: transform 0.3s ease;
  }
  
  .floating-badge:hover {
    transform: translateY(-5px);
  }
  
  .icon-tag {
    animation: pulse 2s infinite;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .maintenance {
      padding: 60px 0;
    }
  
    .maintenance__content {
      flex-direction: column-reverse;
      gap: 40px;
    }
  
    .maintenance__title {
      font-size: 36px;
    }
  
    .floating-badge {
      bottom: 20px;
      right: 20px;
      padding: 8px 16px;
      font-size: 12px;
    }
  
    .icon-tag {
      width: 28px;
      height: 28px;
    }
  }
  
  /* Animation Performance */
  @media (prefers-reduced-motion: reduce) {
    .maintenance__image-wrapper,
    .maintenance__text,
    .floating-badge,
    .icon-tag {
      animation: none;
    }
  }