      .page-hero {
          min-height: 30vh;
          position: relative;
          display: flex;
          align-items: center;
          padding: var(--spacing-3xl) 0;
          margin-top: 80px;
      }

      .page-hero-content {
          text-align: center;
          position: relative;
          z-index: 2;
      }

      .page-title {
          font-size: clamp(2.5rem, 5vw, 4rem);
          font-weight: 700;
          line-height: 1.1;
          margin-bottom: var(--spacing-lg);
      }

      .page-subtitle {
          font-size: clamp(1rem, 2vw, 1.2rem);
          color: var(--text-secondary);
          max-width: 700px;
          margin: 0 auto;
      }

      [data-animate] {
          opacity: 100%;
          transform: translateY(50px);
      }

/* ========================================
   SERVICES OVERVIEW DETAILED -
======================================== */
      .services-overview-detailed {
          padding: var(--spacing-3xl) 0;
          background: var(--bg-secondary);
          position: relative;
          overflow: hidden;
      }

      .services-overview-detailed::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background:
              radial-gradient(circle at 15% 25%, rgba(193, 0, 1, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 85% 75%, rgba(0, 212, 255, 0.02) 0%, transparent 50%),
              linear-gradient(45deg, transparent 0%, rgba(193, 0, 1, 0.005) 50%, transparent 100%);
          animation: servicesBg 30s ease-in-out infinite;
          pointer-events: none;
      }

      @keyframes servicesBg {

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

          50% {
              opacity: 0.8;
              transform: scale(1.05);
          }
      }

      .services-grid-detailed {
          display: flex;
          flex-wrap: wrap;
          gap: var(--spacing-xl);
          margin-top: var(--spacing-3xl);
          position: relative;
          max-width: 1400px;
          margin-left: auto;
          margin-right: auto;
          justify-content: center;
      }

      .service-card-detailed {
          flex: 0 1 calc(33.333% - var(--spacing-xl));
          min-width: 300px;
          background: var(--bg-card);
          border-radius: var(--radius-xl);
          padding: var(--spacing-xl);
          border: 2px solid rgba(193, 0, 1, 0.1);
          backdrop-filter: blur(15px);
          transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          overflow: hidden;
          display: flex;
          flex-direction: column;
          cursor: pointer;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }

      .service-card-detailed:nth-last-child(-n+2):nth-child(3n+1) {
          margin-left: calc((100% - (2 * (33.333% - var(--spacing-xl))) - var(--spacing-xl)) / 2);
      }

      .service-card-detailed:nth-last-child(1):nth-child(3n+2) {
          margin-right: calc((100% - (2 * (33.333% - var(--spacing-xl))) - var(--spacing-xl)) / 2);
      }

      .service-card-detailed::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg,
                  transparent,
                  rgba(193, 0, 1, 0.05),
                  rgba(193, 0, 1, 0.08),
                  transparent);
          transition: left 0.8s ease;
          z-index: 1;
      }

      .service-card-detailed::after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          border-radius: var(--radius-xl);
          padding: 2px;
          background: linear-gradient(45deg,
                  transparent 0%,
                  var(--primary-red) 25%,
                  var(--accent-blue) 50%,
                  var(--primary-red) 75%,
                  transparent 100%);
          background-size: 200% 200%;
          -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          -webkit-mask-composite: exclude;
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask-composite: exclude;
          opacity: 0;
          animation: borderShift 3s linear infinite;
          transition: opacity 0.4s ease;
      }

      @keyframes borderShift {
          0% {
              background-position: 0% 50%;
          }

          50% {
              background-position: 100% 50%;
          }

          100% {
              background-position: 0% 50%;
          }
      }

      .service-card-detailed:hover::before {
          left: 100%;
      }

      .service-card-detailed:hover::after {
          opacity: 1;
      }

      .service-card-detailed:hover {
          transform: translateY(-12px) scale(1.02);
          border-color: rgba(193, 0, 1, 0.3);
          box-shadow:
              0 25px 50px rgba(193, 0, 1, 0.2),
              0 0 40px rgba(193, 0, 1, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
      }

      .service-icon-large {
          width: 65px;
          height: 65px;
          background: var(--gradient-1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: var(--spacing-md);
          color: white;
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          box-shadow:
              0 6px 18px rgba(193, 0, 1, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
          position: relative;
          z-index: 2;
          overflow: hidden;
          flex-shrink: 0;
      }

      .service-icon-large::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 200%;
          height: 200%;
          background: conic-gradient(from 0deg,
                  transparent,
                  rgba(255, 255, 255, 0.3),
                  transparent);
          transform: translate(-50%, -50%) rotate(0deg);
          opacity: 0;
          transition: all 0.4s ease;
      }

      .service-card-detailed:hover .service-icon-large {
          transform: scale(1.15) rotate(8deg);
          box-shadow:
              0 10px 25px rgba(193, 0, 1, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
      }

      .service-card-detailed:hover .service-icon-large::before {
          opacity: 1;
          animation: iconSpinGlow 2s linear infinite;
      }

      @keyframes iconSpinGlow {
          from {
              transform: translate(-50%, -50%) rotate(0deg);
          }

          to {
              transform: translate(-50%, -50%) rotate(360deg);
          }
      }

      .service-icon-large svg {
          width: 32px;
          height: 32px;
          z-index: 1;
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
      }

      .service-content {
          flex-grow: 1;
          display: flex;
          flex-direction: column;
          position: relative;
          z-index: 2;
      }

      .service-content h3 {
          font-size: 1.25rem;
          margin-bottom: var(--spacing-md);
          color: var(--text-primary);
          font-weight: 600;
          line-height: 1.3;
          transition: color 0.3s ease;
      }

      .service-card-detailed:hover .service-content h3 {
          color: var(--primary-red);
      }

      .service-content p {
          color: var(--text-secondary);
          margin-bottom: var(--spacing-md);
          line-height: 1.6;
          font-size: 0.95rem;
          transition: color 0.3s ease;
      }

      .service-card-detailed:hover .service-content p {
          color: var(--text-primary);
      }

      .service-content p:last-of-type {
          margin-bottom: var(--spacing-md);
          flex-grow: 1;
      }

      .service-levels {
          list-style: none;
          padding: 0;
          margin: 0 0 var(--spacing-md) 0;
          flex-grow: 1;
      }

      .service-levels li {
          color: var(--text-secondary);
          font-size: 0.95rem;
          line-height: 1.6;
          margin-bottom: 6px;
          padding-left: var(--spacing-md);
          position: relative;
          transition: color 0.3s ease;
      }

      .service-levels li::before {
          content: '•';
          position: absolute;
          left: 0;
          color: var(--primary-red);
          font-weight: bold;
      }

      .service-card-detailed:hover .service-levels li {
          color: var(--text-primary);
      }

      .service-levels li strong {
          color: var(--text-primary);
          font-weight: 600;
      }

      .service-features {
          display: flex;
          flex-wrap: wrap;
          gap: 6px;
          margin-top: auto;
      }

      .feature-tag {
          background: rgba(193, 0, 1, 0.08);
          color: var(--primary-red);
          padding: 5px 10px;
          border-radius: var(--radius-full);
          font-size: 0.75rem;
          font-weight: 500;
          border: 1px solid rgba(193, 0, 1, 0.2);
          transition: all 0.3s ease;
          backdrop-filter: blur(5px);
      }

      .service-card-detailed:hover .feature-tag {
          background: rgba(193, 0, 1, 0.15);
          border-color: var(--primary-red);
          transform: translateY(-1px);
          box-shadow: 0 2px 8px rgba(193, 0, 1, 0.2);
      }

      @media (max-width: 1400px) {
          .service-card-detailed {
              flex: 0 1 calc(33.333% - var(--spacing-xl));
          }
      }

      @media (max-width: 1024px) {
          .services-grid-detailed {
              gap: var(--spacing-lg);
          }

          .service-card-detailed {
              flex: 0 1 calc(50% - var(--spacing-lg));
              min-width: 280px;
              padding: var(--spacing-lg);
          }

          .service-card-detailed:nth-last-child(-n+2):nth-child(3n+1),
          .service-card-detailed:nth-last-child(1):nth-child(3n+2) {
              margin-left: 0;
              margin-right: 0;
          }
      }

      @media (max-width: 768px) {
          .services-grid-detailed {
              gap: var(--spacing-lg);
          }

          .service-card-detailed {
              flex: 0 1 100%;
              min-width: unset;
              padding: var(--spacing-lg);
          }

          .service-card-detailed:nth-last-child(-n+2):nth-child(3n+1),
          .service-card-detailed:nth-last-child(1):nth-child(3n+2) {
              margin-left: 0;
              margin-right: 0;
          }

          .service-icon-large {
              width: 55px;
              height: 55px;
          }

          .service-icon-large svg {
              width: 28px;
              height: 28px;
          }

          .service-content h3 {
              font-size: 1.15rem;
          }

          .service-content p,
          .service-levels li {
              font-size: 0.9rem;
          }

          .feature-tag {
              font-size: 0.75rem;
              padding: 4px 8px;
          }
      }

      @media (max-width: 480px) {
          .service-card-detailed {
              padding: var(--spacing-md);
          }

          .service-icon-large {
              width: 50px;
              height: 50px;
          }

          .service-content h3 {
              font-size: 1.05rem;
              margin-bottom: var(--spacing-sm);
          }

          .service-features {
              gap: 4px;
          }

          .feature-tag {
              font-size: 0.7rem;
              padding: 3px 6px;
          }
      }

      .service-card-detailed:nth-child(1) {
          animation-delay: 0.1s;
      }

      .service-card-detailed:nth-child(2) {
          animation-delay: 0.15s;
      }

      .service-card-detailed:nth-child(3) {
          animation-delay: 0.2s;
      }

      .service-card-detailed:nth-child(4) {
          animation-delay: 0.25s;
      }

      .service-card-detailed:nth-child(5) {
          animation-delay: 0.3s;
      }

      .service-card-detailed:nth-child(6) {
          animation-delay: 0.35s;
      }

      .service-card-detailed:nth-child(7) {
          animation-delay: 0.4s;
      }

      .service-card-detailed:nth-child(8) {
          animation-delay: 0.45s;
      }

      @keyframes cardFadeIn {
          from {
              opacity: 0;
              transform: translateY(30px);
          }

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

      .service-card-detailed {
          animation: cardFadeIn 0.8s ease forwards;
          opacity: 0;
      }

      .services-grid-detailed {
          transform: translateY(50px);
          transition: all 0.8s ease;
      }

      .services-grid-detailed.revealed {
          opacity: 1;
          transform: translateY(0);
      }
/* ========================================
   SERVICE CATEGORIES SECTION - LIGHT THEME
======================================== */
      .service-categories {
          padding: var(--spacing-3xl) 0;
          background: var(--bg-dark);
          position: relative;
          overflow: hidden;
      }

      .service-categories::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background:
              radial-gradient(circle at 30% 20%, rgba(193, 0, 1, 0.03) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.02) 0%, transparent 60%),
              linear-gradient(135deg, transparent 0%, rgba(193, 0, 1, 0.01) 50%, transparent 100%);
          animation: categoriesBg 25s ease-in-out infinite;
          pointer-events: none;
      }

      @keyframes categoriesBg {

          0%,
          100% {
              transform: scale(1) rotate(0deg);
              opacity: 1;
          }

          50% {
              transform: scale(1.1) rotate(2deg);
              opacity: 0.8;
          }
      }

      .categories-content {
          display: flex;
          flex-direction: column;
          gap: var(--spacing-xl);
          margin-top: var(--spacing-3xl);
          position: relative;
      }

      .categories-tabs {
          display: flex;
          flex-direction: row;
          gap: var(--spacing-md);
          justify-content: center;
          flex-wrap: wrap;
          position: relative;
      }

      .tab-button {
          background: var(--bg-card);
          border: 2px solid rgba(193, 0, 1, 0.1);
          border-radius: var(--radius-lg);
          padding: var(--spacing-lg) var(--spacing-xl);
          display: flex;
          align-items: center;
          gap: var(--spacing-md);
          color: var(--text-secondary);
          cursor: pointer;
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          text-align: center;
          backdrop-filter: blur(10px);
          position: relative;
          overflow: hidden;
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
          flex: 0 1 auto;
      }

      .tab-button::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg,
                  transparent,
                  rgba(193, 0, 1, 0.05),
                  transparent);
          transition: left 0.6s ease;
      }

      .tab-button::after {
          content: '';
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          height: 4px;
          background: var(--gradient-1);
          border-radius: 4px 4px 0 0;
          opacity: 0;
          transition: opacity 0.3s ease;
      }

      .tab-button:hover::before {
          left: 100%;
      }

      .tab-button:hover,
      .tab-button.active {
          background: var(--gradient-1);
          color: white;
          border-color: var(--primary-red);
          transform: translateY(-8px);
          box-shadow:
              0 12px 25px rgba(193, 0, 1, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }

      .tab-button.active::after {
          opacity: 1;
      }

      .tab-icon {
          width: 28px;
          height: 28px;
          flex-shrink: 0;
          position: relative;
          transition: all 0.3s ease;
      }

      .tab-icon svg {
          width: 100%;
          height: 100%;
          transition: all 0.3s ease;
          filter: drop-shadow(0 2px 4px rgba(193, 0, 1, 0.2));
      }

      .tab-button:hover .tab-icon,
      .tab-button.active .tab-icon {
          transform: scale(1.1);
      }

      .tab-button:hover .tab-icon svg,
      .tab-button.active .tab-icon svg {
          filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.4));
      }

      .tab-button span {
          font-weight: 600;
          font-size: 1rem;
          transition: all 0.3s ease;
      }

      .tab-button:hover span,
      .tab-button.active span {
          text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
      }

      .tab-content-area {
          background: var(--bg-card);
          border-radius: var(--radius-xl);
          padding: var(--spacing-2xl);
          border: 2px solid rgba(193, 0, 1, 0.1);
          backdrop-filter: blur(20px);
          min-height: 400px;
          position: relative;
          overflow: hidden;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }

      .tab-content-area::before {
          content: '';
          position: absolute;
          top: -50%;
          right: -50%;
          width: 200%;
          height: 200%;
          background: conic-gradient(from 45deg at center,
                  transparent 0deg,
                  rgba(193, 0, 1, 0.015) 90deg,
                  transparent 180deg,
                  rgba(0, 212, 255, 0.01) 270deg,
                  transparent 360deg);
          animation: contentRotate 20s linear infinite;
          pointer-events: none;
      }

      @keyframes contentRotate {
          from {
              transform: rotate(0deg);
          }

          to {
              transform: rotate(360deg);
          }
      }

      .tab-content {
          display: none;
          gap: var(--spacing-2xl);
          align-items: flex-start;
          position: relative;
          z-index: 1;
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.5s ease;
      }

      .tab-content.active {
          display: block;
          opacity: 1;
          transform: translateY(0);
      }

      .tab-features {
          display: flex;
          flex-direction: column;
          gap: var(--spacing-xl);
      }

      .feature-item {
          padding: var(--spacing-lg);
          background: var(--bg-card);
          border-radius: var(--radius-lg);
          border-left: 4px solid var(--primary-red);
          border: 2px solid rgba(193, 0, 1, 0.1);
          border-left: 4px solid var(--primary-red);
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          overflow: hidden;
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
      }

      .feature-item::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(135deg,
                  rgba(193, 0, 1, 0.02) 0%,
                  transparent 50%);
          opacity: 0;
          transition: opacity 0.3s ease;
          pointer-events: none;
      }

      .feature-item:hover {
          background: var(--bg-card);
          border-color: rgba(193, 0, 1, 0.2);
          border-left-color: var(--accent-blue);
          transform: translateX(10px);
          box-shadow: 0 8px 25px rgba(193, 0, 1, 0.12);
      }

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

      .feature-item h4 {
          color: var(--text-primary);
          margin-bottom: var(--spacing-sm);
          font-size: 1.3rem;
          font-weight: 600;
          transition: color 0.3s ease;
          position: relative;
      }

      .feature-item h4::after {
          content: '';
          position: absolute;
          bottom: -4px;
          left: 0;
          width: 0;
          height: 2px;
          background: var(--gradient-1);
          transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .feature-item:hover h4 {
          color: var(--primary-red);
      }

      .feature-item:hover h4::after {
          width: 50%;
      }

      .feature-item p {
          color: var(--text-secondary);
          line-height: 1.7;
          transition: color 0.3s ease;
      }

      .feature-item:hover p {
          color: var(--text-primary);
      }

      .service-carousel-section {
          padding: var(--spacing-3xl) 0;
          background: var(--bg-secondary);
      }

      .service-carousel {
          position: relative;
          overflow: hidden;
          border-radius: var(--radius-xl);
          margin-top: var(--spacing-3xl);
      }

      .carousel-track {
          display: flex;
          transition: transform 0.5s ease;
      }

      .carousel-slide {
          min-width: 100%;
          padding: var(--spacing-xl);
      }

      .carousel-item {
          background: var(--bg-card);
          border-radius: var(--radius-lg);
          overflow: hidden;
          border: 2px solid rgba(193, 0, 1, 0.1);
          transition: all var(--transition-normal);
          text-align: center;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }

      .carousel-item:hover {
          transform: translateY(-5px);
          border-color: var(--primary-red);
          box-shadow: 0 12px 30px rgba(193, 0, 1, 0.15);
      }

      .carousel-item img {
          width: 100%;
          height: 250px;
          object-fit: cover;
      }

      .carousel-info {
          padding: var(--spacing-lg);
      }

      .carousel-info h4 {
          color: var(--text-primary);
          margin-bottom: var(--spacing-sm);
          font-size: 1.3rem;
      }

      .carousel-info p {
          color: var(--text-secondary);
          line-height: 1.6;
      }

      .carousel-controls {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 100%;
          display: flex;
          justify-content: space-between;
          padding: 0 var(--spacing-lg);
          pointer-events: none;
      }

      .carousel-btn {
          background: rgba(193, 0, 1, 0.9);
          color: white;
          border: none;
          width: 50px;
          height: 50px;
          border-radius: 50%;
          cursor: pointer;
          font-size: 1.5rem;
          transition: all var(--transition-normal);
          pointer-events: all;
          box-shadow: 0 4px 12px rgba(193, 0, 1, 0.3);
      }

      .carousel-btn:hover {
          background: var(--primary-red);
          transform: scale(1.1);
          box-shadow: 0 6px 20px rgba(193, 0, 1, 0.5);
      }

      .carousel-indicators {
          display: flex;
          justify-content: center;
          gap: var(--spacing-sm);
          margin-top: var(--spacing-lg);
      }

      .indicator {
          width: 12px;
          height: 12px;
          border-radius: 50%;
          border: none;
          background: rgba(193, 0, 1, 0.2);
          cursor: pointer;
          transition: all var(--transition-normal);
      }

      .indicator.active,
      .indicator:hover {
          background: var(--primary-red);
          transform: scale(1.2);
          box-shadow: 0 2px 8px rgba(193, 0, 1, 0.3);
      }

      @media (max-width: 1024px) {
          .categories-content {
              gap: var(--spacing-lg);
          }

          .tab-content {
              grid-template-columns: 1fr;
              gap: var(--spacing-lg);
          }

          .tab-visual {
              order: -1;
          }
      }

      @media (max-width: 768px) {
          .services-grid-detailed {
              grid-template-columns: 1fr;
          }

          .categories-content {
              gap: var(--spacing-lg);
          }

          .categories-tabs {
              justify-content: flex-start;
              overflow-x: auto;
              padding-bottom: var(--spacing-sm);
              gap: var(--spacing-sm);
              flex-wrap: nowrap;
          }

          .tab-button {
              flex-shrink: 0;
              min-width: 150px;
              padding: var(--spacing-md) var(--spacing-lg);
          }

          .tab-button:hover,
          .tab-button.active {
              transform: translateY(-5px);
          }

          .showcase-item,
          .showcase-item.reverse {
              grid-template-columns: 1fr;
              gap: var(--spacing-xl);
          }

          .showcase-item.reverse .showcase-content,
          .showcase-item.reverse .showcase-visual {
              order: unset;
          }
      }

      @media (max-width: 480px) {
          .service-card-detailed {
              padding: var(--spacing-lg);
          }

          .service-features {
              flex-direction: column;
          }

          .feature-tag {
              text-align: center;
          }

          .carousel-btn {
              width: 40px;
              height: 40px;
              font-size: 1.2rem;
          }

          .tab-button {
              min-width: 140px;
              padding: var(--spacing-sm) var(--spacing-md);
              gap: var(--spacing-sm);
          }

          .tab-icon {
              width: 22px;
              height: 22px;
          }

          .tab-button span {
              font-size: 0.9rem;
          }

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

          .feature-item h4 {
              font-size: 1.1rem;
          }
      }

      .feature-item:nth-child(1) {
          animation-delay: 0.1s;
      }

      .feature-item:nth-child(2) {
          animation-delay: 0.2s;
      }

      .feature-item:nth-child(3) {
          animation-delay: 0.3s;
      }

      @keyframes featureSlideIn {
          from {
              opacity: 0;
              transform: translateX(-30px);
          }

          to {
              opacity: 1;
              transform: translateX(0);
          }
      }

      .feature-item {
          animation: featureSlideIn 0.6s ease forwards;
          opacity: 0;
      }