    /* Enhanced Homepage - Distinctive Design with Original Colors */

    /* Color palette: Navy primary with sophisticated teal accent (ORIGINAL) */
    :root {
      --primary-navy: #1a2a47;
      --accent-teal: #4a7c9e;
      --light-teal: #6ba3c3;
      --light-bg: #f8f9fa;
      --white: #ffffff;
      --gray-100: #e9ecef;
      --gray-700: #495057;
      --gray-900: #212529;
    }

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

    body {
      font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: var(--gray-900);
    }

    /* Subtle grain texture for depth */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.02;
      z-index: 9999;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
    }

    /* Language Flag Selector */
    .navbar-choose-language {
      display: flex;
      align-items: center;
      margin-left: auto;
    }

    .navbar-choose-language__item + .navbar-choose-language__item {
      margin-left: 1rem; /* 16px gap between flags */
    }

    .navbar-choose-language__item {
      display: block;
      width: 32px;
      height: 32px;
      border-radius: 4px;
      overflow: hidden;
      border: 2px solid transparent;
    }

    .navbar-choose-language__item img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Hamburger Menu Button */
    .navbar-hamburger {
      background: none;
      border: none;
      padding: 8px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-left: 20px;
      transition: all 0.3s ease;
    }

    .navbar-hamburger:hover {
      opacity: 0.7;
    }

    .hamburger-line {
      width: 28px;
      height: 3px;
      background: var(--primary-navy);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .navbar-hamburger.active .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .navbar-hamburger.active .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .navbar-hamburger.active .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Menu Overlay */
    .navbar-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 9998;
    }

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

    /* Sidebar Menu */
    .navbar-menu-sidebar {
      position: fixed;
      top: 0;
      right: -400px;
      width: 400px;
      max-width: 85vw;
      height: 100%;
      background: white;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
      transition: right 0.3s ease;
      z-index: 9999;
      overflow-y: auto;
    }

    .navbar-menu-sidebar.active {
      right: 0;
    }

    /* Menu Header */
    .navbar-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 28px;
      border-bottom: 3px solid var(--accent-teal);
      background: var(--primary-navy);
    }

    .navbar-menu-header h3 {
      color: white;
      margin: 0;
      font-size: 1.5rem;
      font-family: 'IBM Plex Mono', monospace;
      font-weight: 600;
    }

    .navbar-menu-close {
      background: none;
      border: none;
      color: white;
      font-size: 2.5rem;
      line-height: 1;
      cursor: pointer;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .navbar-menu-close:hover {
      color: var(--accent-teal);
    }

    /* Menu Navigation */
    .navbar-menu-nav {
      padding: 20px 0;
    }

    .navbar-menu-link {
      display: block;
      padding: 16px 28px;
      color: var(--gray-900);
      text-decoration: none;
      font-size: 1.0625rem;
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 500;
      transition: all 0.2s ease;
      border-left: 4px solid transparent;
    }

    .navbar-menu-link:hover {
      background: var(--light-bg);
      color: var(--accent-teal);
      border-left-color: var(--accent-teal);
    }

    .navbar-menu-section {
      margin: 20px 0;
      border-top: 1px solid var(--gray-100);
      padding-top: 12px;
    }

    .navbar-menu-title {
      padding: 12px 28px;
      color: var(--primary-navy);
      font-family: 'IBM Plex Mono', monospace;
      font-weight: 700;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .navbar-menu-link--sub {
      padding-left: 48px;
      font-size: 1rem;
      font-weight: 400;
    }

    .navbar-menu-link--sub:hover {
      padding-left: 52px;
    }

    /* Intro Section - Blue Masthead Style */
    .intro-section {
      background: linear-gradient(135deg, var(--primary-navy) 0%, #0f3460 100%);
      padding: 70px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-top: 3px solid var(--accent-teal);
    }

    .intro-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/temp/datacenter.jpg') center/cover;
      opacity: 0.06;
      z-index: 1;
    }

    /* Geometric grid overlay */
    .intro-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(74, 124, 158, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 124, 158, 0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      opacity: 0.3;
      z-index: 1;
    }

    .intro-content {
      max-width: 840px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 2;
    }

    .intro-content h1 {
      font-size: clamp(2rem, 5vw, 2.75rem);
      color: white;
      margin-bottom: 24px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .intro-content p {
      font-size: clamp(1.125rem, 2.5vw, 1.375rem);
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.7;
      margin: 0;
    }

    .inline-flag {
      height: 1.2em;
      width: auto;
      vertical-align: middle;
      display: inline-block;
      margin: 0 2px;
    }

    @media (max-width: 767px) {
      .navbar-choose-language__item {
        width: 28px;
        height: 28px;
      }

      .intro-section {
        padding: 56px 0;
      }

      .intro-content {
        padding: 0 24px;
      }

      .intro-content h1 {
        font-size: 1.75rem;
        margin-bottom: 20px;
      }

      .intro-content p {
        font-size: 1.1rem;
      }
    }

    /* Hero - Compact height with centered content */
    .hero {
      min-height: 380px !important;
      padding: 0 !important;
      background: linear-gradient(135deg, var(--primary-navy) 0%, #0f3460 100%) !important;
      position: relative;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/temp/datacenter.jpg') center/cover;
      opacity: 0.12;
      z-index: 1;
    }

    .minimal-value-prop {
      position: relative;
      z-index: 2;
      text-align: center;
      width: 100%;
    }

    /* Trust badges carousel - morphing animation */
    .trust-badges {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 80px;
      position: relative;
    }

    .trust-badge {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      padding: 20px 40px;
      border-radius: 8px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.98);
      font-weight: 600;
      letter-spacing: 0.3px;
      position: absolute;
      opacity: 0;
      transform: scale(0.85);
      transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
      white-space: nowrap;
    }

    .trust-badge.active {
      opacity: 1;
      transform: scale(1);
    }

    .trust-badge.exiting {
      opacity: 0;
      transform: scale(0.85);
    }

    @media (max-width: 767px) {
      .hero {
        min-height: 300px !important;
      }

      .trust-badge {
        padding: 16px 32px;
        font-size: 1.1rem;
      }

      .trust-badges {
        min-height: 60px;
      }
    }

    /* Service boxes - Enhanced Design with Original Colors */
    .filtered-services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      grid-auto-rows: 1fr;
      gap: 28px;
      justify-content: center;
      width: 100%;
      margin-bottom: 24px;
    }

    .service-link-wrapper {
      width: 100%;
      text-decoration: none;
      color: inherit;
    }

    .box {
      display: grid;
      grid-template-columns: 80px 1fr !important;
      grid-gap: 28px !important;
      padding: 40px 36px !important;
      width: 100%;
      height: 100%;
      background: white !important;
      border: 1px solid var(--gray-100) !important;
      border-left: 5px solid var(--accent-teal) !important;
      border-radius: 0 !important;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
      position: relative;
      overflow: hidden;
    }

    /* Subtle gradient overlay on hover */
    .box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(74, 124, 158, 0.02) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .service-link-wrapper:hover .box::before {
      opacity: 1;
    }

    /* Enhanced hover with shadow */
    .service-link-wrapper:hover .box {
      transform: translateY(-8px) translateX(4px) !important;
      box-shadow: 0 16px 40px rgba(74, 124, 158, 0.18) !important;
      border-left-color: var(--primary-navy) !important;
      border-left-width: 6px !important;
    }

    /* Icon with smooth animation */
    .box__icon {
      width: 80px;
      height: 80px;
      color: var(--accent-teal);
      object-fit: contain;
      display: block;
      flex-shrink: 0;
      align-self: start;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      filter: drop-shadow(0 2px 8px rgba(74, 124, 158, 0.15));
    }

    .service-link-wrapper:hover .box__icon {
      transform: rotate(-6deg) scale(1.12);
      color: var(--primary-navy);
      filter: drop-shadow(0 4px 16px rgba(26, 42, 71, 0.25));
    }

    .box__title {
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.3;
      margin-bottom: 12px;
      transition: color 0.3s ease;
    }

    .service-link-wrapper:hover .box__title {
      color: var(--primary-navy);
    }

    .box h5 {
      color: var(--gray-700);
      font-weight: 600;
      font-size: 1.0625rem;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .box p {
      color: var(--gray-700);
      line-height: 1.7;
      font-size: 1rem;
    }

    /* Service boxes - Single column on smaller screens */
    @media (max-width: 1024px) {
      .filtered-services {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* Client logos section - Enhanced */
    .client-logos {
      padding: 96px 0;
      background: white;
      position: relative;
    }

    .client-logos h3 {
      text-align: center;
      font-size: clamp(1.5rem, 3.5vw, 1.875rem);
      color: var(--gray-700);
      margin-bottom: 64px;
      font-weight: 700;
      opacity: 0.6;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      font-size: 1.125rem;
      letter-spacing: 0.08em;
      font-family: 'IBM Plex Mono', monospace;
    }

    .logo-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
      max-width: 1400px;
      margin: 0 auto;
      flex-wrap: nowrap;
    }

    .client-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .client-item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--accent-teal);
      transition: width 0.3s ease;
    }

    .client-item:hover::after {
      width: 80%;
    }

    .client-logo {
      max-width: 195px;
      width: 100%;
      height: auto;
      opacity: 0.6;
      filter: grayscale(100%) brightness(0.3);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .client-item:hover .client-logo {
      opacity: 1;
      filter: grayscale(0%) brightness(1);
      transform: scale(1.08);
    }

    @media (max-width: 1024px) {
      .filtered-services {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
      }

    }

    @media (max-width: 767px) {
      .filtered-services {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .box {
        grid-template-columns: 70px 1fr !important;
        padding: 32px 28px !important;
      }

      .box__icon {
        width: 70px;
        height: 70px;
      }

      .cta-section {
        padding: 72px 0;
      }

      .cta-phone {
        padding: 16px 36px;
        font-size: 1.3rem;
      }

      .history-section {
        padding: 60px 0;
      }

      .history-content {
        padding: 32px 24px;
      }

      .history-content h2 {
        margin-bottom: 32px;
      }

      .client-logos {
        padding: 72px 0;
      }

      .client-logos h3 {
        margin-bottom: 48px;
      }

      .logo-grid {
        flex-wrap: wrap;
        gap: 16px;
      }

      .client-item {
        padding: 16px;
      }

      .client-logo {
        max-width: 140px;
      }
    }

    @media (max-width: 480px) {
      .box {
        padding: 28px 24px !important;
      }

      .history-content {
        padding: 40px 24px;
      }

      .history-text .lead {
        font-size: 1.0625rem;
      }
    }
    
    /* Services section - white background */
    .section {
      background: #ffffff;
      position: relative;
      padding: 60px 0 80px 0;
      margin-bottom: 0;
    }
    
    /* Footer - Professional styling */
    .footer {
      background: var(--primary-navy) !important;
      color: rgba(255, 255, 255, 0.9) !important;
      border-top: 3px solid var(--accent-teal);
    }
    
    .footer h5 {
      color: var(--accent-teal) !important;
      font-weight: 700 !important;
    }
    
    .footer a:hover {
      color: var(--accent-teal) !important;
    }

    /* Footer copyright text - match address color */
    .footer p {
      color: rgba(255, 255, 255, 0.75) !important;
    }

    /* LinkedIn social link in footer */
    .footer__social {
      margin-top: 0;
    }

    .footer__linkedin {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.9375rem;
      transition: all 0.2s ease;
    }

    .footer__linkedin:hover {
      color: var(--accent-teal) !important;
      transform: none;
    }

    .footer__linkedin-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .footer__linkedin:hover .footer__linkedin-icon {
      transform: scale(1.1);
    }

    /* Services section heading - Enhanced */
    .services-heading {
      text-align: center;
      font-size: clamp(2rem, 5vw, 2.75rem);
      color: var(--primary-navy);
      margin-bottom: 48px;
      margin-top: 0;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      position: relative;
      padding-bottom: 24px;
    }

    .services-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--accent-teal);
      border-radius: 2px;
    }

    @media (max-width: 767px) {
      .services-heading {
        margin-bottom: 40px;
        padding-bottom: 20px;
      }

      .services-heading::after {
        width: 60px;
        height: 3px;
      }
    }

    .cta-section {
      background: linear-gradient(135deg, var(--primary-navy) 0%, #0f3460 100%);
      padding: 96px 0;
      position: relative;
      overflow: hidden;
      border-top: 3px solid var(--accent-teal);
      border-bottom: 3px solid var(--accent-teal);
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/temp/datacenter.jpg') center/cover;
      opacity: 0.06;
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 840px;
      margin: 0 auto;
    }

    .cta-subheading {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 16px;
      font-weight: 500;
      letter-spacing: 0.08em;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.9375rem;
    }

    .cta-content h2 {
      font-size: clamp(2rem, 5vw, 2.5rem);
      color: white;
      margin-bottom: 28px;
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    .cta-content p {
      font-size: clamp(1.125rem, 2.5vw, 1.25rem);
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 40px;
      line-height: 1.7;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-phone {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: rgba(74, 124, 158, 0.2);
      backdrop-filter: blur(16px);
      padding: 18px 44px;
      border-radius: 0;
      border: 2px solid var(--accent-teal);
      color: white;
      font-size: 1.5rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-family: 'IBM Plex Mono', monospace;
      letter-spacing: 0.02em;
    }

    .cta-phone:hover {
      background: var(--accent-teal);
      border-color: var(--accent-teal);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(74, 124, 158, 0.4);
      color: white;
    }

    .cta-phone svg {
      width: 26px;
      height: 26px;
      transition: transform 0.3s ease;
    }

    .cta-phone:hover svg {
      transform: scale(1.1);
    }

    @media (max-width: 767px) {
      .cta-section {
        padding: 60px 0;
      }

      .cta-subheading {
        font-size: 0.95rem;
        margin-bottom: 10px;
      }

      .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
      }

      .cta-content p {
        font-size: 1.05rem;
        margin-bottom: 28px;
      }

      .cta-phone {
        padding: 14px 32px;
        font-size: 1.3rem;
      }
    }

    /* About Section - Paper-like Style */
    .history-section {
      background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 80px 0;
      position: relative;
    }

    .history-content {
      background: #f9fafb;
      border-radius: 4px;
      padding: 48px 56px;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      box-shadow:
        0 2px 8px rgba(26, 42, 71, 0.04),
        0 8px 24px rgba(26, 42, 71, 0.03);
      border: 1px solid rgba(26, 42, 71, 0.08);
    }

    .history-content h2 {
      text-align: center;
      font-size: clamp(2rem, 5vw, 2.5rem);
      color: #6c757d;
      margin-top: 0;
      margin-bottom: 32px;
      font-weight: 700;
      padding-bottom: 24px;
      border-bottom: 2px solid #e9ecef;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .history-text .lead {
      font-size: 1.15rem;
      color: #495057;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .history-text .lead:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 767px) {
      .history-section {
        padding: 60px 0;
      }

      .history-section h2 {
        font-size: 2rem;
        margin-bottom: 32px;
      }

      .history-content {
        padding: 32px 24px;
        border-radius: 12px;
      }

      .history-text .lead {
        font-size: 1.05rem;
      }
    }

    /* Intro Carousel Styles */
    .intro-carousel {
      position: relative;
      overflow: hidden;
    }

    .intro-carousel-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .intro-carousel-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .intro-slide {
      flex: 0 0 100%;
      width: 100%;
      flex-shrink: 0;
    }

    .intro-slide .intro-content {
      max-width: 840px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Carousel Navigation Arrows */
    .carousel-navigation {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      z-index: 10;
      pointer-events: none;
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      color: white;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.3);
      opacity: 0;
      transition: all 0.3s ease;
      pointer-events: auto;
      user-select: none;
    }

    .carousel-arrow svg {
      width: 24px;
      height: 24px;
      display: block;
    }

    .carousel-arrow-left {
      left: calc(50% - 470px); /* Center minus half content width (840px/2 + 50px spacing) */
    }

    .carousel-arrow-right {
      right: calc(50% - 470px);
    }

    /* Show arrows on hover */
    .intro-carousel:hover .carousel-arrow {
      opacity: 1;
    }

    .carousel-arrow:hover {
      background: rgba(74, 124, 158, 0.5);
      border-color: var(--accent-teal);
      transform: translateY(-50%) scale(1.1);
    }

    /* Carousel Indicators */
    .intro-carousel-indicators {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .intro-indicator {
      width: 32px;
      height: 4px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .intro-indicator.active {
      background: var(--accent-teal);
      width: 48px;
    }

    .intro-indicator:hover {
      background: rgba(255, 255, 255, 0.5);
    }

    /* Larger EU flag for emphasis */
    .inline-flag-larger {
      height: 1.5em;
    }

    /* EU flag header for carousel slide */
    .eu-flag-header {
      display: block;
      height: 60px;
      width: auto;
      margin: 0 auto 24px auto;
    }

    /* Countdown dots indicator */
    .carousel-countdown {
      position: absolute;
      bottom: 48px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 4px;
      z-index: 10;
      opacity: 0.4;
      transition: opacity 0.3s ease;
    }

    .carousel-countdown.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .countdown-dot {
      width: 6px;
      height: 6px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .countdown-dot.fade-out {
      opacity: 0;
      transform: scale(0.5);
    }

    /* Mobile adjustments for carousel */
    @media (max-width: 767px) {
      .carousel-arrow {
        width: 40px;
        height: 40px;
      }

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

      .carousel-arrow-left {
        left: 8px;
      }

      .carousel-arrow-right {
        right: 8px;
      }

      .intro-carousel-indicators {
        bottom: 16px;
        gap: 8px;
      }

      .intro-indicator {
        width: 24px;
        height: 3px;
      }

      .intro-indicator.active {
        width: 36px;
      }

      .carousel-countdown {
        bottom: 40px;
        gap: 3px;
      }

      .countdown-dot {
        width: 5px;
        height: 5px;
      }
    }
