/* ============================================ */
/* SERVICES HERO SLIDER - svsl prefix           */
/* ============================================ */

.svsl-section {
    padding: 8rem 2rem 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .svsl-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  /* Background Shapes */
  .svsl-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .svsl-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.06;
  }
  
  .svsl-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--red);
    top: -250px;
    right: -150px;
    animation: svslFloatShape 25s ease-in-out infinite;
  }
  
  .svsl-shape-2 {
    width: 500px;
    height: 500px;
    background: var(--red);
    bottom: -200px;
    left: -100px;
    animation: svslFloatShape 30s ease-in-out infinite reverse;
  }
  
  .svsl-shape-3 {
    width: 400px;
    height: 400px;
    background: var(--red);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: svslFloatShape 35s ease-in-out infinite;
  }
  
  @keyframes svslFloatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-40px, 40px) scale(0.9); }
  }
  
  /* Header */
  .svsl-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .svsl-tag {
    color: var(--red);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .svsl-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }
  
  .svsl-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  /* Slider Wrapper */
  .svsl-slider-wrapper {
    position: relative;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.06);
  }
  
  /* Slider */
  .svsl-slider {
    position: relative;
    min-height: 520px;
  }
  
  /* Individual Slides */
  .svsl-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: translateX(40px) scale(0.96);
  }
  
  .svsl-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    position: relative;
  }
  
  .svsl-slide.exit {
    opacity: 0;
    transform: translateX(-40px) scale(0.96);
  }
  
  .svsl-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 3.5rem;
    align-items: center;
  }
  
  /* Slide Text */
  .svsl-slide-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .svsl-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(230, 57, 70, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
  }
  
  .svsl-badge-icon {
    font-size: 1.1rem;
  }
  
  .svsl-slide-text h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark);
    line-height: 1.2;
  }
  
  .svsl-slide-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .svsl-slide-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
  }
  
  .svsl-slide-features li {
    color: var(--dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .svsl-slide-features li::before {
    content: '▸';
    color: var(--red);
    font-weight: 700;
  }
  
  /* Slide Actions */
  .svsl-slide-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }
  
  .svsl-btn-primary {
    background: var(--red);
    border: none;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .svsl-btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    gap: 1.2rem;
  }
  
  .svsl-btn-secondary {
    background: transparent;
    border: 2px solid rgba(230, 57, 70, 0.2);
    color: var(--dark);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .svsl-btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-3px);
  }
  
  /* Slide Image */
  .svsl-slide-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  }
  
  .svsl-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
  }
  
  .svsl-slide:hover .svsl-slide-image img {
    transform: scale(1.05);
  }
  
  .svsl-image-stats {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .svsl-stat {
    text-align: center;
    flex: 1;
  }
  
  .svsl-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.2;
  }
  
  .svsl-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .svsl-image-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(230, 57, 70, 0.9);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
  }
  
  /* Slider Controls */
  .svsl-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    border-top: 1px solid var(--cream);
  }
  
  .svsl-prev,
  .svsl-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(230, 57, 70, 0.15);
    background: transparent;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .svsl-prev:hover,
  .svsl-next:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
  }
  
  .svsl-prev:disabled,
  .svsl-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none !important;
  }
  
  /* Dots */
  .svsl-dots {
    display: flex;
    gap: 0.8rem;
  }
  
  .svsl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
  }
  
  .svsl-dot:hover {
    background: rgba(230, 57, 70, 0.4);
    transform: scale(1.2);
  }
  
  .svsl-dot.active {
    background: var(--red);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
  }
  
  /* Progress Bar */
  .svsl-progress {
    height: 3px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .svsl-progress-bar {
    height: 100%;
    background: var(--red);
    width: 0%;
    transition: width 0.5s ease;
    position: relative;
    border-radius: 0 3px 3px 0;
  }
  
  .svsl-progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
  }
  
  /* Slide Counter */
  .svsl-counter {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid var(--cream);
    z-index: 5;
    font-variant-numeric: tabular-nums;
  }
  
  .svsl-current {
    color: var(--red);
  }
  
  .svsl-separator {
    color: var(--gray-light);
    margin: 0 0.2rem;
  }
  
  .svsl-total {
    color: var(--gray-light);
  }
  
  /* Footer CTA */
  .svsl-footer-cta {
    text-align: center;
    padding: 3rem 2rem 1rem;
  }
  
  .svsl-footer-cta p {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .svsl-footer-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .svsl-footer-btn:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
    gap: 1.5rem;
  }
  
  /* ============================================ */
  /* RESPONSIVE - svsl                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .svsl-title {
      font-size: 2.8rem;
    }
    
    .svsl-slide-content {
      grid-template-columns: 1fr;
      padding: 2.5rem;
    }
    
    .svsl-slide-image {
      height: 300px;
    }
    
    .svsl-slide-text h3 {
      font-size: 2rem;
    }
    
    .svsl-slide-features {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .svsl-section {
      padding: 6rem 1.5rem 3rem;
    }
    
    .svsl-title {
      font-size: 2.2rem;
    }
    
    .svsl-subtitle {
      font-size: 1rem;
    }
    
    .svsl-slide-content {
      padding: 1.5rem;
    }
    
    .svsl-slide-image {
      height: 220px;
    }
    
    .svsl-slide-text h3 {
      font-size: 1.6rem;
    }
    
    .svsl-slide-desc {
      font-size: 0.95rem;
    }
    
    .svsl-slide-features li {
      font-size: 0.85rem;
    }
    
    .svsl-image-stats {
      flex-direction: column;
      gap: 0.5rem;
      padding: 0.8rem 1rem;
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
    }
    
    .svsl-stat {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .svsl-stat-number {
      font-size: 1rem;
    }
    
    .svsl-stat-label {
      font-size: 0.65rem;
    }
    
    .svsl-controls {
      gap: 1rem;
      padding: 1rem;
    }
    
    .svsl-prev,
    .svsl-next {
      width: 38px;
      height: 38px;
    }
    
    .svsl-counter {
      top: 1rem;
      right: 1rem;
      font-size: 0.7rem;
      padding: 0.3rem 0.8rem;
    }
    
    .svsl-slide-actions {
      flex-direction: column;
    }
    
    .svsl-btn-primary,
    .svsl-btn-secondary {
      width: 100%;
      justify-content: center;
    }
    
    .svsl-footer-cta p {
      font-size: 1rem;
    }
    
    .svsl-footer-btn {
      width: 100%;
      justify-content: center;
    }
    
    .svsl-image-overlay {
      top: 1rem;
      left: 1rem;
      font-size: 0.7rem;
      padding: 0.3rem 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .svsl-title {
      font-size: 1.8rem;
    }
    
    .svsl-tag {
      font-size: 0.7rem;
    }
    
    .svsl-slide-content {
      padding: 1rem;
    }
    
    .svsl-slide-image {
      height: 180px;
    }
    
    .svsl-slide-text h3 {
      font-size: 1.4rem;
    }
  }


/* ============================================ */
/* SERVICES HERO - svch prefix                  */
/* ============================================ */

