 
    /* ===== ROOT ISOLATION ===== */
    #contact-page-isolated {
     
      padding: 80px 20px;
      font-family: Arial, sans-serif;
    }

    #contact-page-isolated * {
      box-sizing: border-box;
    }

    /* ===== LAYOUT ===== */
    #contact-page-isolated .contact-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    /* ===== LEFT SIDE ===== */
    #contact-page-isolated .contact-info {
      background: #ffffff;
      padding: 35px;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    #contact-page-isolated .contact-info h2 {
      margin-bottom: 25px;
    }

    #contact-page-isolated .info-item {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      line-height: 1.6;
      font-size: 15px;
    }

    #contact-page-isolated .info-item i {
      color: #e60000;
      font-size: 18px;
      margin-top: 4px;
      min-width: 22px;
    }

    #contact-page-isolated .map-box iframe {
      width: 100%;
      height: 240px;
      border: 0;
      border-radius: 6px;
      margin-top: 20px;
    }

    /* ===== RIGHT SIDE ===== */
    #contact-page-isolated .contact-form {
      background: #ffffff;
      padding: 35px;
      border-radius: 8px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      position: relative;
    }

    #contact-page-isolated .contact-form h2 {
      margin-bottom: 25px;
    }

    /* ===== FLOATING LABEL FORM ===== */
    #contact-page-isolated .field {
      position: relative;
      margin-bottom: 22px;
    }

    #contact-page-isolated .field input,
    #contact-page-isolated .field textarea {
      width: 100%;
      padding: 14px 12px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
      outline: none;
    }

    #contact-page-isolated .field textarea {
      resize: vertical;
      min-height: 120px;
    }

    #contact-page-isolated .field label {
      position: absolute;
      top: 50%;
      left: 12px;
      transform: translateY(-50%);
      background: #ffffff;
      padding: 0 6px;
      color: #777;
      transition: 0.3s;
      pointer-events: none;
      font-size: 14px;
    }

    #contact-page-isolated .field input:focus + label,
    #contact-page-isolated .field textarea:focus + label,
    #contact-page-isolated .field input:not(:placeholder-shown) + label,
    #contact-page-isolated .field textarea:not(:placeholder-shown) + label {
      top: -7px;
      font-size: 11px;
      color: #2f2fff;
    }

    /* ===== BUTTON ===== */
    #contact-page-isolated .submit-btn {
      width: 100%;
      padding: 14px;
      background: #2f2fff;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      font-size: 15px;
      cursor: pointer;
    }

    #contact-page-isolated .submit-btn:hover {
      background: #1f1fd6;
    }

    /* ===== SUCCESS MESSAGE ===== */
    #contact-page-isolated .success-box {
      display: none;
      text-align: center;
      animation: contactFade 0.6s ease forwards;
    }

    #contact-page-isolated .success-box i {
      font-size: 48px;
      color: #2ecc71;
      margin-bottom: 10px;
    }

    @keyframes contactFade {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      #contact-page-isolated .contact-container {
        grid-template-columns: 1fr;
      }
    }