/* CONTACT SECTION */

/* Section */
    .aqua-pkg-section {
      padding: 100px 0;
      position: relative;
      background: #f0f9ff url('https://app-it.shop/the-aqua/bg-package.png') center/cover no-repeat;
      overflow: hidden;
    }

    .aqua-pkg-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(240 249 255 / 50%);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 0;
    }

    .aqua-pkg-section::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        radial-gradient(circle at 20% 30%, rgba(0, 180, 216, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(144, 224, 239, 0.1) 0%, transparent 40%);
      z-index: 0;
    }

    .aqua-pkg-section .container {
      position: relative;
      z-index: 1;
    }

    /* Header */
    .aqua-pkg-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .aqua-pkg-icon-box {
      width: 70px;
      height: 70px;
      background: var(--aqua-gradient);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 4px 16px rgba(0, 180, 216, 0.2);
      position: relative;
      animation: pkgIconFloat 3s ease-in-out infinite;
    }

    @keyframes pkgIconFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-5px);
      }
    }

    .aqua-pkg-icon-box::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
      animation: pkgIconGlow 2s ease-in-out infinite;
    }

    @keyframes pkgIconGlow {

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

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

    .aqua-pkg-icon-box i {
      font-size: 32px;
      color: white;
      z-index: 1;
      animation: pkgIconBounce 2s ease-in-out infinite;
    }

    @keyframes pkgIconBounce {

      0%,
      100% {
        transform: translateY(0) rotate(0);
      }

      25% {
        transform: translateY(-3px) rotate(-5deg);
      }

      50% {
        transform: translateY(0) rotate(0);
      }

      75% {
        transform: translateY(-3px) rotate(5deg);
      }
    }

    .aqua-pkg-main-title {
      font-family: 'Kanit', sans-serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--aqua-dark);
      margin-bottom: 16px;
    }

    .aqua-pkg-main-title span {
      background: var(--aqua-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .aqua-pkg-desc {
      font-size: 16px;
      color: #64748b;
      line-height: 1.8;
    }

    /* Package Box */
    .pkg-box {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 180, 216, 0.1);
      transition: all 0.3s ease;
      border: 2px solid transparent;
      height: 100%;
      position: relative;
    }

    .pkg-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 4px 16px rgba(0, 119, 182, 0.12);
      border-color: var(--aqua-pale);
    }

    .pkg-box-featured {
      border-color: var(--aqua-primary);
      box-shadow: 0 4px 20px rgba(0, 180, 216, 0.15);
    }

    .pkg-box-featured:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 30px rgba(0, 180, 216, 0.2);
    }

    /* Badge */
    .pkg-label {
      position: absolute;
      top: 16px;
      right: 16px;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      z-index: 10;
      color: white;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .pkg-label-green {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    .pkg-label-blue {
      background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    }

    .pkg-label-orange {
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
      animation: pkgBadgeGlow 2s ease-in-out infinite;
    }

    .pkg-label-purple {
      background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }

    @keyframes pkgBadgeGlow {

      0%,
      100% {
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
      }

      50% {
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5);
      }
    }

    /* Image */
    .pkg-img {
      position: relative;
      height: 180px;
      overflow: hidden;
      background: linear-gradient(135deg, #e8f7ff 0%, #caf0f8 100%);
    }

    .pkg-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .pkg-box:hover .pkg-img img {
      transform: scale(1.05);
    }

    .pkg-img-layer {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
    }

    /* Body */
    .pkg-body {
      padding: 24px 20px;
    }

    .pkg-title {
      font-family: 'Kanit', sans-serif;
      font-size: 28px;
      font-weight: 700;
      background: var(--aqua-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 6px;
    }

    .pkg-subtitle {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 20px;
      font-weight: 500;
    }

    /* Price */
    .pkg-price-box {
      background: linear-gradient(135deg, rgba(0, 180, 216, 0.06) 0%, rgba(0, 119, 182, 0.06) 100%);
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 20px;
      text-align: center;
      border: 1px solid rgba(0, 180, 216, 0.1);
    }

    .pkg-price-top {
      font-size: 12px;
      color: #64748b;
      margin-bottom: 6px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .pkg-price-main {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
    }

    .pkg-price-number {
      font-family: 'Kanit', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--aqua-primary);
    }

    .pkg-price-unit {
      font-size: 16px;
      font-weight: 600;
      color: var(--aqua-secondary);
    }

    /* List */
    .pkg-list {
      margin-bottom: 20px;
    }

    .pkg-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 13px;
      color: #475569;
    }

    .pkg-item i {
      color: var(--aqua-primary);
      font-size: 14px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .pkg-item-extra {
      color: var(--aqua-secondary);
      font-weight: 600;
      margin-top: 6px;
    }

    .pkg-item-extra i {
      color: var(--aqua-secondary);
    }

    /* Button */
    .pkg-btn {
      width: 100%;
      padding: 14px 20px;
      background: var(--aqua-gradient);
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s ease;
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }

    .pkg-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.5s, height 0.5s;
    }

    .pkg-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 180, 216, 0.3);
      color: white;
    }

    .pkg-btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .pkg-btn i {
      transition: transform 0.3s ease;
    }

    .pkg-btn:hover i {
      transform: translateX(3px);
    }

    /* Note */
    .pkg-note-box {
      margin-top: 40px;
      padding: 16px 20px;
      background: rgba(0, 180, 216, 0.06);
      border-left: 4px solid var(--aqua-primary);
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .pkg-note-box i {
      color: var(--aqua-primary);
      font-size: 16px;
      margin-top: 2px;
    }

    .pkg-note-box p {
      margin: 0;
      font-size: 13px;
      color: #64748b;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .aqua-pkg-section {
        padding: 60px 0;
      }

      .aqua-pkg-header {
        margin-bottom: 40px;
      }

      .aqua-pkg-icon-box {
        width: 60px;
        height: 60px;
      }

      .aqua-pkg-icon-box i {
        font-size: 28px;
      }

      .aqua-pkg-main-title {
        font-size: 32px;
      }

      .aqua-pkg-desc {
        font-size: 15px;
      }

      .pkg-img {
        height: 160px;
      }

      .pkg-body {
        padding: 20px 16px;
      }

      .pkg-title {
        font-size: 24px;
      }

      .pkg-price-number {
        font-size: 28px;
      }
    }