.svch-section {
    padding: 8rem 2rem 6rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .svch-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  /* Background Shapes */
  .svch-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .svch-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
  }
  
  .svch-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--red);
    top: -200px;
    right: -100px;
    animation: svchFloatShape 20s ease-in-out infinite;
  }
  
  .svch-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--red);
    bottom: -150px;
    left: -100px;
    animation: svchFloatShape 25s ease-in-out infinite reverse;
  }
  
  .svch-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--red);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: svchFloatShape 30s ease-in-out infinite;
  }
  
  @keyframes svchFloatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
  }
  
  /* Header */
  .svch-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .svch-tag {
    color: var(--red);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .svch-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }
  
  .svch-subtitle {
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  /* Services Grid */
  .svch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .svch-grid-bottom {
    margin-bottom: 3rem;
  }
  
  /* Service Card */
  .svch-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(230, 57, 70, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  .svch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  
  .svch-card:hover::before {
    transform: scaleX(1);
  }
  
  .svch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.08);
    border-color: var(--red);
  }
  
  .svch-card-featured {
    border-color: var(--red);
    background: linear-gradient(135deg, white, rgba(230, 57, 70, 0.02));
  }
  
  .svch-card-featured .svch-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--red);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  .svch-card-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
    transition: transform 0.3s;
  }
  
  .svch-card:hover .svch-card-icon {
    transform: scale(1.1) rotate(-5deg);
  }
  
  .svch-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
  }
  
  .svch-card-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  
  .svch-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  
  .svch-card-features li {
    padding: 0.3rem 0;
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .svch-card-features li::before {
    content: '▸';
    color: var(--red);
    font-weight: 700;
  }
  
  .svch-card-hover {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  
  .svch-card:hover .svch-card-hover {
    opacity: 1;
    transform: translateY(0);
  }
  
  .svch-card-link {
    color: var(--red);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .svch-card-link:hover {
    gap: 1rem;
  }
  
  .svch-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(230, 57, 70, 0.03), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
  }
  
  .svch-card:hover .svch-card-glow {
    opacity: 1;
  }
  
  /* CTA Section */
  .svch-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(230, 57, 70, 0.05);
    margin-top: 1rem;
  }
  
  .svch-cta p {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .svch-cta-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .svch-cta-btn:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
    gap: 1.5rem;
  }
  
  /* Responsive */
  @media (max-width: 1200px) {
    .svch-title {
      font-size: 3.2rem;
    }
    
    .svch-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .svch-grid-bottom {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .svch-card-featured {
      grid-column: span 1;
    }
  }
  
  @media (max-width: 768px) {
    .svch-section {
      padding: 6rem 1.5rem 4rem;
    }
    
    .svch-title {
      font-size: 2.5rem;
    }
    
    .svch-subtitle {
      font-size: 1rem;
    }
    
    .svch-grid {
      grid-template-columns: 1fr;
    }
    
    .svch-grid-bottom {
      grid-template-columns: 1fr;
    }
    
    .svch-card {
      padding: 2rem 1.5rem;
    }
    
    .svch-card-content h3 {
      font-size: 1.4rem;
    }
    
    .svch-cta {
      padding: 2rem 1.5rem;
    }
    
    .svch-cta p {
      font-size: 1rem;
    }
    
    .svch-cta-btn {
      width: 100%;
      justify-content: center;
    }
    
    .svch-card-featured .svch-card-badge {
      top: 0.8rem;
      right: 0.8rem;
      font-size: 0.6rem;
      padding: 0.2rem 0.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .svch-title {
      font-size: 2rem;
    }
    
    .svch-tag {
      font-size: 0.7rem;
    }
    
    .svch-card-icon {
      font-size: 2.5rem;
    }
    
    .svch-card-features li {
      font-size: 0.85rem;
    }
  }








  /* ============================================ */
/* SERVICES LINKS - svln prefix                 */
/* ============================================ */

.svln-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
  }
  
  .svln-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Header */
  .svln-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .svln-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .svln-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .svln-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Tabs */
  .svln-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(230, 57, 70, 0.05);
  }
  
  .svln-tab {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 2px solid transparent;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .svln-tab:hover {
    border-color: rgba(230, 57, 70, 0.2);
    background: rgba(230, 57, 70, 0.03);
  }
  
  .svln-tab.active {
    background: var(--red);
    color: white;
    border-color: var(--red);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
  }
  
  .svln-tab-icon {
    font-size: 1.2rem;
  }
  
  .svln-tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
  }
  
  .svln-tab.active .svln-tab-count {
    background: rgba(255, 255, 255, 0.3);
  }
  
  /* Search */
  .svln-search {
    margin-bottom: 2rem;
  }
  
  .svln-search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto 0.5rem;
  }
  
  .svln-search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.5;
  }
  
  .svln-search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid rgba(230, 57, 70, 0.1);
    border-radius: 60px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: var(--dark);
  }
  
  .svln-search-box input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.08);
  }
  
  .svln-search-clear {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray);
    opacity: 0;
    transition: all 0.3s;
    padding: 0.3rem 0.5rem;
  }
  
  .svln-search-clear.visible {
    opacity: 1;
  }
  
  .svln-search-results {
    text-align: center;
  }
  
  .svln-search-count {
    font-size: 0.9rem;
    color: var(--gray);
  }
  
  /* Content */
  .svln-content {
    display: block;
  }
  
  /* Category */
  .svln-category {
    display: none;
    animation: svlnFadeIn 0.4s ease;
  }
  
  .svln-category.active {
    display: block;
  }
  
  @keyframes svlnFadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .svln-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  }
  
  .svln-category-icon {
    font-size: 2rem;
  }
  
  .svln-category-title h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark);
  }
  
  /* Group */
  .svln-group {
    background: white;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.04);
    transition: all 0.3s;
  }
  
  .svln-group:hover {
    border-color: rgba(230, 57, 70, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  }
  
  .svln-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
  }
  
  .svln-group-header:hover {
    background: rgba(230, 57, 70, 0.02);
  }
  
  .svln-group-icon {
    font-size: 1.5rem;
  }
  
  .svln-group-header h4 {
    flex: 1;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
  }
  
  .svln-group-toggle {
    font-size: 0.8rem;
    color: var(--gray);
    transition: transform 0.3s;
  }
  
  .svln-group.active .svln-group-toggle {
    transform: rotate(180deg);
  }
  
  .svln-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  
  .svln-group.active .svln-group-content {
    max-height: 3000px;
    padding: 0 2rem 2rem;
  }
  
  /* Grid */
  .svln-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }
  
  /* Item */
  .svln-item {
    display: block;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
    border: 1px solid transparent;
  }
  
  .svln-item:hover {
    background: rgba(230, 57, 70, 0.04);
    border-color: rgba(230, 57, 70, 0.08);
    color: var(--red);
    transform: translateX(5px);
  }
  
  .svln-item::before {
    content: '▸';
    color: var(--red);
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .svln-item:hover::before {
    opacity: 1;
  }
  
  /* Search Highlight */
  .svln-item.highlight {
    background: rgba(230, 57, 70, 0.06);
    border-color: var(--red);
    color: var(--red);
  }
  
  .svln-item.highlight::before {
    opacity: 1;
  }
  
  /* No Results */
  .svln-no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray);
  }
  
  .svln-no-results span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
  }
  
  .svln-no-results h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
  
  /* CTA */
  .svln-cta {
    margin-top: 3rem;
  }
  
  .svln-cta-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.05);
    flex-wrap: wrap;
  }
  
  .svln-cta-icon {
    font-size: 2.5rem;
  }
  
  .svln-cta-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
  
  .svln-cta-content p {
    color: var(--gray);
    font-size: 0.95rem;
  }
  
  .svln-cta-btn {
    margin-left: auto;
    background: var(--red);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }
  
  .svln-cta-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
    gap: 1.2rem;
  }
  
  /* ============================================ */
  /* RESPONSIVE - svln                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .svln-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .svln-title {
      font-size: 2.5rem;
    }
    
    .svln-cta-content {
      flex-direction: column;
      text-align: center;
    }
    
    .svln-cta-btn {
      margin-left: 0;
    }
  }
  
  @media (max-width: 768px) {
    .svln-section {
      padding: 4rem 1.5rem;
    }
    
    .svln-title {
      font-size: 2rem;
    }
    
    .svln-tabs {
      padding: 0.8rem;
      gap: 0.5rem;
    }
    
    .svln-tab {
      padding: 0.6rem 1.2rem;
      font-size: 0.8rem;
    }
    
    .svln-tab-count {
      display: none;
    }
    
    .svln-grid {
      grid-template-columns: 1fr;
    }
    
    .svln-group-header {
      padding: 1rem 1.5rem;
    }
    
    .svln-group.active .svln-group-content {
      padding: 0 1.5rem 1.5rem;
    }
    
    .svln-category-title {
      padding: 1rem 1.5rem;
    }
    
    .svln-category-title h3 {
      font-size: 1.4rem;
    }
    
    .svln-cta-content {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .svln-tab {
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
      gap: 0.4rem;
    }
    
    .svln-tab-icon {
      font-size: 1rem;
    }
    
    .svln-search-box input {
      font-size: 0.9rem;
      padding: 0.8rem 1rem 0.8rem 3rem;
    }
    
    .svln-search-icon {
      left: 1rem;
      font-size: 1rem;
    }
  }




  /* ============================================ */
