/* Style halaman about.php (dipisah) */
/* Page Heading */

    /* ========== MODERN CARD GRID SECTION ========== */
    .about-section {
      padding: 80px 0;
      background: #f8f9fa;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      color: var(--polines-navy);
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--polines-gold), var(--polines-blue));
      border-radius: 2px;
    }

    .section-header p {
      color: #666;
      font-size: 16px;
      max-width: 700px;
      margin: 20px auto 0;
      line-height: 1.8;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .info-card {
      background: white;
      padding: 40px 30px;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .info-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--polines-navy), var(--polines-blue));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

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

    .info-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,51,102,0.15);
    }

    .icon-wrapper {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--polines-navy), var(--polines-blue));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      transition: all 0.4s ease;
    }

    .info-card:hover .icon-wrapper {
      background: linear-gradient(135deg, var(--polines-gold), var(--polines-yellow));
      transform: rotate(10deg) scale(1.1);
    }

    .icon-wrapper i {
      font-size: 36px;
      color: white;
    }

    .info-card h4 {
      color: var(--polines-navy);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .info-card p {
      color: #555;
      font-size: 15px;
      line-height: 1.8;
      margin: 0 0 15px 0;
    }

    .info-card p:last-child {
      margin-bottom: 0;
    }

    .info-card strong {
      color: var(--polines-navy);
    }

    .info-card a {
      color: var(--polines-blue);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
      display: inline-block;
    }

    .info-card a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--polines-gold);
      transition: width 0.3s ease;
    }

    .info-card a:hover::after {
      width: 100%;
    }

    .info-card a:hover {
      color: var(--polines-gold);
    }

    /* Responsive adjustments */
    @media screen and (max-width: 992px) {
      .header-area .main-nav .nav {
        background-color: var(--polines-navy) !important;
      }

      .header-area .main-nav .nav li.has-sub ul.sub-menu {
        background-color: var(--polines-blue) !important;
      }

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

      .section-header h2 {
        font-size: 36px;
      }
    }

    @media (max-width: 767px) {
      .cards-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .info-card {
        padding: 35px 25px;
      }

      .info-card:hover {
        transform: translateY(-5px);
      }

      .section-header h2 {
        font-size: 28px;
      }

      .section-header p {
        font-size: 15px;
      }
    }
