
    /* Banner Section */
    .banner {
    background: url("/assets/image/banner/contact.jpg") no-repeat center center;
    background-size: cover;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

    /* Contact Section */
    .contact-section {
      display: flex;
      flex-wrap: wrap;
      padding: 50px 8%;
      justify-content: space-between;
      background: #f3f5f9;
    }

    /* Left Side */
    .contact-left {
      flex: 1;
      min-width: 320px;
      margin-right: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }

    .contact-left img {
      width: 280px;
      max-width: 100%;
      animation: floatImg 4s ease-in-out infinite;
    }

    @keyframes floatImg {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    .info-card {
      display: flex;
      align-items: center;
      gap: 22px;
      width: 100%;
      padding: 37px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(12px);
      border-radius: 15px;
      color: #fff;
      box-shadow: 0 4px 30px rgba(0,0,0,0.15);
      background: linear-gradient(135deg,#3a7bd5,#3a6073);
      transition: transform 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-5px);
    }

    .icon-wrapper {
      width: 55px;
      height: 55px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(135deg,#ff4b2b,#3a7bd5);
      border-radius: 50%;
      font-size: 22px;
      color: white;
    }

    .info-details h4 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
    }

    .info-details p {
      margin: 0;
      font-size: 15px;
      opacity: 0.9;
    }

    /* Right Side */
    .contact-right {
      flex: 1;
      min-width: 320px;
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .contact-right h3 {
      margin-bottom: 20px;
      font-size: 24px;
      font-weight: 600;
      color: #3a7bd5;
    }

    .contact-right form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact-right input,
    .contact-right textarea {
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #ccc;
      outline: none;
      font-size: 15px;
      transition: border-color 0.3s ease;
    }

    .contact-right input:focus,
    .contact-right textarea:focus {
      border-color: #3a7bd5;
    }

    .contact-right button {
      padding: 12px;
      font-size: 16px;
      font-weight: 600;
      color: white;
      background: linear-gradient(135deg,#ff4b2b,#3a7bd5);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-right button:hover {
      opacity: 0.9;
    }

    /* Map Section */
    .map-section {
      margin-top: 40px;
    }

    .map-section iframe {
      width: 100%;
      height: 350px;
      border: none;
    }

    @media (max-width: 900px) {
      .contact-section {
        flex-direction: column;
      }
      .contact-left {
        margin-right: 0;
        margin-bottom: 30px;
      }
    }