/* SERVICES LINKS - svln prefix (UPDATED)      */
/* ============================================ */

/* All existing styles remain the same, but ensure the active tab is styled */

.svln-tab.active {
    background: var(--red);
    color: white;
    border-color: var(--red);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
  }
  
  .svln-tab.active .svln-tab-count {
    background: rgba(255, 255, 255, 0.3);
  }
  
  /* Ensure all categories are visible when "All Services" is active */
  .svln-category {
    display: none;
    animation: svlnFadeIn 0.4s ease;
  }
  
  .svln-category.active {
    display: block;
  }
  
  /* When a specific category is active, only show that category */
  .svln-category:not(.active) {
    display: none;
  }
  
  /* But when "All Services" is active, show all categories */
  .svln-tab[data-category="all"].active ~ .svln-content .svln-category {
    display: block;
  }










  /* ============================================ */
/* INDUSTRIES WE SERVE - iws prefix             */
/* ============================================ */

.iws-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
  }
  
  .iws-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Header */
  .iws-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .iws-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .iws-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .iws-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Grid */
  .iws-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  /* Industry Card - 3D Flip */
  .iws-card {
    position: relative;
    height: 280px;
    perspective: 1000px;
    cursor: pointer;
  }
  
  .iws-card-front,
  .iws-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
  
  /* Front */
  .iws-card-front {
    background: white;
    border: 1px solid rgba(230, 57, 70, 0.05);
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    transform: rotateY(0deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  }
  
  .iws-card-front .iws-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
  }
  
  .iws-card-front h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
  }
  
  .iws-card-front p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  
  .iws-card-count {
    background: rgba(230, 57, 70, 0.08);
    color: var(--red);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  /* Card Front Glow */
  .iws-card-front::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  
  .iws-card:hover .iws-card-front::after {
    transform: scaleX(1);
  }
  
  .iws-card:hover .iws-card-front {
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.06);
    border-color: rgba(230, 57, 70, 0.1);
  }
  
  /* Back */
  .iws-card-back {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: white;
    transform: rotateY(180deg);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .iws-card-back-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .iws-card-back-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--red);
  }
  
  .iws-card-back-content ul {
    list-style: none;
    padding: 0;
    flex: 1;
    margin-bottom: 1.5rem;
  }
  
  .iws-card-back-content ul li {
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .iws-card-back-content ul li::before {
    content: '▸';
    color: var(--red);
    font-weight: 700;
  }
  
  .iws-card-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: auto;
  }
  
  .iws-card-btn:hover {
    background: var(--red-dark);
    transform: translateX(5px);
  }
  
  /* Flip on Hover */
  .iws-card:hover .iws-card-front {
    transform: rotateY(-180deg);
  }
  
  .iws-card:hover .iws-card-back {
    transform: rotateY(0deg);
  }
  
  /* Stats */
  .iws-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.04);
    margin-bottom: 4rem;
    text-align: center;
  }
  
  .iws-stat-item {
    text-align: center;
  }
  
  .iws-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.1;
  }
  
  .iws-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Featured Projects */
  .iws-featured {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(230, 57, 70, 0.04);
    margin-bottom: 3rem;
  }
  
  .iws-featured-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .iws-featured-icon {
    font-size: 2rem;
  }
  
  .iws-featured-title h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
  }
  
  .iws-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .iws-featured-item {
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid transparent;
  }
  
  .iws-featured-item:hover {
    border-color: rgba(230, 57, 70, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  }
  
  .iws-featured-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
  }
  
  .iws-featured-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .iws-featured-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
  }
  
  .iws-featured-tags {
    font-size: 0.8rem;
    color: var(--red);
  }
  
  /* CTA */
  .iws-cta {
    margin-top: 1rem;
  }
  
  .iws-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    border-radius: 20px;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .iws-cta-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
  }
  
  .iws-cta-icon {
    font-size: 2.5rem;
  }
  
  .iws-cta-text h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .iws-cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
  }
  
  .iws-cta-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }
  
  .iws-cta-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
    gap: 1.2rem;
  }
  
  /* ============================================ */
  /* RESPONSIVE - iws                             */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .iws-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .iws-featured-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .iws-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .iws-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    
    .iws-cta-content {
      flex-direction: column;
      text-align: center;
    }
    
    .iws-cta-text {
      flex-direction: column;
      text-align: center;
    }
    
    .iws-cta-btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .iws-section {
      padding: 4rem 1.5rem;
    }
    
    .iws-title {
      font-size: 2rem;
    }
    
    .iws-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .iws-card {
      height: 260px;
    }
    
    .iws-card-front h3 {
      font-size: 1.4rem;
    }
    
    .iws-featured-grid {
      grid-template-columns: 1fr;
    }
    
    .iws-featured {
      padding: 1.5rem;
    }
    
    .iws-cta-content {
      padding: 1.5rem;
    }
    
    .iws-stat-number {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .iws-card {
      height: 240px;
    }
    
    .iws-card-front {
      padding: 1.5rem;
    }
    
    .iws-card-front .iws-card-icon {
      font-size: 2.5rem;
      margin-bottom: 0.8rem;
    }
    
    .iws-card-front h3 {
      font-size: 1.2rem;
    }
    
    .iws-stat-item {
      flex: 1 1 50%;
    }
    
    .iws-stats {
      grid-template-columns: repeat(2, 1fr);
      padding: 1.5rem;
      gap: 1rem;
    }
    
    .iws-stat-number {
      font-size: 1.8rem;
    }
  }







  /* ============================================ */
