/* SERVICES SECTION */

/* ============ HERO CAROUSEL ============ */
    .aqua-hero-carousel {
      position: relative;
      width: 100%;
      height: 480px;
      overflow: hidden;
      background: var(--aqua-dark);
    }

    /* Carousel Track */
    .aqua-carousel-track {
      display: flex;
      height: 100%;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Slide Item */
    .aqua-slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .aqua-slide-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 5s ease-out;
    }

    .aqua-slide.active .aqua-slide-bg {
      transform: scale(1.05);
    }

    .aqua-slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg,
          rgba(3, 4, 94, 0.82) 0%,
          rgba(0, 119, 182, 0.65) 50%,
          rgba(0, 180, 216, 0.55) 100%);
    }

    /* Slide Content */
    .aqua-slide-content {
      position: relative;
      z-index: 2;
      max-width: 750px;
      padding: 0 24px;
      text-align: center;
      opacity: 0;
      transform: translateX(50px);
      transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .aqua-slide.active .aqua-slide-content {
      opacity: 1;
      transform: translateX(0);
    }

    .aqua-slide-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 8px 16px;
      border-radius: 50px;
      margin-bottom: 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .aqua-slide-badge i {
      color: #FFD93D;
      font-size: 12px;
    }

    .aqua-slide-badge span {
      color: #fff;
      font-size: 12px;
      font-weight: 500;
    }

    .aqua-slide-title {
      font-family: 'Kanit', sans-serif;
      font-size: clamp(26px, 5vw, 42px);
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 14px;
      text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    }

    .aqua-slide-title span {
      color: #FFD93D;
      text-shadow:
        0 0 8px rgba(255, 217, 61, 0.7),
        0 0 16px rgba(255, 217, 61, 0.5),
        0 3px 12px rgba(0, 0, 0, 0.4);
    }

    .aqua-slide-desc {
      font-size: clamp(14px, 1.8vw, 17px);
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
      margin-bottom: 24px;
      max-width: 550px;
      margin-left: auto;
      margin-right: auto;
    }

    /* CTA Buttons */
    .aqua-slide-cta {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .aqua-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
      color: #fff;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .aqua-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 107, 53, 0.45);
      color: #fff;
    }

    .aqua-btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #fff;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      border: 2px solid rgba(255, 255, 255, 0.4);
      transition: all 0.3s ease;
    }

    .aqua-btn-secondary:hover {
      background: #fff;
      color: #03045E;
      border-color: #fff;
    }

    /* Carousel Controls */
    .aqua-carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .aqua-carousel-nav:hover {
      background: #00B4D8;
      border-color: #00B4D8;
    }

    .aqua-carousel-prev {
      left: 20px;
    }

    .aqua-carousel-next {
      right: 20px;
    }

    /* Dots Indicator */
    .aqua-carousel-dots {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 10px;
    }

    .aqua-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.35);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .aqua-dot.active {
      background: #fff;
      width: 28px;
      border-radius: 10px;
    }

    .aqua-dot:hover:not(.active) {
      background: rgba(255, 255, 255, 0.6);
    }

    /* Progress Bar */
    .aqua-carousel-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      z-index: 10;
    }

    .aqua-progress-bar {
      height: 100%;
      background: linear-gradient(90deg, #90E0EF 0%, #00B4D8 100%);
      width: 0%;
      transition: width 0.05s linear;
    }

    /* Floating Bubbles */
    .aqua-bubbles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 3;
      pointer-events: none;
    }

    .aqua-bubble {
      position: absolute;
      bottom: -50px;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(144, 224, 239, 0.15));
      border-radius: 50%;
      animation: aquaBubbleFloat linear infinite;
      opacity: 0.5;
    }

    .aqua-bubble:nth-child(1) {
      width: 30px;
      height: 30px;
      left: 10%;
      animation-duration: 10s;
    }

    .aqua-bubble:nth-child(2) {
      width: 20px;
      height: 20px;
      left: 30%;
      animation-duration: 8s;
      animation-delay: 1s;
    }

    .aqua-bubble:nth-child(3) {
      width: 35px;
      height: 35px;
      left: 50%;
      animation-duration: 12s;
      animation-delay: 2s;
    }

    .aqua-bubble:nth-child(4) {
      width: 25px;
      height: 25px;
      left: 70%;
      animation-duration: 9s;
      animation-delay: 0.5s;
    }

    .aqua-bubble:nth-child(5) {
      width: 28px;
      height: 28px;
      left: 85%;
      animation-duration: 11s;
      animation-delay: 1.5s;
    }

    @keyframes aquaBubbleFloat {
      0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
      }

      100% {
        transform: translateY(-550px) scale(0.7);
        opacity: 0;
      }
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 991px) {
      .aqua-hero-carousel {
        height: 420px;
      }

      .aqua-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
      }

      .aqua-carousel-prev {
        left: 12px;
      }

      .aqua-carousel-next {
        right: 12px;
      }
    }

    @media (max-width: 767px) {
      .aqua-hero-carousel {
        height: 380px;
      }

      .aqua-slide-content {
        padding: 0 16px;
      }

      .aqua-slide-badge {
        padding: 6px 12px;
        margin-bottom: 12px;
      }

      .aqua-slide-badge span {
        font-size: 11px;
      }

      .aqua-slide-desc {
        margin-bottom: 20px;
      }

      .aqua-btn-primary,
      .aqua-btn-secondary {
        padding: 10px 22px;
        font-size: 13px;
      }

      .aqua-carousel-nav {
        display: none;
      }

      .aqua-carousel-dots {
        bottom: 18px;
        gap: 8px;
      }

      .aqua-dot {
        width: 8px;
        height: 8px;
      }

      .aqua-dot.active {
        width: 22px;
      }
    }

    @media (max-width: 480px) {
      .aqua-hero-carousel {
        height: 340px;
      }

      .aqua-slide-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .aqua-btn-primary,
      .aqua-btn-secondary {
        width: 100%;
        max-width: 240px;
        justify-content: center;
      }
    }