/* ================================================================
   testimonials.css — Aqua Laundry · TESTIMONIALS / INVESTMENT SECTION
   ================================================================
   ⚠️  ต้องโหลด main.css ก่อนไฟล์นี้เสมอ
   โค้ดที่ซ้ำกันทุกหน้า (hero, breadcrumb, :root tokens,
   utilities, keyframes, shared components) ถูกย้ายไปรวมที่
   main.css และ shared-redesign.css แล้ว
   ================================================================ */

/* ============ INVESTMENT SECTION ============ */
    .aqua-investment {
      padding: 70px 0;
      background: linear-gradient(135deg, rgba(3, 4, 94, 0.95) 0%, rgba(0, 119, 182, 0.92) 50%, rgba(0, 180, 216, 0.9) 100%);
      position: relative;
      overflow: hidden;
    }

    /* Blurred Background Overlay */
    .aqua-investment::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?q=80&w=1920');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      filter: blur(10px) brightness(0.7);
      opacity: 0.4;
      z-index: 0;
    }

    /* Water Texture Overlay */
    .aqua-investment::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(144, 224, 239, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 180, 216, 0.12) 0%, transparent 40%),
        linear-gradient(135deg, rgba(3, 4, 94, 0.6) 0%, transparent 50%);
      z-index: 1;
    }

    .aqua-investment-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
      position: relative;
      z-index: 2;
    }

    /* Section Header */
    .aqua-investment-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .aqua-investment-icon {
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .aqua-investment-icon i {
      font-size: 28px;
      background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .aqua-investment-title {
      font-family: 'Kanit', sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .aqua-investment-title span {
      background: linear-gradient(135deg, #90E0EF 0%, #00B4D8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: none;
    }

    .aqua-investment-subtitle {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    /* Investment Grid */
    .aqua-investment-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 50px;
    }

    /* Investment Card */
    .aqua-investment-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(15px);
      border-radius: 20px;
      padding: 30px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(255, 255, 255, 0.1);
    }

    .aqua-investment-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #90E0EF 0%, #00B4D8 50%, #0077B6 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .aqua-investment-card:hover::before {
      transform: scaleX(1);
    }

    .aqua-investment-card:hover {
      transform: translateY(-8px);
      box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.4);
    }

    /* Card Header (ไอคอนและหัวข้อในแถวเดียวกัน) */
    .aqua-investment-card-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }

    /* Card Icon - ขนาดเล็กลงและอยู่ในแถวเดียวกับหัวข้อ */
    .aqua-investment-card-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 15px rgba(0, 119, 182, 0.25);
    }

    .aqua-investment-card-icon i {
      font-size: 20px;
      color: #ffffff;
    }

    /* Card Title Content */
    .aqua-investment-card-title-content {
      flex: 1;
    }

    .aqua-investment-card-title-content h3 {
      font-family: 'Kanit', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: #0077B6;
      margin: 0 0 6px 0;
      line-height: 1.3;
    }

    .aqua-investment-card-title-content p {
      font-size: 13px;
      color: #666;
      line-height: 1.5;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Card Features List */
    .aqua-investment-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .aqua-investment-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: #555;
      margin-bottom: 8px;
    }

    .aqua-investment-features li i {
      color: #00B4D8;
      font-size: 12px;
      margin-top: 3px;
      flex-shrink: 0;
    }

    .aqua-investment-features li span {
      line-height: 1.5;
    }

    /* Stats Banner */
    .aqua-investment-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(15px);
      border-radius: 20px;
      padding: 30px;
      margin-top: 40px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(255, 255, 255, 0.1);
    }

    .aqua-investment-stat {
      text-align: center;
      position: relative;
      padding: 10px;
    }

    .aqua-investment-stat:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -10px;
      transform: translateY(-50%);
      width: 1px;
      height: 40px;
      background: linear-gradient(180deg, transparent, rgba(0, 119, 182, 0.2), transparent);
    }

    .aqua-investment-stat-number {
      font-family: 'Kanit', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: #0077B6;
      line-height: 1;
      margin-bottom: 5px;
    }

    .aqua-investment-stat-label {
      font-size: 13px;
      color: #666;
    }

    /* CTA Button */
    .aqua-investment-cta {
      text-align: center;
      margin-top: 50px;
    }

    .aqua-investment-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 40px;
      background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
      color: #ffffff;
      border: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow:
        0 8px 32px rgba(0, 119, 182, 0.3),
        0 4px 16px rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .aqua-investment-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
    }

    .aqua-investment-btn:hover::before {
      left: 100%;
    }

    .aqua-investment-btn:hover {
      transform: translateY(-2px);
      box-shadow:
        0 12px 40px rgba(0, 119, 182, 0.4),
        0 6px 20px rgba(255, 255, 255, 0.15);
      background: linear-gradient(135deg, #03045E 0%, #0077B6 100%);
      color: #ffffff;
    }

    .aqua-investment-btn i {
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    .aqua-investment-btn:hover i:last-child {
      transform: translateX(4px);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1199px) {
      .aqua-investment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }

      .aqua-investment-stats {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 991px) {
      .aqua-investment {
        padding: 55px 0;
      }

      .aqua-investment-title {
        font-size: 30px;
      }

      .aqua-investment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .aqua-investment-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }

      .aqua-investment-stat:not(:last-child)::after {
        display: none;
      }

      .aqua-investment-stat:nth-child(2n)::after {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .aqua-investment {
        padding: 45px 0;
      }

      .aqua-investment-header {
        margin-bottom: 35px;
      }

      .aqua-investment-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
      }

      .aqua-investment-icon i {
        font-size: 24px;
      }

      .aqua-investment-title {
        font-size: 26px;
      }

      .aqua-investment-subtitle {
        font-size: 14px;
      }

      .aqua-investment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto 40px;
      }

      .aqua-investment-card {
        padding: 25px;
      }

      .aqua-investment-card-header {
        gap: 14px;
        margin-bottom: 14px;
      }

      .aqua-investment-card-icon {
        width: 45px;
        height: 45px;
      }

      .aqua-investment-card-icon i {
        font-size: 18px;
      }

      .aqua-investment-card-title-content h3 {
        font-size: 17px;
        margin-bottom: 5px;
      }

      .aqua-investment-card-title-content p {
        font-size: 12px;
        -webkit-line-clamp: 3;
      }

      .aqua-investment-features li {
        font-size: 12px;
        margin-bottom: 6px;
      }

      .aqua-investment-stats {
        padding: 25px;
        gap: 20px;
      }

      .aqua-investment-stat-number {
        font-size: 28px;
      }

      .aqua-investment-stat-label {
        font-size: 12px;
      }

      .aqua-investment-cta {
        margin-top: 40px;
      }

      .aqua-investment-btn {
        padding: 14px 35px;
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .aqua-investment {
        padding: 35px 0;
      }

      .aqua-investment-title {
        font-size: 24px;
      }

      .aqua-investment-grid {
        gap: 16px;
      }

      .aqua-investment-card {
        padding: 20px;
      }

      .aqua-investment-card-header {
        gap: 12px;
        margin-bottom: 12px;
      }

      .aqua-investment-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
      }

      .aqua-investment-card-icon i {
        font-size: 16px;
      }

      .aqua-investment-card-title-content h3 {
        font-size: 16px;
      }

      .aqua-investment-card-title-content p {
        font-size: 11px;
      }

      .aqua-investment-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
      }

      .aqua-investment-stat {
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(144, 224, 239, 0.3);
      }

      .aqua-investment-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      .aqua-investment-stat-number {
        font-size: 26px;
      }

      .aqua-investment-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
    }