/* SERVICE PROCESS - svpr prefix                */
/* ============================================ */

.svpr-section {
    padding: 6rem 2rem;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .svpr-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  /* Background decoration */
  .svpr-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .svpr-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  
  /* Header */
  .svpr-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .svpr-tag {
    color: var(--red);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .svpr-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
  
  .svpr-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  /* Process Flow */
  .svpr-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .svpr-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
  }
  
  .svpr-step:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.08);
  }
  
  .svpr-step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    opacity: 0.3;
    line-height: 1;
  }
  
  .svpr-step-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: block;
  }
  
  .svpr-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: white;
  }
  
  .svpr-step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
  }
  
  .svpr-step-details {
    list-style: none;
    margin-bottom: 1.5rem;
  }
  
  .svpr-step-details li {
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .svpr-step-details li::before {
    content: '▸';
    color: var(--red);
    font-weight: 700;
  }
  
  .svpr-step-tag {
    display: inline-block;
    background: rgba(230, 57, 70, 0.15);
    color: var(--red);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  /* Timeline Visual */
  .svpr-timeline {
    padding: 2rem 0 3rem;
    overflow: hidden;
  }
  
  .svpr-timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .svpr-timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
  }
  
  .svpr-timeline-track::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: var(--red);
    transform: translateY(-50%);
    width: calc(16.66% * 1);
    animation: svprProgress 8s ease-in-out infinite;
  }
  
  @keyframes svprProgress {
    0%, 100% { width: calc(16.66% * 1); }
    16.66% { width: calc(16.66% * 2); }
    33.33% { width: calc(16.66% * 3); }
    50% { width: calc(16.66% * 4); }
    66.66% { width: calc(16.66% * 5); }
    83.33% { width: calc(16.66% * 6); }
  }
  
  .svpr-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
    cursor: pointer;
  }
  
  .svpr-timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
  }
  
  .svpr-timeline-dot.active {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
  }
  
  .svpr-timeline-item:hover .svpr-timeline-dot {
    transform: scale(1.2);
    border-color: var(--red);
  }
  
  .svpr-timeline-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .svpr-timeline-item:hover .svpr-timeline-label {
    color: var(--red);
  }
  
  /* Stats */
  .svpr-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
  }
  
  .svpr-stat-item {
    text-align: center;
  }
  
  .svpr-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.2;
  }
  
  .svpr-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* CTA */
  .svpr-cta {
    margin-top: 1rem;
  }
  
  .svpr-cta-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
  }
  
  .svpr-cta-icon {
    font-size: 2.5rem;
  }
  
  .svpr-cta-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
  
  .svpr-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
  }
  
  .svpr-cta-btn {
    margin-left: auto;
    background: var(--red);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }
  
  .svpr-cta-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
    gap: 1.2rem;
  }
  
  /* ============================================ */
  /* RESPONSIVE - svpr                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .svpr-flow {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .svpr-title {
      font-size: 2.8rem;
    }
  }
  
  @media (max-width: 992px) {
    .svpr-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .svpr-cta-content {
      flex-direction: column;
      text-align: center;
    }
    
    .svpr-cta-btn {
      margin-left: 0;
    }
  }
  
  @media (max-width: 768px) {
    .svpr-section {
      padding: 4rem 1.5rem;
    }
    
    .svpr-title {
      font-size: 2.2rem;
    }
    
    .svpr-subtitle {
      font-size: 1rem;
    }
    
    .svpr-flow {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .svpr-step {
      padding: 2rem 1.5rem 1.5rem;
    }
    
    .svpr-step-number {
      font-size: 1.5rem;
      top: 1rem;
      right: 1rem;
    }
    
    .svpr-step-icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }
    
    .svpr-timeline-track {
      overflow-x: auto;
      padding: 0 1rem;
      gap: 1rem;
    }
    
    .svpr-timeline-track::before,
    .svpr-timeline-track::after {
      display: none;
    }
    
    .svpr-timeline-item {
      flex: 0 0 auto;
    }
    
    .svpr-stats {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      padding: 2rem 0;
    }
    
    .svpr-stat-number {
      font-size: 2rem;
    }
    
    .svpr-cta-content {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .svpr-title {
      font-size: 1.8rem;
    }
    
    .svpr-tag {
      font-size: 0.7rem;
    }
    
    .svpr-stats {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .svpr-step-details li {
      font-size: 0.85rem;
    }
  }











  /* ============================================ */
/* WHY CHOOSE OUR SERVICES - wcos prefix        */
/* ============================================ */

.wcos-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .wcos-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Background decoration */
  .wcos-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  
  /* Header */
  .wcos-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .wcos-tag {
    color: var(--red);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .wcos-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
  }
  
  .wcos-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  /* Grid */
  .wcos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  
  /* Cards */
  .wcos-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
  }
  
  .wcos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  
  .wcos-card:hover::before {
    transform: scaleX(1);
  }
  
  .wcos-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.08);
    border-color: rgba(230, 57, 70, 0.1);
  }
  
  .wcos-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
  }
  
  .wcos-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }
  
  .wcos-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  
  .wcos-card-badge {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .wcos-card-badge span {
    background: rgba(230, 57, 70, 0.06);
    color: var(--red);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  
  /* Stats */
  .wcos-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(230, 57, 70, 0.06);
    border-bottom: 1px solid rgba(230, 57, 70, 0.06);
    margin-bottom: 3rem;
  }
  
  .wcos-stat-item {
    text-align: center;
  }
  
  .wcos-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.2;
  }
  
  .wcos-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Highlights - Compact Badges */
  .wcos-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.5rem;
    padding: 2rem 0 3rem;
  }
  
  .wcos-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    border: 1px solid rgba(230, 57, 70, 0.06);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  }
  
  .wcos-highlight:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.08);
  }
  
  .wcos-highlight-icon {
    color: var(--red);
    font-weight: 700;
  }
  
  /* CTA */
  .wcos-cta {
    margin-top: 1rem;
  }
  
  .wcos-cta-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.05);
    flex-wrap: wrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  }
  
  .wcos-cta-icon {
    font-size: 2.5rem;
  }
  
  .wcos-cta-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
  }
  
  .wcos-cta-content p {
    color: var(--gray);
    font-size: 0.95rem;
  }
  
  .wcos-cta-btn {
    margin-left: auto;
    background: var(--red);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }
  
  .wcos-cta-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
    gap: 1.2rem;
  }
  
  /* ============================================ */
  /* RESPONSIVE - wcos                            */
  /* ============================================ */
  
  @media (max-width: 1400px) {
    .wcos-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 1100px) {
    .wcos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .wcos-stats {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .wcos-section {
      padding: 4rem 1.5rem;
    }
    
    .wcos-title {
      font-size: 2.5rem;
    }
    
    .wcos-subtitle {
      font-size: 1rem;
    }
    
    .wcos-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .wcos-card {
      padding: 1.5rem;
    }
    
    .wcos-card h3 {
      font-size: 1.1rem;
    }
    
    .wcos-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      padding: 2rem 0;
    }
    
    .wcos-stat-number {
      font-size: 2rem;
    }
    
    .wcos-stat-label {
      font-size: 0.8rem;
    }
    
    .wcos-highlights {
      gap: 0.5rem;
    }
    
    .wcos-highlight {
      font-size: 0.75rem;
      padding: 0.4rem 1rem;
    }
    
    .wcos-cta-content {
      flex-direction: column;
      text-align: center;
      padding: 1.5rem;
    }
    
    .wcos-cta-btn {
      margin-left: 0;
    }
  }
  
  @media (max-width: 480px) {
    .wcos-title {
      font-size: 2rem;
    }
    
    .wcos-tag {
      font-size: 0.7rem;
    }
    
    .wcos-stats {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    
    .wcos-stat-number {
      font-size: 1.5rem;
    }
    
    .wcos-cta-content h4 {
      font-size: 1.1rem;
    }
  }















  